diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f60ef2a17..11ff63577 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.8", "3.9", "3.10" ] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 @@ -22,21 +22,12 @@ jobs: run: | sudo apt-get update && sudo apt-get install -y libglpk-dev glpk-utils coinor-cbc python -m pip install --upgrade pip - pip install scikit-learn - pip install -r requirements.txt - - name: Install package - run: | - python setup.py install + pip install ".[develop]" - name: Create env file run: | touch .env # echo NREL_API_KEY=${{ secrets.NREL_API_KEY }} >> .env # cat .env - - name: Install test dependencies - run: | - pip install pytest - pip install pytest-subtests - pip install responses - name: Run tests run: | PYTHONPATH=. pytest tests diff --git a/.github/workflows/conda_build.yml b/.github/workflows/conda_build.yml index a7246a8bb..aa01d2813 100644 --- a/.github/workflows/conda_build.yml +++ b/.github/workflows/conda_build.yml @@ -9,11 +9,11 @@ jobs: name: Conda runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: conda-incubator/setup-miniconda@v2 + - uses: actions/checkout@v4 + - uses: conda-incubator/setup-miniconda@v3 with: auto-update-conda: true - python-version: 3.7 + python-version: 3.9 - name: Build and upload conda package shell: bash -l {0} env: diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index a9f773336..5da98e7bf 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -8,11 +8,11 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.9 - name: Install dependencies run: | python -m pip install --upgrade pip @@ -22,5 +22,6 @@ jobs: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | - python setup.py sdist bdist_wheel + python -m build + twine check --strict dist/* twine upload dist/* diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 3a5e0eb42..6210d47ee 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -9,7 +9,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.8" + python: "3.9" # You can also specify other tool versions: # nodejs: "19" # rust: "1.64" @@ -26,6 +26,8 @@ sphinx: # Optionally declare the Python requirements required to build your docs python: - install: - - requirements: requirements.txt - - requirements: requirements-dev.txt + install: + - method: pip + path: . + extra_requirements: + - develop diff --git a/README.md b/README.md index 4f4c3cab7..a916be508 100644 --- a/README.md +++ b/README.md @@ -14,73 +14,90 @@ Hybrid project power-to-x component-level system performance and financial model `greenheart` will install alongside `hopp` by following the instructions for installing HOPP from source. ## Software requirements -- Python version 3.8, 3.9, 3.10 64-bit -- Other versions may still work, but have not been extensively tested at this time + +- Python version 3.9, 3.10, and 3.11 only (PySAM 4.2 is incompatible with 3.12) ## Installing from Package Repositories + 1. HOPP is available as a PyPi package: - ``` + ```bash pip install HOPP ``` -## Installing from Source +## Installing from Source + 1. Using Git, navigate to a local target directory and clone repository: - ``` + + ```bash git clone https://github.com/NREL/HOPP.git ``` 2. Navigate to `HOPP` - ``` + + ```bash cd HOPP ``` 3. Create a new virtual environment and change to it. Using Conda and naming it 'hopp': - ``` + + ```bash conda create --name hopp python=3.8 -y conda activate hopp ``` -4. Install dependencies: - ``` - conda install -c conda-forge coin-or-cbc=2.10.8 -y - conda install -c conda-forge glpk -y - pip install -r requirements.txt - ``` +4. Install HOPP and its dependencies: - Note if you are on Windows, you will have to manually install Cbc: https://github.com/coin-or/Cbc - - If you also want development dependencies for running tests and building docs: - - ``` - pip install -r requirements-dev.txt - ``` - -5. Install HOPP: - ``` - pip install -e . + ```bash + conda install -y -c conda-forge coin-or-cbc=2.10.8 glpk ``` -6. The functions which download resource data require an NREL API key. Obtain a key from: + Note if you are on Windows, you will have to manually install Cbc: https://github.com/coin-or/Cbc. - [https://developer.nrel.gov/signup/](https://developer.nrel.gov/signup/) + - If you want to just use HOPP: + + ```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]" + ``` + +5. The functions which download resource data require an NREL API key. Obtain a key from: + + [https://developer.nrel.gov/signup/](https://developer.nrel.gov/signup/) -7. To set up the `NREL_API_KEY` and `NREL_API_EMAIL` required for resource downloads, you can create Environment Variables called `NREL_API_KEY` and `NREL_API_EMAIL`. Otherwise, you can keep the key in a new file called ".env" in the root directory of this project. +6. To set up the `NREL_API_KEY` and `NREL_API_EMAIL` required for resource downloads, you can create Environment Variables called `NREL_API_KEY` and `NREL_API_EMAIL`. Otherwise, you can keep the key in a new file called ".env" in the root directory of this project. Create a file ".env" that contains the single line: - ``` + + ```bash NREL_API_KEY=key NREL_API_EMAIL=your.name@email.com ``` +<<<<<<< HEAD 8. Verify setup by running tests: ``` pytest +======= +7. Verify setup by running tests: + + ```bash + pytest tests/hopp +>>>>>>> jared/updatefloris-hopp ``` - -2. To set up `NREL_API_KEY` for resource downloads, first refer to section 7 and 8 above. But for the `.env` file method, +8. To set up `NREL_API_KEY` for resource downloads, first refer to section 6 and 7 above. But for the `.env` file method, the file should go in the working directory of your Python project, e.g. directory from where you run `python`. ## Parallel Processing for GreenHEART finite differences and design of experiments diff --git a/examples/09-green-steel.ipynb b/examples/09-green-steel.ipynb new file mode 100644 index 000000000..5d794f60b --- /dev/null +++ b/examples/09-green-steel.ipynb @@ -0,0 +1,399 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Hybrid Plant with Wind, Solar, Battery, Hydrogen and Steel Example\n", + "---\n", + "In this example we will simulate a hybrid plant using the GreenHEART software. This software allows for the does co-design and simulation of an integrated renewable energy and steel production plant. \n", + "\n", + "This simulation starts with renewable energy generation using wind and solar PV technologies, which then can be stored in a battery or directly supplied to a PEM electrolyzer for hydrogen production. The produced hydrogen is then used as a feedstock in the steel model." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import Required Modules\n", + "---\n", + "Begin by importing the necessary modules for the GreenHEART simulation." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/Users/kbrunik/github/HOPP/examples/log/hybrid_systems_2024-07-16T19.09.45.335503.log\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/kbrunik/anaconda3/envs/gh/lib/python3.8/site-packages/fastkml/config.py:28: UserWarning: Package `lxml` missing. Pretty print will be disabled\n", + " warnings.warn(\"Package `lxml` missing. Pretty print will be disabled\")\n" + ] + } + ], + "source": [ + "from greenheart.simulation.greenheart_simulation import GreenHeartSimulationConfig\n", + "from greenheart.tools.optimization.gc_run_greenheart import run_greenheart" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Load Simulation Input Files\n", + "---\n", + "Input files are in a YAML file format. Four YAML files are required for land-based analysis:\n", + "1. HOPP Configuration YAML\n", + "2. GreenHEART Configuration YAML\n", + "3. Wind Turbine Configuration YAML\n", + "4. FLORIS Configuration YAML" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### HOPP YAML Overview\n", + "\n", + "The HOPP YAML file includes information required for simulating the renewable energy generation at the plant. Such as:\n", + "\n", + "- **Analysis Location**: Specifies latitude, longitude, site boundaries, and resource files.\n", + "- **Generation Technologies**: Encompasses details on wind, solar PV, and battery storage systems.\n", + "- **General Generation Configuration Options**: Encompasses simulation options, battery dispatch strategies, and cost information." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "filename_hopp_config = \"./inputs/09-inputs/plant/hopp_config_mn.yaml\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### GreenHEART YAML Overview\n", + "\n", + "The GreenHEART YAML file includes information required for simulating the renewable energy generation through the end product production (hydrogen, steel, ammonia). Such as:\n", + "\n", + "- **Plant Design Scenarios**: Specifies location and connection of individual components of plant.\n", + "- **Financial Parameters**: General financial parameters needed for calculating the levelized cost of product and other financial metrics.\n", + "- **Hydrogen Equipment Information**: Including electrolyzer specifications, compressor, pipeline, and H2 storage information.\n", + "- **Policy Options**: Describes options to include [IRA](https://www.whitehouse.gov/wp-content/uploads/2022/12/Inflation-Reduction-Act-Guidebook.pdf) tax incentives policy in GreenHEART simulation." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "filename_greenheart_config = \"./inputs/09-inputs/plant/greenheart_config_onshore_mn.yaml\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Wind Turbine and FLORIS YAML Overview\n", + "\n", + "The GreenHEART simulation runs a steady-state wake modeling tool ([FLORIS](https://www.nrel.gov/wind/floris.html)) to assess the wind farm's energy production. For accurate modeling within FLORIS, two configuration YAML files are required:\n", + "\n", + "- The **Wind Turbine YAML** file includes the description of the turbine including turbine rating rotor diameter, hub hight, and the power curve.\n", + "- The **FLORIS YAML** file includes atmospheric conditions and wake models used in simulation." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "turbine_model = \"lbw_6MW\"\n", + "filename_turbine_config = \"./inputs/09-inputs/turbines/\" + turbine_model + \".yaml\"\n", + "filename_floris_config = \"./inputs/09-inputs/floris/floris_input_lbw_6MW.yaml\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Create Full Configuration to Run GreenHEART Simulation\n", + "---\n", + "The class `GreenHeartSimulationConfig` reads in all the required YAML files described above, allows user to set additional settings while running the GreenHEART simulation, these include:\n", + "- **verbose**: If set to `True` additional information about the simulation will be printed as it runs.\n", + "- **show_plots**: If set to `True` the plots will pop up during the simulation.\n", + "- **save_plots**: If set to `True` the plots will be saved in a figures folder.\n", + "- **use_profast**: [ProFAST](https://github.com/NREL/ProFAST) is a financial analysis software that provides a quick and convenient in-depth financial analysis for production systems and services based on Generally Accepted Accounting Principles (GAAP) methodology.\n", + "- **incentive_options**: Can select IRA incentives options which are located in the `GreenHEART YAML`.\n", + "- **plant_design_scenario**: Can select the plant design scenario from options which are located in the `GreenHEART YAML`.\n", + "- **output_level**: Determines what information is returned from the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Turbine configuration:\n", + "turbine_type : lbw_6MW\n", + "rotor_diameter : 196.0\n", + "generator_efficiency : 1.0\n", + "turbine_rating : 6\n", + "hub_height : 115.0\n", + "ref_tilt_cp_ct : 6.0\n", + "pP : 1.88\n", + "pT : 1.88\n", + "TSR : 9.0\n", + "ref_density_cp_ct : 1.225\n", + "power_thrust_table : {'power': [0, 0, 0, 0, 0, 0, 0.192891513, 0.327971809, 0.39467412, 0.427218981, 0.441644409, 0.449983583, 0.452089484, 0.45277266, 0.452479626, 0.447816937, 0.437905177, 0.419995456, 0.392212744, 0.35626576, 0.317431919, 0.280508125, 0.244556295, 0.214024446, 0.188370619, 0.166658268, 0.148158593, 0.132298706, 0.118624063, 0.106770898, 0.096445757, 0.087410138, 0.079468855, 0.072461124, 0.0662537, 0.06073552, 0.055813517, 0.051409303, 0.047456543, 0.043898842, 0.040688054, 0.037782903, 0.035147871, 0.032752279, 0.030569537, 0.01371673, 0.012841467, 0.012039115, 0.011302237, 0.010624289, 0.009999496, 0.0, 0.0], 'thrust': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2701938462552998, 0.49876088677031816, 0.6410583756749411, 0.7304171026328261, 0.7820140738475616, 0.8219695127339289, 0.8352112145765765, 0.8400940247937402, 0.8379537129170351, 0.8101778683666324, 0.7672683998396476, 0.7083562153936742, 0.6350905785639259, 0.5551074611981718, 0.4788235519553873, 0.41244475217617255, 0.35190962095427364, 0.3029658154904963, 0.2632886841215642, 0.23060389109382756, 0.20333704601408872, 0.18035220902161636, 0.16080492837083768, 0.14405295244038488, 0.12959884155843146, 0.11705148949914825, 0.10609947180098464, 0.09649207076054334, 0.08802550386379156, 0.080532705961645, 0.07387566569120284, 0.0679395700022922, 0.0626283035300828, 0.05786092523660555, 0.05356890955590444, 0.04969394382759819, 0.04618618064324506, 0.04300281785004922, 0.040106954468623494, 0.017894348350362906, 0.016747646863604262, 0.015697057336370227, 0.014732694286609812, 0.013845872021549986, 0.013028935873409437, 0.0, 0.0], 'wind_speed': [0.0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 6.5, 7, 7.5, 8, 8.5, 9, 9.5, 10, 10.5, 11, 11.5, 12, 12.5, 13, 13.5, 14, 14.5, 15, 15.5, 16, 16.5, 17, 17.5, 18, 18.5, 19, 19.5, 20, 20.5, 21, 21.5, 22, 22.5, 23, 23.5, 24, 24.5, 25, 25.5, 50.0]}\n", + "\n", + "\n", + "Wind Capacity 1296.0 MW\n", + "Solar PV Capacity 100.0 MW\n", + "Total hybrid plant rating calculated: 1396.0 MW\n" + ] + } + ], + "source": [ + "config = GreenHeartSimulationConfig(\n", + " filename_hopp_config,\n", + " filename_greenheart_config,\n", + " filename_turbine_config,\n", + " filename_floris_config,\n", + " verbose=True,\n", + " show_plots=False,\n", + " save_plots=False,\n", + " use_profast=True,\n", + " post_processing=False,\n", + " incentive_option=1,\n", + " plant_design_scenario=9,\n", + " output_level=7,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run the GreenHEART Simulation\n", + "---\n", + "The simulation runs a techno-economic analysis of a given plant configuration. Data and figures are output to a seperate folder." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/kbrunik/anaconda3/envs/gh/lib/python3.8/site-packages/openmdao/core/driver.py:546: OpenMDAOWarning:Driver: No matches for pattern '*_df' in recording_options['excludes'].\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FLORIS is the system model...\n", + "Simulating wind farm output in FLORIS...\n", + "\n", + "HOPP Results\n", + "Hybrid Annual Energy: {\"pv\": 145446392.30989665, \"wind\": 3919162140.838302, \"battery\": 6746.053954919761, \"hybrid\": 4063634075.7827663}\n", + "Capacity factors: {\"pv\": 21.584510274299735, \"wind\": 34.52106006573001, \"battery\": 0, \"hybrid\": 31.50179294905199}\n", + "Real LCOE from HOPP: {\"pv\": null, \"wind\": 0, \"battery\": null, \"hybrid\": null}\n", + "Took 0.543 sec to run the create clusters\n", + "Took 0.02 sec to run even_split_power function\n", + "Took 0.457 sec to run the RUN function\n", + "\n", + "Electrolyzer Physics:\n", + "H2 Produced Annually (tonnes): 72335.8203447573\n", + "Max H2 hourly (tonnes): 21.22819493972688\n", + "Max H2 daily (tonnes): 501.71705441147833\n", + "Energy to electrolyzer (kWh): 4063519525.059065\n", + "Energy per kg (kWh/kg): 53.248770796732956\n", + "Max hourly based on est kg/kWh (kg): 21241.530855154735\n", + "Max daily rough est (tonnes): 504.3714914187101\n", + "Electrolyzer Life Average Capacity Factor: 0.38874157785979035\n", + "\n", + "Hydrogen Cost Results:\n", + "Electrolyzer Total CAPEX $/kW: 1159.097536119984\n", + "Electrolyzer O&M $/kW: 28.384469868872497\n", + "Electrolyzer O&M $/kg: 0.4551822995987973\n", + "\n", + "\n", + "Desal Results\n", + "Average feed_water_flowrat_m3perhr 0.0\n", + "Average desal_capex_usd 0.0\n", + "Average desal_opex_usd_per_year 0.0\n", + "Average power_for_desal_kw 0.0\n", + "Average fresh_water_capacity_m3_per_hour 0.0\n", + "Average equipment_mass_kg 0.0\n", + "Average equipment_footprint_m2 0.0\n", + "\n", + "\n", + "\n", + "Compressor Results:\n", + "Total H2 Flowrate (kg/hr): 0.0\n", + "Compressor_power (kW): 0.0\n", + "Compressor capex [USD]: 0.0\n", + "Compressor opex [USD/yr]: 0.0\n", + "\n", + "H2 Storage Results:\n", + "H2 storage capex: $192,026,830\n", + "H2 storage annual opex: $6,372,571/yr\n", + "H2 storage capacity (tonnes): 4492.357913772651\n", + "H2 storage cost $/kg of H2: 42.7452206867359\n", + "\n", + "Energy/Power Results:\n", + "Supply (MWh): 4063634075.7827787\n", + "Desal (kW): 0\n", + "Transport compressor (kW): 0.0\n", + "Storage compression, refrigeration, etc (kW): 0.0\n", + "\n", + "Platform Results\n", + "topmass_kg 0.00\n", + "toparea_m2 0.00\n", + "platform_mass_tonnes 0.00\n", + "capex 0.00\n", + "opex 0.00\n", + "\n", + "CAPEX Breakdown\n", + "wind 1423.01 M\n", + "wave 0.00 M\n", + "solar 99.10 M\n", + "battery 37.00 M\n", + "platform 0.00 M\n", + "electrical_export_system 0.00 M\n", + "desal 0.00 M\n", + "electrolyzer 1344.55 M\n", + "h2_pipe_array 0.00 M\n", + "h2_transport_compressor 0.00 M\n", + "h2_transport_pipeline 0.00 M\n", + "h2_storage 201.75 M\n", + "\n", + "Total system CAPEX: $3.11 B\n", + "\n", + "Annual OPEX Breakdown\n", + "wind_and_electrical 41.28 M\n", + "platform 0.00 M\n", + "wave 0.00 M\n", + "solar 0.00 M\n", + "battery 0.00 M\n", + "desal 0.00 M\n", + "electrolyzer 32.93 M\n", + "h2_pipe_array 0.00 M\n", + "h2_transport_compressor 0.00 M\n", + "h2_transport_pipeline 0.00 M\n", + "h2_storage 6.70 M\n", + "\n", + "Total Annual OPEX: $80.90 M\n", + "{'wind_and_electrical': 41275150.0816766, 'platform': 0.0, 'wave': 0.0, 'solar': array([2017.2]), 'battery': 9.25, 'desal': 0.0, 'electrolyzer': 32925985.047892097, 'h2_pipe_array': 0.0, 'h2_transport_compressor': 0.0, 'h2_transport_pipeline': 0.0, 'h2_storage': 6695182.743335924}\n", + "hybrid plant capacity factor: 0.31008366876226856\n", + "\n", + "ProFAST LCOE: 70.02 $/MWh\n", + "\n", + "LCOH grid only: 7.40 $/kg\n", + "ProFAST grid only NPV: -0.00\n", + "ProFAST grid only IRR: 0.09480\n", + "ProFAST grid only LCO: 7.40 $/kg\n", + "ProFAST grid only Profit Index: 2.70\n", + "ProFAST grid only payback period: 10\n", + "\n", + "ProFAST LCOH: 5.98 $/kg\n", + "ProFAST NPV: 0.00\n", + "ProFAST IRR: 0.09480\n", + "ProFAST LCO: 5.98 $/kg\n", + "ProFAST Profit Index: 2.28\n", + "ProFAST payback period: 9\n", + "Investor NPV: 1464.28 M USD\n", + "Investor MIRR: 0.08766 \n", + "Investor ROI: 0.46102 \n", + "Running steel\n", + "\n" + ] + } + ], + "source": [ + "# for analysis\n", + "prob, config = run_greenheart(config, run_only=True)\n", + "\n", + "# for optimization\n", + "# prob, config = run_greenheart(config, run_only=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Key Output Values" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LCOE: [70.01808687] [$/MWh]\n", + "LCOH: [5.98395904] [$/kg]\n", + "LCOS: [1074.79967214] [$/metric-tonne]\n" + ] + } + ], + "source": [ + "lcoe = prob.get_val(\"lcoe\", units=\"USD/(MW*h)\")\n", + "lcoh = prob.get_val(\"lcoh\", units=\"USD/kg\")\n", + "lcos = prob.get_val(\"lcos\", units=\"USD/t\")\n", + "\n", + "print(\"LCOE: \", lcoe, \"[$/MWh]\")\n", + "print(\"LCOH: \", lcoh, \"[$/kg]\")\n", + "print(\"LCOS: \", lcos, \"[$/metric-tonne]\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "gh", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.19" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/examples/10-offshore-green-hydrogen.ipynb b/examples/10-offshore-green-hydrogen.ipynb new file mode 100644 index 000000000..f226a4847 --- /dev/null +++ b/examples/10-offshore-green-hydrogen.ipynb @@ -0,0 +1,492 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Hybrid Plant with Offshore Wind, Solar, Battery and Hydrogen Example\n", + "---\n", + "In this example we will simulate an offshore hybrid plant using the GreenHEART software. This software can be configured to simulate both onshore and offshore plant scenarios.\n", + "\n", + "This simulation starts with renewable energy generation using offshore wind and solar PV technologies, which then can be stored in a battery or directly supplied to a PEM electrolyzer for hydrogen production. If the hydrogen is produced offshore it can be transport onshore for use or storage or be stored offshore." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import Required Modules\n", + "---\n", + "Begin by importing the necessary modules for the GreenHEART simulation." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/Users/kbrunik/github/HOPP/examples/log/hybrid_systems_2024-07-16T20.36.10.728977.log\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/kbrunik/anaconda3/envs/gh/lib/python3.8/site-packages/fastkml/config.py:28: UserWarning: Package `lxml` missing. Pretty print will be disabled\n", + " warnings.warn(\"Package `lxml` missing. Pretty print will be disabled\")\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ORBIT library intialized at '/Users/kbrunik/github/HOPP/examples/./inputs/10-inputs/'\n" + ] + } + ], + "source": [ + "#general imports\n", + "import os\n", + "\n", + "# GreenHEART imports\n", + "from greenheart.simulation.greenheart_simulation import GreenHeartSimulationConfig\n", + "from greenheart.tools.optimization.gc_run_greenheart import run_greenheart\n", + "\n", + "# ORBIT imports\n", + "from ORBIT.core.library import initialize_library\n", + "initialize_library(os.path.join(os.getcwd(), \"./inputs/10-inputs/\"))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Load Simulation Input Files\n", + "---\n", + "Input files are in a YAML file format. Five YAML files are required for offshore analysis:\n", + "1. HOPP Configuration YAML\n", + "2. GreenHEART Configuration YAML\n", + "3. Wind Turbine Configuration YAML\n", + "4. FLORIS Configuration YAML\n", + "5. ORBIT Configuration YAML" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### HOPP YAML Overview\n", + "\n", + "The HOPP YAML file includes information required for simulating the renewable energy generation at the plant. Such as:\n", + "\n", + "- **Analysis Location**: Specifies latitude, longitude, site boundaries, and resource files.\n", + "- **Generation Technologies**: Encompasses details on wind, solar PV, and battery storage systems.\n", + "- **General Generation Configuration Options**: Encompasses simulation options, battery dispatch strategies, and cost information." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "filename_hopp_config = \"./inputs/10-inputs/plant/hopp_config_gom.yaml\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### GreenHEART YAML Overview\n", + "\n", + "The GreenHEART YAML file includes information required for simulating the renewable energy generation through the end product production (hydrogen, steel, ammonia). Such as:\n", + "\n", + "- **Plant Design Scenarios**: Specifies location and connection of individual components of plant.\n", + "- **Financial Parameters**: General financial parameters needed for calculating the levelized cost of product and other financial metrics.\n", + "- **Hydrogen Equipment Information**: Including electrolyzer specifications, compressor, pipeline, and H2 storage information.\n", + "- **Policy Options**: Describes options to include [IRA](https://www.whitehouse.gov/wp-content/uploads/2022/12/Inflation-Reduction-Act-Guidebook.pdf) tax incentives policy in GreenHEART simulation." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "filename_greenheart_config = \"./inputs/10-inputs/plant/greenheart_config_offshore_gom.yaml\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Wind Turbine and FLORIS YAML Overview\n", + "\n", + "The GreenHEART simulation runs a steady-state wake modeling tool ([FLORIS](https://www.nrel.gov/wind/floris.html)) to assess the wind farm's energy production. For accurate modeling within FLORIS, two configuration YAML files are required:\n", + "\n", + "- The **Wind Turbine YAML** file includes the description of the turbine including turbine rating rotor diameter, hub hight, and the power curve.\n", + "- The **FLORIS YAML** file includes atmospheric conditions and wake models used in simulation." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "turbine_model = \"osw_17MW\"\n", + "filename_turbine_config = \"./inputs/10-inputs/turbines/\" + turbine_model + \".yaml\"\n", + "filename_floris_config = \"./inputs/10-inputs/floris/floris_input_\" + turbine_model + \".yaml\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### ORBIT YAML Overview\n", + "\n", + "The GreenHEART simulation uses [ORBIT](https://www.nrel.gov/docs/fy20osti/77081.pdf) to calculate offshore wind component, installation and balance-of-system costs. ORBIT requires a YAML file which includes:\n", + "- **Additional Site Information**: Used for parameterizing the offshore environment.\n", + "- **Equipment Information**: Includes specifications for cabling, substructure design, etc.\n", + "- **Vessel Information**: Information about vessels used to install and maintain offshore plant.\n", + "- **Installation Information**: Installation availability and installation phases." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "filename_orbit_config= \"./inputs/10-inputs/plant/orbit-config-\"+turbine_model+\"-gom.yaml\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Create Full Configuration to Run GreenHEART Simulation\n", + "---\n", + "The class `GreenHeartSimulationConfig` reads in all the required YAML files described above, allows user to set additional settings while running the GreenHEART simulation, these include:\n", + "- **verbose**: If set to `True` additional information about the simulation will be printed as it runs.\n", + "- **show_plots**: If set to `True` the plots will pop up during the simulation.\n", + "- **save_plots**: If set to `True` the plots will be saved in a figures folder.\n", + "- **use_profast**: [ProFAST](https://github.com/NREL/ProFAST) is a financial analysis software that provides a quick and convenient in-depth financial analysis for production systems and services based on Generally Accepted Accounting Principles (GAAP) methodology.\n", + "- **incentive_options**: Can select IRA incentives options which are located in the `GreenHEART YAML`.\n", + "- **plant_design_scenario**: Can select the plant design scenario from options which are located in the `GreenHEART YAML`.\n", + "- **output_level**: Determines what information is returned from the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Plant configuration:\n", + "turbine : osw_17MW\n", + "installation_availability : 0.7\n", + "site : {'area': 142, 'depth': 45, 'distance': 141.5414, 'distance_to_landfall': 44.74089, 'mean_windspeed': False}\n", + "plant : {'capacity': 986, 'layout': 'grid', 'num_turbines': 58, 'row_spacing': 7, 'substation_distance': 1, 'turbine_spacing': 7}\n", + "landfall : {'interconnection_distance': 5, 'trench_length': 4}\n", + "array_cable_install_vessel : example_cable_lay_vessel\n", + "export_cable_install_vessel : example_cable_lay_vessel\n", + "oss_install_vessel : example_heavy_lift_vessel\n", + "spi_vessel : example_scour_protection_vessel\n", + "wtiv : example_wtiv\n", + "OffshoreSubstationInstallation : {'feeder': 'example_heavy_feeder', 'num_feeders': 1}\n", + "array_system : {'free_cable_length': 0.5}\n", + "array_system_design : {'cables': ['XLPE_185mm_66KV', 'XLPE_630mm_66KV']}\n", + "export_system_design : {'cables': ['XLPE_1000m_220kV'], 'percent_added_length': 0.1}\n", + "scour_protection_design : {'cost_per_tonne': 40, 'scour_protection_depth': 1}\n", + "MonopileDesign : {'monopile_steel_cost': 3500, 'tp_steel_cost': 4500}\n", + "design_phases : ['ArraySystemDesign', 'MonopileDesign', 'ScourProtectionDesign', 'ElectricalDesign']\n", + "install_phases : {'MonopileInstallation': 0, 'ExportCableInstallation': 0, 'ScourProtectionInstallation': ('MonopileInstallation', 0.1), 'OffshoreSubstationInstallation': 0, 'ArrayCableInstallation': ('MonopileInstallation', 0.2), 'TurbineInstallation': ('MonopileInstallation', 0.3)}\n", + "project_parameters : {'turbine_capex': 1500, 'opex_rate': 53.25648}\n", + "\n", + "Turbine configuration:\n", + "turbine_type : osw_17MW\n", + "generator_efficiency : 0.957563\n", + "turbine_rating : 17.0\n", + "rated_windspeed : 7.0\n", + "hub_height : 168.0\n", + "pP : 1.88\n", + "pT : 1.88\n", + "rotor_diameter : 278.035\n", + "TSR : 9.0\n", + "ref_tilt_cp_ct : 6.0\n", + "tower : {'deck_space': 78.5, 'mass': 560, 'length': 163, 'sections': 2, 'section_diameters': [10.0, 9.0], 'section_heights': [0.0, 163.0]}\n", + "nacelle : {'deck_space': 281, 'mass': 1003}\n", + "blade : {'length': 123, 'deck_space': 553.5, 'mass': 91}\n", + "ref_density_cp_ct : 1.225\n", + "power_thrust_table : {'power': [0.0, 0.16865464, 0.37619304, 0.42067177, 0.43252714, 0.43554184, 0.43572894, 0.43572894, 0.43572894, 0.43572894, 0.43572894, 0.42027282, 0.37547625, 0.339614, 0.22896413, 0.15532944, 0.10691674, 0.0750524, 0.05388202, 0.03962032, 0.02985469, 0.0, 0.0], 'thrust': [0.0, 0.79301095, 0.76374783, 0.76731939, 0.76137324, 0.75671907, 0.7496741, 0.7496741, 0.7496741, 0.7496741, 0.7496741, 0.65776665, 0.54309148, 0.47233399, 0.29520804, 0.1944985, 0.13271888, 0.09351834, 0.06798931, 0.05096422, 0.03934766, 0.0, 0.0], 'wind_speed': [0.0, 3, 4.27204607, 5.30403148, 6.08010611, 6.58835037, 6.82095822, 6.86755938, 7.1926538, 7.79124841, 8.6541495, 9.76810389, 10.7501945, 11.11600255, 12.67714331, 14.42754887, 16.34033501, 18.38612357, 20.5334936, 22.74946399, 25, 25.02, 50.0]}\n", + "\n", + "\n", + "Wind Capacity 986.0 MW\n", + "Solar PV Capacity 1.0 MW\n", + "Total hybrid plant rating calculated: 987.0 MW\n" + ] + } + ], + "source": [ + "config = GreenHeartSimulationConfig(\n", + " filename_hopp_config=filename_hopp_config,\n", + " filename_greenheart_config=filename_greenheart_config,\n", + " filename_turbine_config=filename_turbine_config,\n", + " filename_orbit_config=filename_orbit_config,\n", + " filename_floris_config=filename_floris_config,\n", + " verbose=True,\n", + " show_plots=False,\n", + " save_plots=False,\n", + " use_profast=True,\n", + " post_processing=False,\n", + " incentive_option=1,\n", + " plant_design_scenario=1,\n", + " output_level=5,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run the GreenHEART Simulation\n", + "---\n", + "The simulation runs a techno-economic analysis of a given plant configuration. Data and figures are output to a seperate folder." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/kbrunik/anaconda3/envs/gh/lib/python3.8/site-packages/openmdao/core/driver.py:546: OpenMDAOWarning:Driver: No matches for pattern '*_df' in recording_options['excludes'].\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Installation CapEx: 284 M\n", + "System CapEx: 383 M\n", + "Turbine CapEx: 1479 M\n", + "Soft CapEx: 636 M\n", + "Total CapEx: 2933 M\n", + "Annual OpEx Rate: 52510889 \n", + "\n", + "Installation Time: 24397 h\n", + "\n", + "N Substations: 2\n", + "N cables: 4\n", + "\n", + "\n", + "Cable specific costs\n", + "Export cable installation CAPEX: 71.71 M USD\n", + "\n", + "\n", + "FLORIS is the system model...\n", + "Simulating wind farm output in FLORIS...\n", + "\n", + "HOPP Results\n", + "Hybrid Annual Energy: {\"pv\": 1851330.6142037676, \"wind\": 3755361454.261004, \"battery\": 75138.86048135585, \"hybrid\": 3757287923.7356806}\n", + "Capacity factors: {\"pv\": 27.474084457361847, \"wind\": 43.47811662661976, \"battery\": 0, \"hybrid\": 39.46690193295024}\n", + "Real LCOE from HOPP: {\"pv\": null, \"wind\": 0, \"battery\": null, \"hybrid\": null}\n", + "Took 0.428 sec to run the create clusters\n", + "Took 0.018 sec to run even_split_power function\n", + "Took 0.37 sec to run the RUN function\n", + "\n", + "Electrolyzer Physics:\n", + "H2 Produced Annually (tonnes): 67061.82816844688\n", + "Max H2 hourly (tonnes): 16.845396595785363\n", + "Max H2 daily (tonnes): 374.52842729971854\n", + "Energy to electrolyzer (kWh): 3757044331.492995\n", + "Energy per kg (kWh/kg): 53.072107593872985\n", + "Max hourly based on est kg/kWh (kg): 16732.022781762502\n", + "Max daily rough est (tonnes): 369.2200172815903\n", + "Electrolyzer Life Average Capacity Factor: 0.4287818009808715\n", + "\n", + "Hydrogen Cost Results:\n", + "Electrolyzer Total CAPEX $/kW: 1159.0975361199842\n", + "Electrolyzer O&M $/kW: 28.384469868872504\n", + "Electrolyzer O&M $/kg: 0.4173326026903101\n", + "\n", + "\n", + "Desal Results\n", + "Average feed_water_flowrat_m3perhr 0.0\n", + "Average desal_capex_usd 0.0\n", + "Average desal_opex_usd_per_year 0.0\n", + "Average power_for_desal_kw 0.0\n", + "Average fresh_water_capacity_m3_per_hour 0.0\n", + "Average equipment_mass_kg 0.0\n", + "Average equipment_footprint_m2 0.0\n", + "\n", + "\n", + "\n", + "Compressor Results:\n", + "Total H2 Flowrate (kg/hr): 0.0\n", + "Compressor_power (kW): 0.0\n", + "Compressor capex [USD]: 0.0\n", + "Compressor opex [USD/yr]: 0.0\n", + "\n", + "H2 Transport Pipe Results\n", + "Grade none\n", + "Outer diameter (mm) 0.0\n", + "Inner Diameter (mm) 0.0\n", + "Schedule none\n", + "Thickness (mm) 0.0\n", + "volume [m3] 0.0\n", + "weight [kg] 0.0\n", + "mat cost [$] 0.0\n", + "labor cost [$] 0.0\n", + "misc cost [$] 0.0\n", + "ROW cost [$] 0.0\n", + "total capital cost [$] 0.0\n", + "annual operating cost [$] 0.0\n", + "\n", + "\n", + "\n", + "H2 Storage Results:\n", + "H2 storage capex: $135,456,462\n", + "H2 storage annual opex: $4,564,755/yr\n", + "H2 storage capacity (tonnes): 7757.01222731938\n", + "H2 storage cost $/kg of H2: 17.46245313449388\n", + "\n", + "Energy/Power Results:\n", + "Supply (MWh): 3757287923.735689\n", + "Desal (kW): 0\n", + "Transport compressor (kW): 0.0\n", + "Storage compression, refrigeration, etc (kW): 0.0\n", + "\n", + "Platform Results\n", + "topmass_kg 0.00\n", + "toparea_m2 0.00\n", + "platform_mass_tonnes 0.00\n", + "capex 0.00\n", + "opex 0.00\n", + "\n", + "CAPEX Breakdown\n", + "wind 2329.22 M\n", + "wave 0.00 M\n", + "solar 0.99 M\n", + "battery 37.00 M\n", + "platform 0.00 M\n", + "electrical_export_system 463.97 M\n", + "desal 0.00 M\n", + "electrolyzer 1142.87 M\n", + "h2_pipe_array 0.00 M\n", + "h2_transport_compressor 0.00 M\n", + "h2_transport_pipeline 0.00 M\n", + "h2_storage 138.84 M\n", + "\n", + "Total system CAPEX: $4.11 B\n", + "\n", + "Annual OPEX Breakdown\n", + "wind_and_electrical 50.84 M\n", + "platform 0.00 M\n", + "wave 0.00 M\n", + "solar 0.00 M\n", + "battery 0.00 M\n", + "desal 0.00 M\n", + "electrolyzer 27.99 M\n", + "h2_pipe_array 0.00 M\n", + "h2_transport_compressor 0.00 M\n", + "h2_transport_pipeline 0.00 M\n", + "h2_storage 4.68 M\n", + "\n", + "Total Annual OPEX: $83.51 M\n", + "{'wind_and_electrical': 50842355.20761452, 'platform': 0.0, 'wave': 0.0, 'solar': array([2017.2]), 'battery': 9.25, 'desal': 0.0, 'electrolyzer': 27987087.29070829, 'h2_pipe_array': 0.0, 'h2_transport_compressor': 0.0, 'h2_transport_pipeline': 0.0, 'h2_storage': 4678874.262470229}\n", + "hybrid plant capacity factor: 0.3945852314122999\n", + "\n", + "ProFAST LCOE: 147.75 $/MWh\n", + "\n", + "LCOH grid only: 6.91 $/kg\n", + "ProFAST grid only NPV: -0.00\n", + "ProFAST grid only IRR: 0.11000\n", + "ProFAST grid only LCO: 6.91 $/kg\n", + "ProFAST grid only Profit Index: 3.03\n", + "ProFAST grid only payback period: 8\n", + "\n", + "ProFAST LCOH: 7.97 $/kg\n", + "ProFAST NPV: -0.00\n", + "ProFAST IRR: 0.11000\n", + "ProFAST LCO: 7.97 $/kg\n", + "ProFAST Profit Index: 2.61\n", + "ProFAST payback period: 8\n", + "Investor NPV: 2440.83 M USD\n", + "Investor MIRR: 0.10284 \n", + "Investor ROI: 0.59199 \n" + ] + } + ], + "source": [ + "# for analysis\n", + "prob, config = run_greenheart(config, run_only=True)\n", + "\n", + "# for optimization\n", + "# prob, config = run_greenheart(config, run_only=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Key Output Values" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LCOE: [147.74611336] [$/MWh]\n", + "LCOH: [7.97388197] [$/kg]\n" + ] + } + ], + "source": [ + "lcoe = prob.get_val(\"lcoe\", units=\"USD/(MW*h)\")\n", + "lcoh = prob.get_val(\"lcoh\", units=\"USD/kg\")\n", + "\n", + "print(\"LCOE: \", lcoe, \"[$/MWh]\")\n", + "print(\"LCOH: \", lcoh, \"[$/kg]\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "gh", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.19" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/examples/inputs/09-inputs/floris/floris_input_lbw_6MW.yaml b/examples/inputs/09-inputs/floris/floris_input_lbw_6MW.yaml new file mode 100644 index 000000000..e5b650cec --- /dev/null +++ b/examples/inputs/09-inputs/floris/floris_input_lbw_6MW.yaml @@ -0,0 +1,76 @@ +name: Gauss +description: Three turbines using Gauss model +floris_version: v3.0.0 + +logging: + console: + enable: false + level: WARNING + file: + enable: false + level: WARNING + +solver: + type: turbine_grid + turbine_grid_points: 1 + +flow_field: + air_density: 1.225 + reference_wind_height: -1 # -1 is code for use the hub height + turbulence_intensity: 0.06 + wind_directions: + - 270.0 + wind_shear: 0.33 + wind_speeds: + - 8.0 + wind_veer: 0.0 + +wake: + model_strings: + combination_model: sosfs + deflection_model: gauss + turbulence_model: crespo_hernandez + velocity_model: gauss + + enable_secondary_steering: false + enable_yaw_added_recovery: false + enable_transverse_velocities: false + + wake_deflection_parameters: + gauss: + ad: 0.0 + alpha: 0.58 + bd: 0.0 + beta: 0.077 + dm: 1.0 + ka: 0.38 + kb: 0.004 + jimenez: + ad: 0.0 + bd: 0.0 + kd: 0.05 + + wake_velocity_parameters: + cc: + a_s: 0.179367259 + b_s: 0.0118889215 + c_s1: 0.0563691592 + c_s2: 0.13290157 + a_f: 3.11 + b_f: -0.68 + c_f: 2.41 + alpha_mod: 1.0 + gauss: + alpha: 0.58 + beta: 0.077 + ka: 0.38 + kb: 0.004 + jensen: + we: 0.05 + + wake_turbulence_parameters: + crespo_hernandez: + initial: 0.1 + constant: 0.5 + ai: 0.8 + downstream: -0.32 \ No newline at end of file diff --git a/examples/inputs/09-inputs/plant/default_fin_config.yaml b/examples/inputs/09-inputs/plant/default_fin_config.yaml new file mode 100644 index 000000000..40c1f7b0d --- /dev/null +++ b/examples/inputs/09-inputs/plant/default_fin_config.yaml @@ -0,0 +1,33 @@ +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 +system_use_lifetime_output: 0 +financial_parameters: + inflation_rate: 2.5 + real_discount_rate: 6.4 +cp_capacity_credit_percent: + - 0 +degradation: + - 0 +revenue: + ppa_price_input: + - 0.01 + ppa_escalation: 1 diff --git a/examples/inputs/09-inputs/plant/greenheart_config_onshore_mn.yaml b/examples/inputs/09-inputs/plant/greenheart_config_onshore_mn.yaml new file mode 100644 index 000000000..aa7002bbd --- /dev/null +++ b/examples/inputs/09-inputs/plant/greenheart_config_onshore_mn.yaml @@ -0,0 +1,397 @@ +site: + mean_windspeed: False + depth: 0 #m + wind_layout: + row_spacing: 5 # Also defined in ORBIT config for offshore layout. Greenheart config values override the values in ORBIT. + turbine_spacing: 5 # Also defined in ORBIT config for offshore layout. Greenheart 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 + atb_year: 2030 + cost_year: 2020 # to match ATB + installation_time: 36 # months +finance_parameters: + costing_general_inflation: 0.025 # used to adjust modeled costs to cost_year + profast_general_inflation: 0 # based on 2022 ATB + discount_rate: 0.0948 # nominal return based on 2022 ATB basline workbook + debt_equity_split: False # 2022 ATB uses 68.5% debt + 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: + sizing: + resize_for_enduse: False + size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) + hydrogen_dmd: + rating: 1160 # MW + cluster_rating_MW: 40 + pem_control_type: 'basic' + 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 # 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 + h2_storage_itc: 0.5 + +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"] + +steel: + capacity: + input_capacity_factor_estimate: 0.9 + costs: + operational_year: 2035 + o2_heat_integration: false + feedstocks: + oxygen_market_price: 0.0 # 0.03 $/kgO2 if `o2_heat_integration` == 1 + excess_oxygen: 395 + lime_unitcost: 122.1 + carbon_unitcost: 236.97 + electricity_cost: 48.92 + iron_ore_pellet_unitcost: 207.35 + oxygen_market_price: 0.03 + raw_water_unitcost: 0.59289 + iron_ore_consumption: 1.62927 + raw_water_consumption: 0.80367 + lime_consumption: 0.01812 + carbon_consumption: 0.0538 + hydrogen_consumption: 0.06596 + natural_gas_consumption: 0.71657 + electricity_consumption: 0.5502 + slag_disposal_unitcost: 37.63 + slag_production: 0.17433 + maintenance_materials_unitcost: 7.72 + natural_gas_prices: + "2035": 3.76232 + "2036": 3.776032 + "2037": 3.812906 + "2038": 3.9107960000000004 + "2039": 3.865776 + "2040": 3.9617400000000003 + "2041": 4.027136 + "2042": 4.017166 + "2043": 3.9715339999999997 + "2044": 3.924314 + "2045": 3.903287 + "2046": 3.878192 + "2047": 3.845413 + "2048": 3.813366 + "2049": 3.77735 + "2050": 3.766164 + "2051": 3.766164 + "2052": 3.766164 + "2053": 3.766164 + "2054": 3.766164 + "2055": 3.766164 + "2056": 3.766164 + "2057": 3.766164 + "2058": 3.766164 + "2059": 3.766164 + "2060": 3.766164 + "2061": 3.766164 + "2062": 3.766164 + "2063": 3.766164 + "2064": 3.766164 + finances: + plant_life: 30 + grid_prices: + "2035": 89.42320514456621 + "2036": 89.97947569251141 + "2037": 90.53574624045662 + "2038": 91.09201678840184 + "2039": 91.64828733634704 + "2040": 92.20455788429224 + "2041": 89.87291235917809 + "2042": 87.54126683406393 + "2043": 85.20962130894978 + "2044": 82.87797578383562 + "2045": 80.54633025872147 + "2046": 81.38632144593608 + "2047": 82.22631263315068 + "2048": 83.0663038203653 + "2049": 83.90629500757991 + "2050": 84.74628619479452 + "2051": 84.74628619479452 + "2052": 84.74628619479452 + "2053": 84.74628619479452 + "2054": 84.74628619479452 + "2055": 84.74628619479452 + "2056": 84.74628619479452 + "2057": 84.74628619479452 + "2058": 84.74628619479452 + "2059": 84.74628619479452 + "2060": 84.74628619479452 + "2061": 84.74628619479452 + "2062": 84.74628619479452 + "2063": 84.74628619479452 + "2064": 84.74628619479452 + + # 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 + +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: "lcos" + merit_figure_user: + name: "lcos" + 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 \ No newline at end of file diff --git a/examples/inputs/09-inputs/plant/hopp_config_mn.yaml b/examples/inputs/09-inputs/plant/hopp_config_mn.yaml new file mode 100644 index 000000000..9c62325d0 --- /dev/null +++ b/examples/inputs/09-inputs/plant/hopp_config_mn.yaml @@ -0,0 +1,72 @@ +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: "" + wind_resource_file: "" + 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 + 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/examples/inputs/09-inputs/turbines/lbw_6MW.yaml b/examples/inputs/09-inputs/turbines/lbw_6MW.yaml new file mode 100644 index 000000000..61da147c8 --- /dev/null +++ b/examples/inputs/09-inputs/turbines/lbw_6MW.yaml @@ -0,0 +1,175 @@ +turbine_type: 'lbw_6MW' +rotor_diameter: 196.0 +generator_efficiency: 1.0 +turbine_rating: 6 #MW +hub_height: 115.0 +ref_tilt_cp_ct: 6.0 +pP: 1.88 +pT: 1.88 +TSR: 9.0 +ref_density_cp_ct: 1.225 +power_thrust_table: + power: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0.192891513 + - 0.327971809 + - 0.39467412 + - 0.427218981 + - 0.441644409 + - 0.449983583 + - 0.452089484 + - 0.45277266 + - 0.452479626 + - 0.447816937 + - 0.437905177 + - 0.419995456 + - 0.392212744 + - 0.35626576 + - 0.317431919 + - 0.280508125 + - 0.244556295 + - 0.214024446 + - 0.188370619 + - 0.166658268 + - 0.148158593 + - 0.132298706 + - 0.118624063 + - 0.106770898 + - 0.096445757 + - 0.087410138 + - 0.079468855 + - 0.072461124 + - 0.0662537 + - 0.06073552 + - 0.055813517 + - 0.051409303 + - 0.047456543 + - 0.043898842 + - 0.040688054 + - 0.037782903 + - 0.035147871 + - 0.032752279 + - 0.030569537 + - 0.01371673 + - 0.012841467 + - 0.012039115 + - 0.011302237 + - 0.010624289 + - 0.009999496 + - 0.0 + - 0.0 + + thrust: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.2701938462552998 + - 0.49876088677031816 + - 0.6410583756749411 + - 0.7304171026328261 + - 0.7820140738475616 + - 0.8219695127339289 + - 0.8352112145765765 + - 0.8400940247937402 + - 0.8379537129170351 + - 0.8101778683666324 + - 0.7672683998396476 + - 0.7083562153936742 + - 0.6350905785639259 + - 0.5551074611981718 + - 0.4788235519553873 + - 0.41244475217617255 + - 0.35190962095427364 + - 0.3029658154904963 + - 0.2632886841215642 + - 0.23060389109382756 + - 0.20333704601408872 + - 0.18035220902161636 + - 0.16080492837083768 + - 0.14405295244038488 + - 0.12959884155843146 + - 0.11705148949914825 + - 0.10609947180098464 + - 0.09649207076054334 + - 0.08802550386379156 + - 0.080532705961645 + - 0.07387566569120284 + - 0.0679395700022922 + - 0.0626283035300828 + - 0.05786092523660555 + - 0.05356890955590444 + - 0.04969394382759819 + - 0.04618618064324506 + - 0.04300281785004922 + - 0.040106954468623494 + - 0.017894348350362906 + - 0.016747646863604262 + - 0.015697057336370227 + - 0.014732694286609812 + - 0.013845872021549986 + - 0.013028935873409437 + - 0.0 + - 0.0 + + wind_speed: + - 0.0 + - 0.5 + - 1 + - 1.5 + - 2 + - 2.5 + - 3 + - 3.5 + - 4 + - 4.5 + - 5 + - 5.5 + - 6 + - 6.5 + - 7 + - 7.5 + - 8 + - 8.5 + - 9 + - 9.5 + - 10 + - 10.5 + - 11 + - 11.5 + - 12 + - 12.5 + - 13 + - 13.5 + - 14 + - 14.5 + - 15 + - 15.5 + - 16 + - 16.5 + - 17 + - 17.5 + - 18 + - 18.5 + - 19 + - 19.5 + - 20 + - 20.5 + - 21 + - 21.5 + - 22 + - 22.5 + - 23 + - 23.5 + - 24 + - 24.5 + - 25 + - 25.5 + - 50.0 \ No newline at end of file diff --git a/examples/inputs/10-inputs/floris/floris_input_osw_17MW.yaml b/examples/inputs/10-inputs/floris/floris_input_osw_17MW.yaml new file mode 100644 index 000000000..cf882b6c9 --- /dev/null +++ b/examples/inputs/10-inputs/floris/floris_input_osw_17MW.yaml @@ -0,0 +1,76 @@ +name: Gauss +description: Three turbines using Gauss model +floris_version: v3.0.0 + +logging: + console: + enable: false + level: WARNING + file: + enable: false + level: WARNING + +solver: + type: turbine_grid + turbine_grid_points: 1 + +flow_field: + air_density: 1.225 + reference_wind_height: -1 # -1 is code for use the hub height + turbulence_intensity: 0.06 + wind_directions: + - 270.0 + wind_shear: 0.33 + wind_speeds: + - 8.0 + wind_veer: 0.0 + +wake: + model_strings: + combination_model: sosfs # TODO followup on why not using linear free-stream superposition? - ask Chris Bay and Gen S. + deflection_model: gauss + turbulence_model: crespo_hernandez + velocity_model: gauss + + enable_secondary_steering: false + enable_yaw_added_recovery: false + enable_transverse_velocities: false + + wake_deflection_parameters: + gauss: + ad: 0.0 + alpha: 0.58 + bd: 0.0 + beta: 0.077 + dm: 1.0 + ka: 0.38 + kb: 0.004 + jimenez: + ad: 0.0 + bd: 0.0 + kd: 0.05 + + wake_velocity_parameters: + cc: + a_s: 0.179367259 + b_s: 0.0118889215 + c_s1: 0.0563691592 + c_s2: 0.13290157 + a_f: 3.11 + b_f: -0.68 + c_f: 2.41 + alpha_mod: 1.0 + gauss: + alpha: 0.58 + beta: 0.077 + ka: 0.38 + kb: 0.004 + jensen: + we: 0.05 + + wake_turbulence_parameters: + crespo_hernandez: + initial: 0.1 + constant: 0.5 + ai: 0.8 + downstream: -0.32 \ No newline at end of file diff --git a/examples/inputs/10-inputs/plant/default_fin_config.yaml b/examples/inputs/10-inputs/plant/default_fin_config.yaml new file mode 100644 index 000000000..40c1f7b0d --- /dev/null +++ b/examples/inputs/10-inputs/plant/default_fin_config.yaml @@ -0,0 +1,33 @@ +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 +system_use_lifetime_output: 0 +financial_parameters: + inflation_rate: 2.5 + real_discount_rate: 6.4 +cp_capacity_credit_percent: + - 0 +degradation: + - 0 +revenue: + ppa_price_input: + - 0.01 + ppa_escalation: 1 diff --git a/examples/inputs/10-inputs/plant/greenheart_config_offshore_gom.yaml b/examples/inputs/10-inputs/plant/greenheart_config_offshore_gom.yaml new file mode 100644 index 000000000..751be6b62 --- /dev/null +++ b/examples/inputs/10-inputs/plant/greenheart_config_offshore_gom.yaml @@ -0,0 +1,335 @@ +site: + mean_windspeed: False + depth: 45 #m + wind_layout: + row_spacing: 7 # Also defined in ORBIT config for offshore layout. Greenheart config values override the values in ORBIT. + turbine_spacing: 7 # Also defined in ORBIT config for offshore layout. Greenheart 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 + atb_year: 2030 + cost_year: 2020 # to match ATB +finance_parameters: + costing_general_inflation: 0.025 # used to adjust modeled costs to cost_year + profast_general_inflation: 0 # based on 2022 ATB + discount_rate: 0.11 # nominal return based on 2022 ATB basline workbook + debt_equity_split: False # 2022 ATB uses 68.5% debt + 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.05 + 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: 5 # 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: 2022 # based on turbine capex value provided to ORBIT from 2022 ATB + wind_and_electrical: 2022 # for ORBIT opex + 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' #4216.54 # $/kw 2030 GW scale +electrolyzer: + sizing: + resize_for_enduse: False + size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) + hydrogen_dmd: + rating: 986 # MW # 0.9*Plant rating appears near-optimal for 400 MW wind plant with 3 days of underground pipe storage # MW + cluster_rating_MW: 40 + pem_control_type: 'basic' + 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 + # annual_h2_throughput: 18750 # [kg/yr] -> kg of H2 per year +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: "salt_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] + days: 0 # [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) +# platform: +# opex_rate: 0.0111 # % of capex to determine opex (see table 5 in https://www.acm.nl/sites/default/files/documents/study-on-estimation-method-for-additional-efficient-offshore-grid-opex.pdf) +# installation_days: 14 # days +# site: +# depth: -1 +# distance: -1 +# equipment: +# tech_combined_mass: -1 +# tech_required_area: -1 +platform: + type: "Fixed" + opex_rate: 0.0111 # % of capex to determine opex (see table 5 in https://www.acm.nl/sites/default/files/documents/study-on-estimation-method-for-additional-efficient-offshore-grid-opex.pdf) + # Modified orbit configuration file for a single platform to carry "X technology" + design_phases: + - FixedPlatformDesign # Register Design Phase + install_phases: + FixedPlatformInstallation: 0 # Register Install Phase + oss_install_vessel: example_heavy_lift_vessel + site: + depth: -1 # site depth [m] (if -1, then will use the full plant depth) + distance: -1 # distance to port [km] (if -1, then will use the full plant distance) + equipment: + tech_required_area: -1. # equipment area [m**2] (-1 will require the input during run) + tech_combined_mass: -1 # equipment mass [t] (-1 will require the input during run) + topside_design_cost: 4500000 # topside design cost [USD] + installation_duration: 14 # time at sea [days] + +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 + h2_storage_itc: 0 + # 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 + h2_storage_itc: 0.5 + +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: "onshore" # can be one of ["none", "onshore", "platform"] + battery_location: "onshore" # 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"] + pv_location: "none" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # can be one of ["none", "onshore", "platform"] + scenario9: + electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] + transportation: "none" # 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: "none" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # 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"] + wind_location: "offshore" # can be one of ["onshore", "offshore"] + battery_location: "platform" # can be one of ["none", "onshore", "platform"] + scenario11: + 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: "platform" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # can be one of ["none", "onshore", "platform"] + +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: "lcoh" + merit_figure_user: + name: "lcoh" + 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: 1 + max_minor_iter: 2 + # 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 \ No newline at end of file diff --git a/examples/inputs/10-inputs/plant/hopp_config_gom.yaml b/examples/inputs/10-inputs/plant/hopp_config_gom.yaml new file mode 100644 index 000000000..abba3cc76 --- /dev/null +++ b/examples/inputs/10-inputs/plant/hopp_config_gom.yaml @@ -0,0 +1,70 @@ +site: #!include flatirons_site.yaml + data: + lat: 27.18077 + lon: -96.933 + elev: 0 + year: 2013 + site_boundaries: # Not used in offshore simulation. Site determined using orbit. + verts: + - [0.0, 0.0] + - [0.0, 2000.0] + - [2000.0, 2000.0] + - [2000.0, 0.0] + verts_simple: + - [0.0, 0.0] + - [0.0, 2000.0] + - [2000.0, 2000.0] + - [2000.0, 0.0] + solar_resource_file: "reference_plants/03-offshore-hydrogen-gom/input/weather/solar/27.609619705160302_-97.40229985722155_27.7372_-97.5426_psm3_60_2013.csv" # Solar location is onshore + wind_resource_file: "" + wave_resource_file: "" + grid_resource_file: "" + hub_height: 168.0 + capacity_hours: [] + solar: true + wind: true + wave: false + wind_resource_origin: "WTK" + +technologies: + wind: + num_turbines: 58 + turbine_rating_kw: 17000.0 + model_name: floris + timestep: [0, 8760] + floris_config: input_files/floris/floris_input_osw_17MW.yaml + fin_model: !include default_fin_config.yaml + pv: + system_capacity_kw: 1000 + 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: 2229000 + fin_model: !include default_fin_config.yaml + +config: + simulation_options: + wind: + skip_financial: true + 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: 3526000 # based on 2023 ATB moderate case for offshore wind + solar_installed_cost_mw: 991000 # (2020USD) + storage_installed_cost_mwh: 158000 # (2020USD) + storage_installed_cost_mw: 212000 # (2020USD) + # wind_om_per_kw: 104.271 + 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/examples/inputs/10-inputs/plant/orbit-config-osw_17MW-gom.yaml b/examples/inputs/10-inputs/plant/orbit-config-osw_17MW-gom.yaml new file mode 100644 index 000000000..e8071ef97 --- /dev/null +++ b/examples/inputs/10-inputs/plant/orbit-config-osw_17MW-gom.yaml @@ -0,0 +1,80 @@ +turbine: "osw_17MW" +installation_availability: 0.7 # 30% downtime during installation to match ORCA +site: + area: 142 # km^2 + depth: 45 # m - this value is overridden by greenheart config + distance: 141.5414 # km + distance_to_landfall: 44.74089 # km + mean_windspeed: False #8.45863584474886 # required input for ORBIT, provide desired mean wind speed or set to False to give ORBIT the mean wind speed from the lat/lon selection +plant: + capacity: 986 # MW + layout: grid + num_turbines: 58 # needs to be changed based on turbine model - this value is overridden by greenheart config + row_spacing: 7 # rotor diameters # based on rule of thumb of 7D - this value is overridden by greenheart config + substation_distance: 1 # from ORBIT/examples/configs/example_fixed_project.yaml + turbine_spacing: 7 # rotor diameters # original 10 - this value is overridden by greenheart config +landfall: + interconnection_distance: 5 # km + trench_length: 4 # km +# port: +# monthly_rate: 2000000.0 # USD +# sub_assembly_lines: 1 +# turbine_assembly_cranes: 1 +# Vessels +array_cable_install_vessel: example_cable_lay_vessel # from ORBIT/examples/configs/example_fixed_project.yaml +export_cable_install_vessel: example_cable_lay_vessel # from ORBIT/examples/configs/example_fixed_project.yaml +#export_cable_bury_vessel: example_cable_lay_vessel # from ORBIT/examples/configs/example_fixed_project.yaml +oss_install_vessel: example_heavy_lift_vessel # from ORBIT/examples/configs/example_fixed_project.yaml +spi_vessel: example_scour_protection_vessel # from ORBIT/examples/configs/example_fixed_project.yaml +wtiv: example_wtiv # from ORBIT/examples/configs/example_fixed_project.yaml +# Module Specific +OffshoreSubstationInstallation: + feeder: example_heavy_feeder # from ORBIT/examples/configs/example_fixed_project.yaml + num_feeders: 1 # from ORBIT/examples/configs/example_fixed_project.yaml +array_system: + free_cable_length: 0.5 +array_system_design: + cables: + - XLPE_185mm_66KV + - XLPE_630mm_66KV +export_system_design: + cables: + # - HVDC_2000mm_320kV # as done for OSW HVDC + - XLPE_1000m_220kV # HVAC + percent_added_length: 0.1 # ORBIT/WISDEM default +scour_protection_design: + cost_per_tonne: 40 # OSW + scour_protection_depth: 1 # ORBIT default +MonopileDesign: + monopile_steel_cost: 3500 # USD/t ORBIT new inputs + tp_steel_cost: 4500 # USD/t ORBIT new inputs +# Configured Phases +design_phases: +- ArraySystemDesign # from ORBIT/examples/configs/example_fixed_project.yaml +- MonopileDesign # from ORBIT/examples/configs/example_fixed_project.yaml +# - JacketDesign # Jacket not ready yet in ORBIT +- ScourProtectionDesign # from ORBIT/examples/configs/example_fixed_project.yaml +- ElectricalDesign # new addition from Sophie Bradenkamp combined ExportSystemDesign and OffshoreSubstationDesign phases + +install_phases: # based on Fig. B-7 in https://www.boem.gov/sites/default/files/environmental-stewardship/Environmental-Studies/Renewable-Energy/Phased-Approaches-to-Offshore-Wind-Developments-and-Use-of-Project-Design-Envelope.pdf + MonopileInstallation: 0 # from ORBIT/examples/configs/example_fixed_project.yaml + ExportCableInstallation: 0 # from ORBIT/examples/configs/example_fixed_project.yaml + ScourProtectionInstallation: !!python/tuple # from ORBIT/examples/configs/example_fixed_project.yaml + - MonopileInstallation + - 0.1 # start scour protection installation when 10 % of the MPs have bee installed + OffshoreSubstationInstallation: 0 # from ORBIT/examples/configs/example_fixed_project.yaml + ArrayCableInstallation: !!python/tuple # from ORBIT/examples/configs/example_fixed_project.yaml + - MonopileInstallation + - 0.2 # start array cable installation when 20% of monopiles have been installed + TurbineInstallation: !!python/tuple # from ORBIT/examples/configs/example_fixed_project.yaml + - MonopileInstallation + - 0.3 # start WTG installation when 30% of the monopiles have been installed + # JacketInstallation: 0 # Jacket not ready yet in ORBIT + +# Wind Project Inputs +project_parameters: + turbine_capex: 1500 # $USD turbine CAPEX only as per discussion with Matt Shields + opex_rate: 53.25648 #osw national analysis, $USD/kW/yr ATB 2022, OpEx based on R&D assumptions with a base year of 2022. ATB https://atb.nrel.gov/electricity/2022/offshore_wind + # commissioning: 0.01 # ORBIT default + # decommissioning: 0.15 # ORBIT default + # project_lifetime: 30 # 2022 ATB capital recovery period for offshore wind \ No newline at end of file diff --git a/examples/inputs/10-inputs/turbines/osw_17MW.yaml b/examples/inputs/10-inputs/turbines/osw_17MW.yaml new file mode 100644 index 000000000..78b31ca7d --- /dev/null +++ b/examples/inputs/10-inputs/turbines/osw_17MW.yaml @@ -0,0 +1,102 @@ +turbine_type: 'osw_17MW' #'17MW_low_SP' +generator_efficiency: 0.957563 +turbine_rating: 17.0 # MW +rated_windspeed: 7.0 # m/s estimated from power curve +hub_height: 168.0 +pP: 1.88 +pT: 1.88 +rotor_diameter: 278.035 +TSR: 9.0 +ref_tilt_cp_ct: 6.0 # [3] +tower: + deck_space: 78.5 # m^2 based on OSW 18 MW turbine --> 10 m diam base pi*d^2/4 + mass: 560 # t based on OSW 18 MW turbine + length: 163 # m #guess (hub height - 3 m --> for 6 m diameter hub) + sections: 2 # based on OSW 18 MW turbine + section_diameters: # m - these values guess by Jared Thomas based on 10 m diameter base as specified in deck_space comment above + - 10.0 + - 9.0 + section_heights: # m - just bottom and top + - 0.0 + - 163.0 +nacelle: + deck_space: 281 # m^2 based on OSW 18 MW turbine + mass: 1003 # t based on OSW 18 MW turbine +blade: + length: 123 # m guess based on rotor diam divided by 2 and a 6 m hub diam + deck_space: 553.5 # m^2 (root diam * length) based on estimated 4.5 m root diam + mass: 91 # t based on OSW 18 MW turbine +ref_density_cp_ct: 1.225 +power_thrust_table: + power: + - 0.000000 + - 0.16865464 + - 0.37619304 + - 0.42067177 + - 0.43252714 + - 0.43554184 + - 0.43572894 + - 0.43572894 + - 0.43572894 + - 0.43572894 + - 0.43572894 + - 0.42027282 + - 0.37547625 + - 0.339614 + - 0.22896413 + - 0.15532944 + - 0.10691674 + - 0.0750524 + - 0.05388202 + - 0.03962032 + - 0.02985469 + - 0.0 + - 0.0 + thrust: + - 0.000000 + - 0.79301095 + - 0.76374783 + - 0.76731939 + - 0.76137324 + - 0.75671907 + - 0.7496741 + - 0.7496741 + - 0.7496741 + - 0.7496741 + - 0.7496741 + - 0.65776665 + - 0.54309148 + - 0.47233399 + - 0.29520804 + - 0.1944985 + - 0.13271888 + - 0.09351834 + - 0.06798931 + - 0.05096422 + - 0.03934766 + - 0.0 + - 0.0 + wind_speed: + - 0.000 + - 3 + - 4.27204607 + - 5.30403148 + - 6.08010611 + - 6.58835037 + - 6.82095822 + - 6.86755938 + - 7.1926538 + - 7.79124841 + - 8.6541495 + - 9.76810389 + - 10.7501945 + - 11.11600255 + - 12.67714331 + - 14.42754887 + - 16.34033501 + - 18.38612357 + - 20.5334936 + - 22.74946399 + - 25 + - 25.020 + - 50.0 \ No newline at end of file diff --git a/examples/inputs/10-inputs/weather/solar/27.609619705160302_-97.40229985722155_27.7372_-97.5426_psm3_60_2013.csv b/examples/inputs/10-inputs/weather/solar/27.609619705160302_-97.40229985722155_27.7372_-97.5426_psm3_60_2013.csv new file mode 100644 index 000000000..af2ba19be --- /dev/null +++ b/examples/inputs/10-inputs/weather/solar/27.609619705160302_-97.40229985722155_27.7372_-97.5426_psm3_60_2013.csv @@ -0,0 +1,8763 @@ +Source,Location ID,City,State,Country,Latitude,Longitude,Time Zone,Elevation,Local Time Zone,Clearsky DHI Units,Clearsky DNI Units,Clearsky GHI Units,Dew Point Units,DHI Units,DNI Units,GHI Units,Solar Zenith Angle Units,Temperature Units,Pressure Units,Relative Humidity Units,Precipitable Water Units,Wind Direction Units,Wind Speed Units,Cloud Type -15,Cloud Type 0,Cloud Type 1,Cloud Type 2,Cloud Type 3,Cloud Type 4,Cloud Type 5,Cloud Type 6,Cloud Type 7,Cloud Type 8,Cloud Type 9,Cloud Type 10,Cloud Type 11,Cloud Type 12,Fill Flag 0,Fill Flag 1,Fill Flag 2,Fill Flag 3,Fill Flag 4,Fill Flag 5,Surface Albedo Units,Version +NSRDB,683562,-,-,-,27.73,-97.54,-6,8,-6,w/m2,w/m2,w/m2,c,w/m2,w/m2,w/m2,Degree,c,mbar,%,cm,Degrees,m/s,N/A,Clear,Probably Clear,Fog,Water,Super-Cooled Water,Mixed,Opaque Ice,Cirrus,Overlapping,Overshooting,Unknown,Dust,Smoke,N/A,Missing Image,Low Irradiance,Exceeds Clearsky,Missing CLoud Properties,Rayleigh Violation,N/A,3.0.6 +Year,Month,Day,Hour,Minute,DNI,DHI,GHI,Dew Point,Temperature,Pressure,Relative Humidity,Wind Direction,Wind Speed,Surface Albedo +2013,1,1,0,30,0,0,0,18,18,1010,100,196.20000000000002,2.6,0.138 +2013,1,1,1,30,0,0,0,18,18,1010,100,203.20000000000002,2,0.138 +2013,1,1,2,30,0,0,0,17,17,1010,100,207.60000000000002,1.5,0.138 +2013,1,1,3,30,0,0,0,17,17,1010,100,206.60000000000002,1.3,0.138 +2013,1,1,4,30,0,0,0,17,17,1010,100,204.20000000000002,1.2000000000000002,0.138 +2013,1,1,5,30,0,0,0,17,17,1010,100,210.10000000000002,1.2000000000000002,0.138 +2013,1,1,6,30,0,0,0,17,17,1010,100,231.9,1.6,0.138 +2013,1,1,7,30,0,0,0,17,17,1010,100,263.90000000000003,2.5,0.138 +2013,1,1,8,30,0,30,30,16,17,1010,97.95,289.8,3.7,0.138 +2013,1,1,9,30,0,17,17,15,17,1010,93.48,312.20000000000005,4.7,0.138 +2013,1,1,10,30,21,198,208,14,16,1010,90.8,329.90000000000003,6,0.138 +2013,1,1,11,30,0,100,100,12,16,1010,85.39,343.40000000000003,7.2,0.138 +2013,1,1,12,30,0,84,84,10,15,1010,75.11,354.8,7.800000000000001,0.138 +2013,1,1,13,30,64,272,311,9,15,1010,68.44,3.1,7.800000000000001,0.138 +2013,1,1,14,30,68,233,270,8,15,1010,64.54,9.1,7.4,0.138 +2013,1,1,15,30,0,96,96,7,15,1010,61.97,12.9,6.7,0.138 +2013,1,1,16,30,196,91,137,7,14,1010,64.19,13,5.9,0.138 +2013,1,1,17,30,0,17,17,7,13,1010,67.62,10.200000000000001,5.300000000000001,0.138 +2013,1,1,18,30,0,0,0,7,13,1020,67.58,7.7,5.300000000000001,0.138 +2013,1,1,19,30,0,0,0,6,12,1020,71,9.8,5.300000000000001,0.138 +2013,1,1,20,30,0,0,0,6,11,1020,74.09,11.8,5.2,0.138 +2013,1,1,21,30,0,0,0,6,11,1020,76.32000000000001,12.5,5.1000000000000005,0.138 +2013,1,1,22,30,0,0,0,5,10,1020,73.29,13.8,4.9,0.138 +2013,1,1,23,30,0,0,0,4,10,1020,71.02,13.700000000000001,4.800000000000001,0.138 +2013,1,2,0,30,0,0,0,4,9,1020,74.18,12.9,4.800000000000001,0.138 +2013,1,2,1,30,0,0,0,4,9,1020,72.91,12.4,4.9,0.138 +2013,1,2,2,30,0,0,0,4,9,1020,77.08,13.3,5,0.138 +2013,1,2,3,30,0,0,0,4,8,1020,76.31,13.700000000000001,5.1000000000000005,0.138 +2013,1,2,4,30,0,0,0,3,8,1020,75.27,13.100000000000001,5.1000000000000005,0.138 +2013,1,2,5,30,0,0,0,3,7,1020,79.21000000000001,15.4,5.2,0.138 +2013,1,2,6,30,0,0,0,3,7,1020,77.87,19,5.1000000000000005,0.138 +2013,1,2,7,30,0,0,0,3,7,1020,76.46000000000001,17.8,4.9,0.138 +2013,1,2,8,30,0,14,14,2,7,1020,74.24,15.200000000000001,4.800000000000001,0.138 +2013,1,2,9,30,0,22,22,2,7,1020,72.46000000000001,14.3,4.6000000000000005,0.138 +2013,1,2,10,30,0,29,29,2,8,1020,66.86,10.8,4.4,0.138 +2013,1,2,11,30,0,142,142,2,8,1020,66.53,10.100000000000001,4.3,0.138 +2013,1,2,12,30,1,177,178,2,8,1020,66.5,8.200000000000001,4.1000000000000005,0.138 +2013,1,2,13,30,0,117,117,2,9,1020,62.33,4.4,4.1000000000000005,0.138 +2013,1,2,14,30,12,192,198,2,8,1020,67.43,0.4,4.1000000000000005,0.138 +2013,1,2,15,30,0,98,98,2,8,1020,73.18,358.1,4.1000000000000005,0.138 +2013,1,2,16,30,0,61,61,2,7,1020,74.09,357.90000000000003,4.1000000000000005,0.138 +2013,1,2,17,30,0,8,8,2,6,1020,80.39,0.8,3.9000000000000004,0.138 +2013,1,2,18,30,0,0,0,3,6,1020,81.3,3.7,3.9000000000000004,0.138 +2013,1,2,19,30,0,0,0,2,6,1020,80.95,7.1000000000000005,3.9000000000000004,0.138 +2013,1,2,20,30,0,0,0,2,6,1020,79.77,7.300000000000001,3.8000000000000003,0.138 +2013,1,2,21,30,0,0,0,2,6,1020,78.05,4.3,3.8000000000000003,0.138 +2013,1,2,22,30,0,0,0,2,6,1020,76.16,3.9000000000000004,3.8000000000000003,0.138 +2013,1,2,23,30,0,0,0,1,6,1020,74.17,6.9,3.9000000000000004,0.138 +2013,1,3,0,30,0,0,0,1,6,1020,72.69,9.5,4.1000000000000005,0.138 +2013,1,3,1,30,0,0,0,1,6,1020,71.75,8.5,4.3,0.138 +2013,1,3,2,30,0,0,0,1,6,1020,71.06,9.3,4.4,0.138 +2013,1,3,3,30,0,0,0,1,6,1020,71.10000000000001,12.200000000000001,4.5,0.138 +2013,1,3,4,30,0,0,0,1,6,1020,71.91,16.2,4.6000000000000005,0.138 +2013,1,3,5,30,0,0,0,1,6,1020,73.51,16.900000000000002,4.6000000000000005,0.138 +2013,1,3,6,30,0,0,0,1,6,1020,74.78,16.6,4.800000000000001,0.138 +2013,1,3,7,30,0,0,0,1,6,1020,74.59,16.400000000000002,5,0.138 +2013,1,3,8,30,0,45,45,1,7,1020,68.41,16.7,5.2,0.138 +2013,1,3,9,30,0,111,111,1,7,1020,67.05,19.1,5.300000000000001,0.138 +2013,1,3,10,30,0,133,133,0,8,1020,61.160000000000004,21.900000000000002,5.4,0.138 +2013,1,3,11,30,11,211,218,0,9,1020,59.68,23.700000000000003,5.4,0.138 +2013,1,3,12,30,5,197,200,0,9,1020,54.42,22.8,5.300000000000001,0.138 +2013,1,3,13,30,10,212,218,0,9,1020,53.11,20.3,5.1000000000000005,0.138 +2013,1,3,14,30,21,204,216,0,10,1020,48.54,18.8,5,0.138 +2013,1,3,15,30,767,83,398,0,10,1020,47.550000000000004,20.3,4.7,0.138 +2013,1,3,16,30,613,61,210,0,9,1020,50.22,22.400000000000002,4.2,0.138 +2013,1,3,17,30,206,19,29,0,9,1020,52.370000000000005,22,3.7,0.138 +2013,1,3,18,30,0,0,0,0,9,1020,55.85,19.6,3.6,0.138 +2013,1,3,19,30,0,0,0,1,9,1020,57.29,19.900000000000002,3.8000000000000003,0.138 +2013,1,3,20,30,0,0,0,1,9,1020,62.72,22.3,3.9000000000000004,0.138 +2013,1,3,21,30,0,0,0,1,8,1020,64.54,25.400000000000002,3.9000000000000004,0.138 +2013,1,3,22,30,0,0,0,2,8,1020,66.76,27.5,3.7,0.138 +2013,1,3,23,30,0,0,0,2,8,1020,69.04,26,3.5,0.138 +2013,1,4,0,30,0,0,0,3,8,1020,71.15,21,3.3000000000000003,0.138 +2013,1,4,1,30,0,0,0,3,7,1020,77.99,14.3,3.4000000000000004,0.138 +2013,1,4,2,30,0,0,0,3,7,1020,79.11,5.800000000000001,3.9000000000000004,0.138 +2013,1,4,3,30,0,0,0,3,7,1020,79.39,358.3,4.4,0.138 +2013,1,4,4,30,0,0,0,3,7,1020,79.11,353.5,4.7,0.138 +2013,1,4,5,30,0,0,0,3,7,1020,79.56,349.3,5.1000000000000005,0.138 +2013,1,4,6,30,0,0,0,3,7,1020,80.77,349.40000000000003,5.300000000000001,0.138 +2013,1,4,7,30,0,0,0,4,7,1020,82.86,351.90000000000003,5.6000000000000005,0.138 +2013,1,4,8,30,0,6,6,4,7,1030,84.58,359.40000000000003,6,0.138 +2013,1,4,9,30,0,110,110,4,9,1030,75.15,10.3,6.300000000000001,0.138 +2013,1,4,10,30,0,72,72,4,10,1020,71.04,18.8,6.2,0.138 +2013,1,4,11,30,0,100,100,5,11,1020,66.99,22.8,5.9,0.138 +2013,1,4,12,30,0,158,158,5,11,1020,67.58,23.5,5.5,0.138 +2013,1,4,13,30,0,133,133,5,12,1020,68.3,22.700000000000003,5.1000000000000005,0.138 +2013,1,4,14,30,715,132,517,5,12,1020,68.85000000000001,22,5,0.138 +2013,1,4,15,30,0,100,100,5,11,1020,68.72,21.6,4.800000000000001,0.138 +2013,1,4,16,30,443,83,192,5,10,1020,72.71000000000001,21.400000000000002,4.4,0.138 +2013,1,4,17,30,0,26,26,5,10,1020,73.11,19.1,4.2,0.138 +2013,1,4,18,30,0,0,0,5,9,1020,78.12,14.700000000000001,4.2,0.138 +2013,1,4,19,30,0,0,0,5,9,1020,77.02,11.4,4.1000000000000005,0.138 +2013,1,4,20,30,0,0,0,5,8,1020,81.76,7.2,4.1000000000000005,0.138 +2013,1,4,21,30,0,0,0,5,8,1020,81.88,4.6000000000000005,4.2,0.138 +2013,1,4,22,30,0,0,0,5,8,1020,82.45,2,4.6000000000000005,0.138 +2013,1,4,23,30,0,0,0,5,7,1020,89,0.1,5,0.138 +2013,1,5,0,30,0,0,0,5,7,1020,89.56,358.8,5.300000000000001,0.138 +2013,1,5,1,30,0,0,0,5,7,1020,89.63,354.90000000000003,5.6000000000000005,0.138 +2013,1,5,2,30,0,0,0,5,7,1020,89.21000000000001,351.90000000000003,5.7,0.138 +2013,1,5,3,30,0,0,0,5,7,1020,95.19,351.70000000000005,5.6000000000000005,0.138 +2013,1,5,4,30,0,0,0,5,6,1020,95.2,352.1,5.5,0.138 +2013,1,5,5,30,0,0,0,5,6,1020,95.58,352.70000000000005,5.4,0.138 +2013,1,5,6,30,0,0,0,5,6,1020,96.32000000000001,354,5.300000000000001,0.138 +2013,1,5,7,30,0,0,0,5,7,1020,90.68,356.1,5.2,0.138 +2013,1,5,8,30,0,34,34,5,8,1020,90.75,359.8,5.2,0.138 +2013,1,5,9,30,0,130,130,5,9,1020,79.51,2.6,5,0.138 +2013,1,5,10,30,38,213,232,5,10,1020,74.77,0.9,4.800000000000001,0.138 +2013,1,5,11,30,0,102,102,5,11,1020,70.33,357,4.6000000000000005,0.138 +2013,1,5,12,30,0,118,118,5,12,1020,66.3,353.5,4.4,0.138 +2013,1,5,13,30,65,276,316,6,13,1020,62.730000000000004,351.3,4.1000000000000005,0.138 +2013,1,5,14,30,13,195,202,6,13,1020,63.52,350.90000000000003,4,0.138 +2013,1,5,15,30,95,178,218,6,13,1020,64.3,354.1,3.8000000000000003,0.138 +2013,1,5,16,30,0,81,81,6,12,1020,69.34,0.4,3.2,0.138 +2013,1,5,17,30,0,12,12,7,10,1020,83.35000000000001,8.200000000000001,2.5,0.138 +2013,1,5,18,30,0,0,0,7,9,1020,90.60000000000001,17.3,2.3000000000000003,0.138 +2013,1,5,19,30,0,0,0,7,9,1020,96.65,22.8,2.4000000000000004,0.138 +2013,1,5,20,30,0,0,0,7,8,1020,97.10000000000001,25.900000000000002,2.3000000000000003,0.138 +2013,1,5,21,30,0,0,0,7,8,1020,97.66,23.200000000000003,2.2,0.138 +2013,1,5,22,30,0,0,0,7,7,1020,100,14.3,2.2,0.138 +2013,1,5,23,30,0,0,0,7,7,1020,100,4,2.4000000000000004,0.138 +2013,1,6,0,30,0,0,0,7,7,1020,100,356.1,2.8000000000000003,0.138 +2013,1,6,1,30,0,0,0,6,7,1020,100,350.40000000000003,3.2,0.138 +2013,1,6,2,30,0,0,0,6,6,1020,100,345.3,3.6,0.138 +2013,1,6,3,30,0,0,0,6,6,1020,100,341.8,3.8000000000000003,0.138 +2013,1,6,4,30,0,0,0,6,6,1020,100,339.40000000000003,4,0.138 +2013,1,6,5,30,0,0,0,6,6,1020,100,339.90000000000003,4.1000000000000005,0.138 +2013,1,6,6,30,0,0,0,6,6,1020,100,343.20000000000005,4.2,0.138 +2013,1,6,7,30,0,0,0,6,6,1020,100,348.6,4.5,0.138 +2013,1,6,8,30,15,78,81,6,8,1020,88.07000000000001,352.3,4.800000000000001,0.138 +2013,1,6,9,30,774,78,377,6,11,1020,76.61,356.3,5,0.138 +2013,1,6,10,30,879,85,542,5,14,1020,59.35,7.7,5,0.138 +2013,1,6,11,30,928,89,652,4,15,1020,49.300000000000004,12.3,4.7,0.138 +2013,1,6,12,30,937,93,694,3,16,1020,44.08,12.100000000000001,4.4,0.138 +2013,1,6,13,30,934,90,667,3,17,1020,39.21,11,4.1000000000000005,0.138 +2013,1,6,14,30,904,83,574,2,18,1020,35,10.3,3.9000000000000004,0.138 +2013,1,6,15,30,825,75,420,1,17,1020,36.15,12.5,3.5,0.138 +2013,1,6,16,30,675,57,227,2,15,1020,41.89,17.7,2.5,0.138 +2013,1,6,17,30,275,21,36,5,12,1020,64,29.700000000000003,1.8,0.138 +2013,1,6,18,30,0,0,0,5,10,1020,73.19,39.5,1.9000000000000001,0.138 +2013,1,6,19,30,0,0,0,5,9,1020,79.59,44.900000000000006,2,0.138 +2013,1,6,20,30,0,0,0,5,9,1020,86.64,46.400000000000006,2,0.138 +2013,1,6,21,30,0,0,0,6,8,1020,87.52,40.400000000000006,2.1,0.138 +2013,1,6,22,30,0,0,0,6,7,1020,93.8,29.400000000000002,2.1,0.138 +2013,1,6,23,30,0,0,0,6,6,1020,100,19.400000000000002,2.2,0.138 +2013,1,7,0,30,0,0,0,5,6,1020,99.83,15.700000000000001,2.3000000000000003,0.138 +2013,1,7,1,30,0,0,0,4,5,1020,100,18,2.4000000000000004,0.138 +2013,1,7,2,30,0,0,0,4,5,1020,100,20.5,2.4000000000000004,0.138 +2013,1,7,3,30,0,0,0,4,5,1020,100,22.400000000000002,2.3000000000000003,0.138 +2013,1,7,4,30,0,0,0,4,5,1020,100,22,2.2,0.138 +2013,1,7,5,30,0,0,0,4,5,1020,100,22.200000000000003,2.1,0.138 +2013,1,7,6,30,0,0,0,4,5,1020,100,22.1,2.1,0.138 +2013,1,7,7,30,0,0,0,6,6,1020,100,19.900000000000002,2.5,0.138 +2013,1,7,8,30,329,70,140,6,8,1020,89.22,19,2.6,0.138 +2013,1,7,9,30,703,92,363,6,11,1020,75.38,22.6,2.1,0.138 +2013,1,7,10,30,526,172,446,7,14,1020,65.55,46,1.7000000000000002,0.138 +2013,1,7,11,30,525,211,531,7,15,1020,62.940000000000005,64,1.4000000000000001,0.138 +2013,1,7,12,30,529,225,565,8,16,1020,59.120000000000005,73.8,1.4000000000000001,0.138 +2013,1,7,13,30,516,224,544,8,17,1010,55.67,84.4,1.7000000000000002,0.138 +2013,1,7,14,30,371,222,425,8,17,1010,56.67,85.4,2.1,0.138 +2013,1,7,15,30,424,148,326,8,16,1010,62.870000000000005,87.60000000000001,2.5,0.138 +2013,1,7,16,30,49,98,111,9,15,1010,71.55,85.80000000000001,2.4000000000000004,0.138 +2013,1,7,17,30,0,17,17,11,14,1010,84.59,79.2,2.3000000000000003,0.138 +2013,1,7,18,30,0,0,0,12,14,1010,89.31,74.4,2.7,0.138 +2013,1,7,19,30,0,0,0,13,14,1010,94.28,72.7,2.9000000000000004,0.138 +2013,1,7,20,30,0,0,0,13,14,1010,98.35000000000001,72.7,2.8000000000000003,0.138 +2013,1,7,21,30,0,0,0,14,14,1010,100,70.3,2.7,0.138 +2013,1,7,22,30,0,0,0,14,14,1010,100,74,2.7,0.138 +2013,1,7,23,30,0,0,0,14,14,1010,100,82.9,2.5,0.138 +2013,1,8,0,30,0,0,0,14,14,1010,100,94.80000000000001,2,0.138 +2013,1,8,1,30,0,0,0,14,14,1010,100,111.4,1.8,0.138 +2013,1,8,2,30,0,0,0,14,14,1010,100,125,1.7000000000000002,0.138 +2013,1,8,3,30,0,0,0,14,14,1010,100,128,1.6,0.138 +2013,1,8,4,30,0,0,0,14,14,1010,100,122.2,1.4000000000000001,0.138 +2013,1,8,5,30,0,0,0,14,14,1010,100,108.4,1.5,0.138 +2013,1,8,6,30,0,0,0,14,14,1010,100,98.9,1.6,0.138 +2013,1,8,7,30,0,0,0,16,16,1010,100,99.60000000000001,2.1,0.138 +2013,1,8,8,30,0,6,6,17,18,1010,96.47,106,2.8000000000000003,0.138 +2013,1,8,9,30,0,46,46,18,19,1010,96.76,120.80000000000001,3.6,0.138 +2013,1,8,10,30,0,104,104,19,20,1010,95.14,141.20000000000002,4.6000000000000005,0.138 +2013,1,8,11,30,5,193,196,19,21,1010,91,150.5,5.2,0.138 +2013,1,8,12,30,0,143,143,19,22,1000,86.24,154.60000000000002,5.5,0.138 +2013,1,8,13,30,2,181,182,19,21,1000,92.58,159.4,5.300000000000001,0.138 +2013,1,8,14,30,0,130,130,19,21,1000,93.87,162.8,4.800000000000001,0.138 +2013,1,8,15,30,0,139,139,20,20,1000,100,154.4,4.2,0.138 +2013,1,8,16,30,0,69,69,20,20,1000,100,144.1,3.7,0.138 +2013,1,8,17,30,0,11,11,19,20,1000,100,132.3,3.5,0.138 +2013,1,8,18,30,0,0,0,19,20,1000,100,123.5,3.8000000000000003,0.131 +2013,1,8,19,30,0,0,0,20,20,1000,100,119,4.2,0.131 +2013,1,8,20,30,0,0,0,20,20,1000,100,118.9,4.4,0.131 +2013,1,8,21,30,0,0,0,20,20,1000,100,123.80000000000001,4.4,0.131 +2013,1,8,22,30,0,0,0,20,20,1000,100,131.4,4.3,0.131 +2013,1,8,23,30,0,0,0,20,20,1000,100,140.5,4.2,0.131 +2013,1,9,0,30,0,0,0,20,20,1000,100,148.3,4.1000000000000005,0.131 +2013,1,9,1,30,0,0,0,19,20,1000,100,152.8,3.9000000000000004,0.131 +2013,1,9,2,30,0,0,0,19,19,1000,100,157.3,3.6,0.131 +2013,1,9,3,30,0,0,0,18,18,1000,100,174.8,2.8000000000000003,0.131 +2013,1,9,4,30,0,0,0,17,17,1010,100,210.60000000000002,2.5,0.131 +2013,1,9,5,30,0,0,0,16,16,1010,100,268.2,3.9000000000000004,0.131 +2013,1,9,6,30,0,0,0,15,15,1010,100,305.8,5.4,0.131 +2013,1,9,7,30,0,0,0,13,14,1010,95.72,331.8,5.5,0.131 +2013,1,9,8,30,0,3,3,12,14,1010,92.39,336.8,5.300000000000001,0.131 +2013,1,9,9,30,0,61,61,13,15,1010,88.34,321.70000000000005,5.6000000000000005,0.131 +2013,1,9,10,30,0,156,156,13,16,1010,85.52,296,6.300000000000001,0.131 +2013,1,9,11,30,16,225,235,13,17,1010,77.83,292.1,6.2,0.131 +2013,1,9,12,30,31,263,284,11,18,1010,65.46000000000001,296.40000000000003,5.5,0.131 +2013,1,9,13,30,8,208,213,10,18,1010,61.02,291,4.2,0.131 +2013,1,9,14,30,0,140,140,9,18,1010,58.75,301.5,2.7,0.131 +2013,1,9,15,30,47,174,195,9,18,1010,57.32,304.90000000000003,1.8,0.131 +2013,1,9,16,30,16,96,100,10,17,1010,65.83,258.1,1.3,0.131 +2013,1,9,17,30,0,17,17,12,16,1010,85.72,196.60000000000002,1.4000000000000001,0.131 +2013,1,9,18,30,0,0,0,12,14,1010,88.8,130.70000000000002,1.6,0.131 +2013,1,9,19,30,0,0,0,12,14,1010,89.72,122.80000000000001,1.2000000000000002,0.131 +2013,1,9,20,30,0,0,0,12,14,1010,90.51,127.9,0.7000000000000001,0.131 +2013,1,9,21,30,0,0,0,12,14,1010,90.82000000000001,148.9,0.4,0.131 +2013,1,9,22,30,0,0,0,12,13,1010,96.32000000000001,150.6,0.7000000000000001,0.131 +2013,1,9,23,30,0,0,0,11,12,1010,100,147.5,1.1,0.131 +2013,1,10,0,30,0,0,0,11,12,1010,100,161.9,1.2000000000000002,0.131 +2013,1,10,1,30,0,0,0,11,11,1010,100,180.10000000000002,1.5,0.131 +2013,1,10,2,30,0,0,0,11,11,1010,100,183.8,1.4000000000000001,0.131 +2013,1,10,3,30,0,0,0,9,10,1010,100,219.8,1.6,0.131 +2013,1,10,4,30,0,0,0,9,10,1010,100,279.2,2.3000000000000003,0.131 +2013,1,10,5,30,0,0,0,9,9,1010,100,305.6,2.7,0.131 +2013,1,10,6,30,0,0,0,8,9,1010,100,323.8,2.6,0.131 +2013,1,10,7,30,0,0,0,8,10,1010,97.8,337.20000000000005,2.7,0.131 +2013,1,10,8,30,584,54,179,8,12,1010,78.15,340.5,2.7,0.131 +2013,1,10,9,30,780,74,376,7,15,1010,62.410000000000004,338.3,2.5,0.131 +2013,1,10,10,30,873,83,541,6,18,1010,47.57,321.20000000000005,3,0.131 +2013,1,10,11,30,918,88,651,5,20,1010,42.54,304.5,3.1,0.131 +2013,1,10,12,30,934,91,696,5,21,1010,39.26,295.90000000000003,2.7,0.131 +2013,1,10,13,30,932,87,672,6,21,1010,37.67,286.1,2,0.131 +2013,1,10,14,30,905,80,581,5,22,1010,35.19,274,1.4000000000000001,0.131 +2013,1,10,15,30,839,71,430,5,21,1010,36.69,248.20000000000002,0.9,0.131 +2013,1,10,16,30,700,55,239,7,19,1010,45.82,198.9,0.9,0.131 +2013,1,10,17,30,329,23,45,10,17,1010,63.76,144.6,1.4000000000000001,0.131 +2013,1,10,18,30,0,0,0,9,15,1010,67.86,136.5,2,0.131 +2013,1,10,19,30,0,0,0,9,13,1010,81.10000000000001,135.3,2.4000000000000004,0.131 +2013,1,10,20,30,0,0,0,10,12,1010,92.05,136.20000000000002,2.5,0.131 +2013,1,10,21,30,0,0,0,11,12,1010,97.12,140.20000000000002,2.4000000000000004,0.131 +2013,1,10,22,30,0,0,0,11,12,1010,100,144.9,2.4000000000000004,0.131 +2013,1,10,23,30,0,0,0,11,11,1010,100,148.8,2.4000000000000004,0.131 +2013,1,11,0,30,0,0,0,11,11,1010,100,154.4,2.3000000000000003,0.131 +2013,1,11,1,30,0,0,0,11,11,1010,100,163.60000000000002,2.2,0.131 +2013,1,11,2,30,0,0,0,9,11,1010,100,174.10000000000002,2.1,0.131 +2013,1,11,3,30,0,0,0,9,10,1010,100,180.70000000000002,2,0.131 +2013,1,11,4,30,0,0,0,9,10,1010,100,182,1.8,0.131 +2013,1,11,5,30,0,0,0,9,10,1010,100,181.3,1.7000000000000002,0.131 +2013,1,11,6,30,0,0,0,11,11,1010,100,175.9,1.5,0.131 +2013,1,11,7,30,0,0,0,13,13,1010,100,162.5,1.8,0.131 +2013,1,11,8,30,335,74,146,14,16,1010,91.7,149.3,2.6,0.131 +2013,1,11,9,30,548,110,323,15,19,1010,85.04,143.20000000000002,3.6,0.131 +2013,1,11,10,30,595,152,464,16,22,1010,75.72,154.5,4.5,0.131 +2013,1,11,11,30,445,242,515,17,23,1010,71.68,162.9,5,0.131 +2013,1,11,12,30,609,201,597,18,24,1010,69.86,168.8,5.2,0.131 +2013,1,11,13,30,808,127,637,18,25,1000,66.12,170.20000000000002,5.1000000000000005,0.131 +2013,1,11,14,30,473,204,466,18,25,1000,65.47,168.10000000000002,5,0.131 +2013,1,11,15,30,206,185,274,17,24,1000,68.89,163.10000000000002,4.9,0.131 +2013,1,11,16,30,514,81,217,18,22,1000,78.94,152.1,4.6000000000000005,0.131 +2013,1,11,17,30,146,29,39,18,20,1000,93.08,138.20000000000002,4.4,0.131 +2013,1,11,18,30,0,0,0,19,19,1000,100,134.20000000000002,4.3,0.131 +2013,1,11,19,30,0,0,0,19,19,1000,100,136.3,4.1000000000000005,0.131 +2013,1,11,20,30,0,0,0,19,19,1000,100,142.3,3.9000000000000004,0.131 +2013,1,11,21,30,0,0,0,19,19,1000,100,149.20000000000002,3.7,0.131 +2013,1,11,22,30,0,0,0,19,19,1000,100,154.3,3.5,0.131 +2013,1,11,23,30,0,0,0,19,19,1000,100,156.70000000000002,3.5,0.131 +2013,1,12,0,30,0,0,0,19,19,1000,100,158.20000000000002,3.5,0.131 +2013,1,12,1,30,0,0,0,19,19,1000,100,159.20000000000002,3.9000000000000004,0.131 +2013,1,12,2,30,0,0,0,19,19,1000,100,166.60000000000002,4.6000000000000005,0.131 +2013,1,12,3,30,0,0,0,19,19,1000,100,170.3,5.1000000000000005,0.131 +2013,1,12,4,30,0,0,0,19,20,1000,100,166.4,5.800000000000001,0.131 +2013,1,12,5,30,0,0,0,20,20,1000,100,162.10000000000002,6.5,0.131 +2013,1,12,6,30,0,0,0,20,20,1000,100,166.20000000000002,6.800000000000001,0.131 +2013,1,12,7,30,0,0,0,20,21,1000,100,168.60000000000002,7.2,0.131 +2013,1,12,8,30,0,67,67,21,22,1000,100,169.20000000000002,7.800000000000001,0.131 +2013,1,12,9,30,46,157,176,21,23,1000,90.10000000000001,170,8.5,0.131 +2013,1,12,10,30,153,241,323,21,24,1000,84.24,172.60000000000002,8.700000000000001,0.131 +2013,1,12,11,30,104,289,354,20,25,1000,77.56,176,8.3,0.131 +2013,1,12,12,30,15,235,245,20,26,1000,71.44,176.60000000000002,7.9,0.131 +2013,1,12,13,30,69,287,332,20,27,1000,70.26,175.20000000000002,7.7,0.131 +2013,1,12,14,30,123,258,327,19,27,1000,65.36,173.10000000000002,7.6000000000000005,0.131 +2013,1,12,15,30,0,81,81,19,26,1000,69.31,170.3,7.5,0.131 +2013,1,12,16,30,0,45,45,20,24,1000,80.47,165.5,7,0.131 +2013,1,12,17,30,0,8,8,20,22,1000,92.27,159.9,6,0.131 +2013,1,12,18,30,0,0,0,20,21,1000,97.57000000000001,161,4.9,0.131 +2013,1,12,19,30,0,0,0,20,20,1000,100,170.8,3.8000000000000003,0.131 +2013,1,12,20,30,0,0,0,20,20,1000,100,179.8,2.7,0.131 +2013,1,12,21,30,0,0,0,19,19,1000,100,186.20000000000002,1.7000000000000002,0.131 +2013,1,12,22,30,0,0,0,19,19,1000,100,198.20000000000002,1,0.131 +2013,1,12,23,30,0,0,0,18,19,1000,100,224,0.7000000000000001,0.131 +2013,1,13,0,30,0,0,0,17,18,1000,100,247.8,0.7000000000000001,0.131 +2013,1,13,1,30,0,0,0,15,16,1000,98.53,303,1.8,0.131 +2013,1,13,2,30,0,0,0,12,13,1000,97.67,324.90000000000003,4.4,0.131 +2013,1,13,3,30,0,0,0,7,11,1000,81.54,337.70000000000005,7.2,0.131 +2013,1,13,4,30,0,0,0,3,9,1010,68.05,347.6,8.700000000000001,0.131 +2013,1,13,5,30,0,0,0,1,9,1010,60.56,350.70000000000005,8.700000000000001,0.131 +2013,1,13,6,30,0,0,0,1,8,1010,62.33,355.5,8.3,0.131 +2013,1,13,7,30,0,0,0,0,8,1010,59.6,357.5,8.4,0.131 +2013,1,13,8,30,0,46,46,0,8,1010,56.44,356.8,8.6,0.131 +2013,1,13,9,30,40,156,172,0,9,1010,52.54,356.3,8.3,0.131 +2013,1,13,10,30,236,236,361,0,11,1010,47.04,357,8,0.131 +2013,1,13,11,30,119,292,366,0,13,1010,45.19,357.6,7.6000000000000005,0.131 +2013,1,13,12,30,149,316,414,0,14,1010,40.19,356,7.2,0.131 +2013,1,13,13,30,334,281,494,0,15,1010,37.75,356,6.7,0.131 +2013,1,13,14,30,211,258,376,0,16,1010,35.19,359,6.300000000000001,0.131 +2013,1,13,15,30,93,189,230,0,15,1010,37.04,0.1,5.9,0.131 +2013,1,13,16,30,392,87,194,0,14,1010,39.31,3.2,5,0.131 +2013,1,13,17,30,156,27,39,1,13,1010,48.660000000000004,7.2,4.3,0.131 +2013,1,13,18,30,0,0,0,2,11,1010,57.01,6.5,4.6000000000000005,0.131 +2013,1,13,19,30,0,0,0,3,10,1010,62.800000000000004,7.7,4.9,0.131 +2013,1,13,20,30,0,0,0,3,10,1010,64.21000000000001,15.100000000000001,4.9,0.131 +2013,1,13,21,30,0,0,0,3,9,1010,69.58,21.1,5,0.131 +2013,1,13,22,30,0,0,0,3,9,1010,68.03,26.400000000000002,5.1000000000000005,0.131 +2013,1,13,23,30,0,0,0,3,9,1010,67.17,29,5,0.131 +2013,1,14,0,30,0,0,0,3,8,1010,71.79,26.900000000000002,4.9,0.131 +2013,1,14,1,30,0,0,0,3,8,1010,71.97,22.400000000000002,4.9,0.131 +2013,1,14,2,30,0,0,0,3,8,1010,71.49,16.2,5,0.131 +2013,1,14,3,30,0,0,0,3,8,1010,70.72,11.700000000000001,5.1000000000000005,0.131 +2013,1,14,4,30,0,0,0,2,7,1010,74.25,11.8,5.300000000000001,0.131 +2013,1,14,5,30,0,0,0,2,7,1010,72.92,12.5,5.4,0.131 +2013,1,14,6,30,0,0,0,2,7,1020,71.16,11.200000000000001,5.6000000000000005,0.131 +2013,1,14,7,30,0,0,0,1,7,1020,68.91,8.8,5.9,0.131 +2013,1,14,8,30,0,21,21,1,7,1020,66.27,9.600000000000001,5.9,0.131 +2013,1,14,9,30,0,38,38,1,8,1020,61.78,10.700000000000001,5.5,0.131 +2013,1,14,10,30,0,58,58,1,10,1020,59.6,9.9,5,0.131 +2013,1,14,11,30,0,168,168,1,11,1010,53.76,8.3,4.4,0.131 +2013,1,14,12,30,10,221,227,2,12,1010,51.84,7.4,3.9000000000000004,0.131 +2013,1,14,13,30,2,186,188,2,13,1010,49.89,5.5,3.6,0.131 +2013,1,14,14,30,34,230,249,2,13,1010,53.72,5.800000000000001,3.5,0.131 +2013,1,14,15,30,0,96,96,2,12,1010,57.72,7.300000000000001,3.5,0.131 +2013,1,14,16,30,393,88,196,3,11,1010,58.5,12,3.3000000000000003,0.131 +2013,1,14,17,30,114,30,39,3,10,1010,64.59,15.4,3.1,0.131 +2013,1,14,18,30,0,0,0,4,9,1010,71.93,16.7,3.1,0.131 +2013,1,14,19,30,0,0,0,4,9,1010,73.08,18,3.3000000000000003,0.131 +2013,1,14,20,30,0,0,0,4,8,1010,79.64,17.400000000000002,3.4000000000000004,0.131 +2013,1,14,21,30,0,0,0,5,8,1010,81.37,15,3.3000000000000003,0.131 +2013,1,14,22,30,0,0,0,5,8,1010,83.21000000000001,14,3.3000000000000003,0.131 +2013,1,14,23,30,0,0,0,5,8,1010,85.09,13,3.2,0.131 +2013,1,15,0,30,0,0,0,5,8,1010,86.79,6.6000000000000005,3.1,0.131 +2013,1,15,1,30,0,0,0,6,8,1010,87.89,357.6,3.3000000000000003,0.131 +2013,1,15,2,30,0,0,0,6,8,1010,94.4,351.90000000000003,3.6,0.131 +2013,1,15,3,30,0,0,0,6,7,1010,94.07000000000001,352.8,3.9000000000000004,0.131 +2013,1,15,4,30,0,0,0,6,7,1010,93.71000000000001,356.70000000000005,4.1000000000000005,0.131 +2013,1,15,5,30,0,0,0,6,7,1010,93.38,359.40000000000003,4.3,0.131 +2013,1,15,6,30,0,0,0,5,7,1010,93.04,4.2,4.5,0.131 +2013,1,15,7,30,0,0,0,5,7,1010,92.68,6.300000000000001,4.800000000000001,0.131 +2013,1,15,8,30,0,10,10,5,7,1010,91.95,5.7,5.1000000000000005,0.131 +2013,1,15,9,30,0,10,10,5,8,1010,90.95,6.2,5.1000000000000005,0.131 +2013,1,15,10,30,0,27,27,5,8,1010,83.67,4.3,4.9,0.131 +2013,1,15,11,30,0,109,109,5,8,1010,81.76,356.5,4.9,0.131 +2013,1,15,12,30,0,114,114,4,8,1010,79.25,345.3,5.1000000000000005,0.131 +2013,1,15,13,30,6,204,208,4,8,1010,76.2,338.1,5.2,0.131 +2013,1,15,14,30,0,137,137,3,9,1010,73.10000000000001,335.90000000000003,5.2,0.131 +2013,1,15,15,30,0,121,121,2,9,1010,66.01,335.8,5.1000000000000005,0.131 +2013,1,15,16,30,57,109,125,2,9,1010,68.96000000000001,339,4.9,0.131 +2013,1,15,17,30,0,26,26,2,8,1010,69.17,342.5,4.7,0.131 +2013,1,15,18,30,0,0,0,2,7,1020,75.63,348.6,5.1000000000000005,0.131 +2013,1,15,19,30,0,0,0,3,6,1020,81.25,349.5,6,0.131 +2013,1,15,20,30,0,0,0,2,5,1020,85.23,352.90000000000003,6.6000000000000005,0.131 +2013,1,15,21,30,0,0,0,2,5,1020,88.68,354.70000000000005,6.4,0.131 +2013,1,15,22,30,0,0,0,1,4,1020,86.47,353.8,6.1000000000000005,0.131 +2013,1,15,23,30,0,0,0,1,4,1020,84.4,348,5.9,0.131 +2013,1,16,0,30,0,0,0,1,3,1020,88.09,341.70000000000005,5.800000000000001,0.131 +2013,1,16,1,30,0,0,0,0,3,1020,85.68,336.90000000000003,5.6000000000000005,0.131 +2013,1,16,2,30,0,0,0,0,2,1020,89.72,332.40000000000003,5.4,0.131 +2013,1,16,3,30,0,0,0,0,2,1020,88.2,327.5,5.1000000000000005,0.131 +2013,1,16,4,30,0,0,0,0,2,1020,87.24,324.3,4.9,0.131 +2013,1,16,5,30,0,0,0,0,2,1020,91.78,324.20000000000005,4.6000000000000005,0.131 +2013,1,16,6,30,0,0,0,0,1,1020,90.65,321.40000000000003,4.6000000000000005,0.131 +2013,1,16,7,30,0,0,0,0,2,1020,85.56,317.3,4.6000000000000005,0.131 +2013,1,16,8,30,671,49,195,0,5,1020,67.15,318.20000000000005,5.1000000000000005,0.131 +2013,1,16,9,30,859,66,404,-3,8,1020,44.38,330.6,5.7,0.131 +2013,1,16,10,30,944,75,578,-4,10,1020,36.08,328.1,6.1000000000000005,0.131 +2013,1,16,11,30,985,80,695,-4,11,1020,33.51,319.8,6.4,0.131 +2013,1,16,12,30,997,84,744,-4,12,1020,30.21,311.5,6.7,0.131 +2013,1,16,13,30,997,82,723,-6,13,1020,25.73,306.5,6.9,0.131 +2013,1,16,14,30,978,77,634,-7,13,1020,22.63,305.3,6.800000000000001,0.131 +2013,1,16,15,30,928,67,481,-9,13,1020,20.72,307.5,6.2,0.131 +2013,1,16,16,30,806,53,279,-8,11,1020,23.81,310.5,4.6000000000000005,0.131 +2013,1,16,17,30,466,26,65,-4,8,1020,39.550000000000004,314.40000000000003,3,0.131 +2013,1,16,18,30,0,0,0,-2,6,1020,54.29,320,2.4000000000000004,0.137 +2013,1,16,19,30,0,0,0,-2,6,1020,56.22,323.70000000000005,2.1,0.137 +2013,1,16,20,30,0,0,0,-2,6,1020,55.94,325.40000000000003,1.9000000000000001,0.137 +2013,1,16,21,30,0,0,0,-2,6,1020,55.24,321.90000000000003,1.8,0.137 +2013,1,16,22,30,0,0,0,-2,5,1020,60.11,312.3,1.8,0.137 +2013,1,16,23,30,0,0,0,-1,4,1020,66.61,302.90000000000003,1.9000000000000001,0.137 +2013,1,17,0,30,0,0,0,-1,4,1020,68.62,296.2,1.9000000000000001,0.137 +2013,1,17,1,30,0,0,0,0,3,1020,75.3,290.7,2,0.137 +2013,1,17,2,30,0,0,0,0,3,1020,76.78,287,2.2,0.137 +2013,1,17,3,30,0,0,0,0,3,1020,78.25,289.40000000000003,2.5,0.137 +2013,1,17,4,30,0,0,0,0,3,1020,80.33,292.90000000000003,2.7,0.137 +2013,1,17,5,30,0,0,0,0,2,1020,89.03,299.1,2.7,0.137 +2013,1,17,6,30,0,0,0,0,2,1020,91.48,308.6,2.8000000000000003,0.137 +2013,1,17,7,30,0,0,0,1,4,1020,88,317.40000000000003,3.2,0.137 +2013,1,17,8,30,684,45,193,1,6,1020,73.13,324.20000000000005,3.3000000000000003,0.137 +2013,1,17,9,30,853,60,397,1,10,1030,57.17,329.90000000000003,3.2,0.137 +2013,1,17,10,30,931,68,566,1,14,1030,41.58,345.40000000000003,3.4000000000000004,0.137 +2013,1,17,11,30,968,73,680,0,17,1020,32.99,355.5,3.5,0.137 +2013,1,17,12,30,972,80,726,0,18,1020,31.86,358.1,3.7,0.137 +2013,1,17,13,30,968,79,704,1,19,1020,32.4,4.1000000000000005,3.9000000000000004,0.137 +2013,1,17,14,30,942,74,613,1,19,1020,30.66,11.100000000000001,4,0.137 +2013,1,17,15,30,861,72,459,1,18,1020,32.910000000000004,16,3.7,0.137 +2013,1,17,16,30,733,57,265,2,16,1020,39.18,20.6,2.7,0.137 +2013,1,17,17,30,400,27,62,5,12,1020,64.92,29.400000000000002,2,0.137 +2013,1,17,18,30,0,0,0,5,11,1020,68.7,34.7,2,0.137 +2013,1,17,19,30,0,0,0,5,10,1020,73.84,37.7,1.9000000000000001,0.137 +2013,1,17,20,30,0,0,0,5,10,1030,79.07000000000001,41.400000000000006,1.9000000000000001,0.137 +2013,1,17,21,30,0,0,0,5,9,1030,79.05,41.6,1.9000000000000001,0.137 +2013,1,17,22,30,0,0,0,5,8,1030,84.44,40,1.9000000000000001,0.137 +2013,1,17,23,30,0,0,0,5,8,1030,90.31,39.300000000000004,2,0.137 +2013,1,18,0,30,0,0,0,5,7,1030,91.07000000000001,38.5,2.1,0.137 +2013,1,18,1,30,0,0,0,5,6,1030,98.58,36.7,2.1,0.137 +2013,1,18,2,30,0,0,0,5,6,1030,99.5,33.800000000000004,2.2,0.137 +2013,1,18,3,30,0,0,0,4,5,1020,100,32.2,2.2,0.137 +2013,1,18,4,30,0,0,0,4,5,1020,100,31.5,2.3000000000000003,0.137 +2013,1,18,5,30,0,0,0,4,4,1030,100,31.1,2.4000000000000004,0.137 +2013,1,18,6,30,0,0,0,4,4,1030,100,31.1,2.4000000000000004,0.137 +2013,1,18,7,30,0,0,0,6,6,1030,100,31.5,2.9000000000000004,0.137 +2013,1,18,8,30,352,70,147,6,9,1030,83.37,32,3.1,0.137 +2013,1,18,9,30,843,66,400,6,13,1030,63.46,45.300000000000004,2.8000000000000003,0.137 +2013,1,18,10,30,925,74,570,5,16,1030,48.19,66.2,2.3000000000000003,0.137 +2013,1,18,11,30,964,79,685,3,17,1030,41.97,73.5,1.9000000000000001,0.137 +2013,1,18,12,30,965,87,730,3,18,1020,38.24,82.10000000000001,1.7000000000000002,0.137 +2013,1,18,13,30,956,86,706,3,19,1020,37.83,92.9,1.8,0.137 +2013,1,18,14,30,923,82,614,3,18,1020,38.21,100.2,2.1,0.137 +2013,1,18,15,30,844,78,459,3,17,1020,41.82,102.9,2.4000000000000004,0.137 +2013,1,18,16,30,705,62,264,4,15,1020,50.050000000000004,102.60000000000001,2.2,0.137 +2013,1,18,17,30,359,30,63,7,13,1020,75.65,101,1.9000000000000001,0.137 +2013,1,18,18,30,0,0,0,8,11,1020,83.52,101.2,2,0.137 +2013,1,18,19,30,0,0,0,8,11,1020,91.89,103.5,2.1,0.137 +2013,1,18,20,30,0,0,0,9,10,1020,93.7,106.60000000000001,2,0.137 +2013,1,18,21,30,0,0,0,9,10,1020,95.74000000000001,109.30000000000001,1.9000000000000001,0.137 +2013,1,18,22,30,0,0,0,9,9,1020,100,114.30000000000001,1.8,0.137 +2013,1,18,23,30,0,0,0,9,9,1020,100,120.60000000000001,1.7000000000000002,0.137 +2013,1,19,0,30,0,0,0,9,9,1020,100,124.2,1.6,0.137 +2013,1,19,1,30,0,0,0,9,10,1020,100,120.80000000000001,1.5,0.137 +2013,1,19,2,30,0,0,0,9,10,1020,100,112.80000000000001,1.4000000000000001,0.137 +2013,1,19,3,30,0,0,0,9,10,1020,100,109.4,1.4000000000000001,0.137 +2013,1,19,4,30,0,0,0,9,9,1020,100,109.9,1.4000000000000001,0.137 +2013,1,19,5,30,0,0,0,9,9,1020,100,109.7,1.5,0.137 +2013,1,19,6,30,0,0,0,9,9,1020,100,106.80000000000001,1.6,0.137 +2013,1,19,7,30,0,0,0,11,11,1020,100,104,1.7000000000000002,0.137 +2013,1,19,8,30,605,54,187,11,15,1020,85.85000000000001,110.60000000000001,2.3000000000000003,0.137 +2013,1,19,9,30,786,74,387,10,18,1020,67.34,136.8,2.8000000000000003,0.137 +2013,1,19,10,30,871,86,554,10,19,1020,56.38,155.9,2.8000000000000003,0.137 +2013,1,19,11,30,913,92,668,9,20,1020,50.75,165.4,2.7,0.137 +2013,1,19,12,30,939,89,718,9,21,1020,46.56,169.5,2.5,0.137 +2013,1,19,13,30,934,87,696,8,21,1020,45.57,167.70000000000002,2.3000000000000003,0.137 +2013,1,19,14,30,905,82,606,8,21,1020,44.5,159.60000000000002,2.2,0.137 +2013,1,19,15,30,814,82,452,8,20,1020,46.72,147.3,2.2,0.137 +2013,1,19,16,30,674,65,260,8,18,1020,54.050000000000004,137.6,2,0.137 +2013,1,19,17,30,337,31,63,10,15,1020,75.57000000000001,123.80000000000001,2.3000000000000003,0.137 +2013,1,19,18,30,0,0,0,10,14,1020,79.75,117.4,2.9000000000000004,0.137 +2013,1,19,19,30,0,0,0,11,13,1020,88.09,117.7,3,0.137 +2013,1,19,20,30,0,0,0,11,13,1020,90.45,124.80000000000001,2.8000000000000003,0.137 +2013,1,19,21,30,0,0,0,11,12,1020,98.31,134.70000000000002,2.5,0.137 +2013,1,19,22,30,0,0,0,11,12,1020,100,144.70000000000002,2.2,0.137 +2013,1,19,23,30,0,0,0,11,11,1020,100,151.8,1.9000000000000001,0.137 +2013,1,20,0,30,0,0,0,11,11,1020,100,155.9,1.7000000000000002,0.137 +2013,1,20,1,30,0,0,0,11,11,1020,100,159.60000000000002,1.4000000000000001,0.137 +2013,1,20,2,30,0,0,0,11,12,1020,100,159.70000000000002,0.9,0.137 +2013,1,20,3,30,0,0,0,11,12,1020,100,137,0.7000000000000001,0.137 +2013,1,20,4,30,0,0,0,11,11,1020,100,97.30000000000001,0.7000000000000001,0.137 +2013,1,20,5,30,0,0,0,11,11,1020,100,83.30000000000001,0.9,0.137 +2013,1,20,6,30,0,0,0,11,11,1020,100,83.9,1.1,0.137 +2013,1,20,7,30,0,0,0,11,12,1020,100,87.2,1.4000000000000001,0.137 +2013,1,20,8,30,584,57,186,12,15,1020,87.24,94.10000000000001,1.9000000000000001,0.137 +2013,1,20,9,30,283,165,278,12,18,1020,70.44,118.4,2,0.137 +2013,1,20,10,30,474,194,451,12,20,1020,65.88,136.8,1.8,0.137 +2013,1,20,11,30,468,246,542,12,21,1020,60.480000000000004,141.6,1.6,0.137 +2013,1,20,12,30,614,208,621,11,21,1020,55.050000000000004,138.70000000000002,1.6,0.137 +2013,1,20,13,30,614,201,603,11,22,1010,50.61,130.1,1.7000000000000002,0.137 +2013,1,20,14,30,874,93,602,11,22,1010,53.2,121,2,0.137 +2013,1,20,15,30,781,91,449,11,21,1010,56.59,116.7,2.3000000000000003,0.137 +2013,1,20,16,30,498,82,228,11,19,1010,64.97,115.7,2.3000000000000003,0.137 +2013,1,20,17,30,296,34,63,12,17,1010,80.22,110.7,2.6,0.137 +2013,1,20,18,30,0,0,0,12,15,1010,85.31,107.9,3.1,0.137 +2013,1,20,19,30,0,0,0,12,14,1010,93.22,113.10000000000001,3,0.137 +2013,1,20,20,30,0,0,0,13,14,1020,95.53,120.2,2.7,0.137 +2013,1,20,21,30,0,0,0,13,13,1020,100,127.9,2.5,0.137 +2013,1,20,22,30,0,0,0,13,13,1020,100,138,2.3000000000000003,0.137 +2013,1,20,23,30,0,0,0,13,13,1020,100,144.8,2,0.137 +2013,1,21,0,30,0,0,0,11,13,1010,100,142.9,1.8,0.137 +2013,1,21,1,30,0,0,0,11,12,1010,100,140.6,1.7000000000000002,0.137 +2013,1,21,2,30,0,0,0,11,12,1010,100,139.5,1.5,0.137 +2013,1,21,3,30,0,0,0,11,12,1010,100,137,1.4000000000000001,0.137 +2013,1,21,4,30,0,0,0,11,12,1010,100,126.7,1.3,0.137 +2013,1,21,5,30,0,0,0,11,12,1010,100,111.80000000000001,1.3,0.137 +2013,1,21,6,30,0,0,0,11,12,1020,100,98.30000000000001,1.4000000000000001,0.137 +2013,1,21,7,30,0,0,0,13,13,1020,100,87.5,1.9000000000000001,0.137 +2013,1,21,8,30,125,86,113,14,16,1020,90.2,79,2.5,0.137 +2013,1,21,9,30,342,152,290,14,18,1020,78,81.30000000000001,2.6,0.137 +2013,1,21,10,30,408,212,433,13,19,1020,71.95,85,2.4000000000000004,0.137 +2013,1,21,11,30,424,258,528,13,20,1020,65.08,82,2.4000000000000004,0.137 +2013,1,21,12,30,326,306,527,12,21,1020,58.69,79.30000000000001,2.6,0.137 +2013,1,21,13,30,484,249,568,12,22,1020,56.550000000000004,81.60000000000001,2.8000000000000003,0.137 +2013,1,21,14,30,557,188,514,11,21,1020,54.97,83,3,0.137 +2013,1,21,15,30,759,84,434,11,20,1020,57,83,3.3000000000000003,0.137 +2013,1,21,16,30,264,111,190,11,18,1020,63.71,83.10000000000001,3.2,0.137 +2013,1,21,17,30,341,33,67,11,16,1020,76.84,82.7,2.7,0.137 +2013,1,21,18,30,0,0,0,12,14,1020,90.3,82.60000000000001,2.6,0.137 +2013,1,21,19,30,0,0,0,12,13,1020,98.14,82.7,2.7,0.137 +2013,1,21,20,30,0,0,0,12,13,1020,99.57000000000001,85.10000000000001,2.6,0.137 +2013,1,21,21,30,0,0,0,11,12,1020,100,89.80000000000001,2.4000000000000004,0.137 +2013,1,21,22,30,0,0,0,11,12,1020,100,95.5,2.3000000000000003,0.137 +2013,1,21,23,30,0,0,0,11,12,1020,100,101.4,2.1,0.137 +2013,1,22,0,30,0,0,0,11,12,1020,100,106.60000000000001,2,0.137 +2013,1,22,1,30,0,0,0,11,12,1020,100,109,1.9000000000000001,0.137 +2013,1,22,2,30,0,0,0,11,12,1020,100,106.10000000000001,1.7000000000000002,0.137 +2013,1,22,3,30,0,0,0,11,12,1020,100,98.5,1.7000000000000002,0.137 +2013,1,22,4,30,0,0,0,11,12,1020,100,89.80000000000001,1.8,0.137 +2013,1,22,5,30,0,0,0,11,11,1020,100,84,1.8,0.137 +2013,1,22,6,30,0,0,0,11,11,1020,100,80.5,1.9000000000000001,0.137 +2013,1,22,7,30,0,11,11,13,13,1020,100,78.10000000000001,2.4000000000000004,0.137 +2013,1,22,8,30,508,66,180,14,16,1020,88.92,76.7,3.1,0.137 +2013,1,22,9,30,697,94,376,13,19,1020,76.3,90.60000000000001,3.1,0.137 +2013,1,22,10,30,559,170,475,13,20,1020,64.68,97,3,0.137 +2013,1,22,11,30,584,202,575,12,21,1020,57.32,100.4,3,0.137 +2013,1,22,12,30,448,275,579,11,21,1020,54.730000000000004,101.4,3,0.137 +2013,1,22,13,30,305,302,504,11,21,1020,53.300000000000004,102.30000000000001,3,0.137 +2013,1,22,14,30,461,229,500,10,20,1020,55.92,103.4,3,0.137 +2013,1,22,15,30,318,189,337,10,19,1020,59.42,103.2,3,0.137 +2013,1,22,16,30,568,74,244,11,18,1020,64.81,101.60000000000001,2.6,0.137 +2013,1,22,17,30,181,39,58,12,16,1020,80.38,98.10000000000001,2.2,0.137 +2013,1,22,18,30,0,0,0,13,15,1020,88.53,96.60000000000001,2.3000000000000003,0.137 +2013,1,22,19,30,0,0,0,13,14,1020,96.61,96.80000000000001,2.3000000000000003,0.137 +2013,1,22,20,30,0,0,0,13,14,1020,98.82000000000001,99.5,2.2,0.137 +2013,1,22,21,30,0,0,0,14,14,1020,100,102.7,2,0.137 +2013,1,22,22,30,0,0,0,14,14,1020,100,104.5,1.8,0.137 +2013,1,22,23,30,0,0,0,13,14,1020,100,105.80000000000001,1.7000000000000002,0.137 +2013,1,23,0,30,0,0,0,13,13,1020,100,107.4,1.6,0.137 +2013,1,23,1,30,0,0,0,13,13,1020,100,108.9,1.6,0.137 +2013,1,23,2,30,0,0,0,13,13,1020,100,112.2,1.6,0.137 +2013,1,23,3,30,0,0,0,13,13,1020,100,116.10000000000001,1.6,0.137 +2013,1,23,4,30,0,0,0,13,13,1020,100,118.60000000000001,1.7000000000000002,0.137 +2013,1,23,5,30,0,0,0,13,13,1020,100,119.60000000000001,1.7000000000000002,0.137 +2013,1,23,6,30,0,0,0,13,13,1020,100,118.9,1.6,0.137 +2013,1,23,7,30,46,10,11,15,15,1020,100,119.7,1.9000000000000001,0.137 +2013,1,23,8,30,485,67,176,16,18,1020,90.49,126.7,2.4000000000000004,0.137 +2013,1,23,9,30,686,93,371,16,21,1020,76.5,151.3,2.6,0.137 +2013,1,23,10,30,786,105,536,16,22,1020,70.24,161.60000000000002,2.7,0.137 +2013,1,23,11,30,210,305,440,15,23,1020,64.5,159.9,2.7,0.137 +2013,1,23,12,30,5,200,203,15,24,1020,60.120000000000005,157.70000000000002,2.9000000000000004,0.137 +2013,1,23,13,30,146,321,419,15,24,1020,59.870000000000005,157.70000000000002,3.1,0.137 +2013,1,23,14,30,754,134,580,15,24,1020,59.65,157.4,3.4000000000000004,0.137 +2013,1,23,15,30,676,119,435,15,23,1020,63.24,155.3,3.6,0.137 +2013,1,23,16,30,538,90,252,15,22,1020,67.74,149.8,3.4000000000000004,0.137 +2013,1,23,17,30,242,39,65,16,20,1020,80.16,139.4,3.3000000000000003,0.137 +2013,1,23,18,30,0,0,0,16,18,1020,93.59,133.70000000000002,3.7,0.137 +2013,1,23,19,30,0,0,0,17,18,1020,96.39,136.8,4,0.137 +2013,1,23,20,30,0,0,0,17,17,1020,100,144.5,4,0.137 +2013,1,23,21,30,0,0,0,17,17,1020,100,153.3,3.7,0.137 +2013,1,23,22,30,0,0,0,16,16,1020,100,160.3,3.2,0.137 +2013,1,23,23,30,0,0,0,16,16,1020,100,166.70000000000002,2.9000000000000004,0.137 +2013,1,24,0,30,0,0,0,15,15,1020,100,172.3,2.7,0.137 +2013,1,24,1,30,0,0,0,15,15,1020,100,177.4,2.5,0.137 +2013,1,24,2,30,0,0,0,14,14,1020,100,182.3,2.2,0.137 +2013,1,24,3,30,0,0,0,14,14,1020,100,184.5,2,0.137 +2013,1,24,4,30,0,0,0,14,14,1020,100,182.3,1.9000000000000001,0.137 +2013,1,24,5,30,0,0,0,14,14,1020,100,176.8,1.9000000000000001,0.137 +2013,1,24,6,30,0,0,0,14,14,1020,100,171.5,2,0.137 +2013,1,24,7,30,78,11,13,16,16,1020,100,167.9,2.7,0.137 +2013,1,24,8,30,566,59,187,17,19,1020,90.41,166.60000000000002,3.8000000000000003,0.137 +2013,1,24,9,30,753,81,388,17,22,1020,75.95,178.20000000000002,4.2,0.137 +2013,1,24,10,30,845,92,557,17,23,1020,68.99,182.70000000000002,3.9000000000000004,0.137 +2013,1,24,11,30,894,98,673,16,24,1020,61.77,181.10000000000002,3.6,0.137 +2013,1,24,12,30,908,102,723,15,25,1020,54.93,173.5,3.6,0.137 +2013,1,24,13,30,910,98,706,14,26,1020,48.99,163.9,3.8000000000000003,0.137 +2013,1,24,14,30,887,91,619,13,25,1020,49.69,157.4,4.2,0.137 +2013,1,24,15,30,818,84,470,13,24,1010,51.81,153.60000000000002,4.5,0.137 +2013,1,24,16,30,690,67,278,13,22,1010,60.18,149.70000000000002,4.4,0.137 +2013,1,24,17,30,376,35,76,15,20,1020,75.14,143.5,4.4,0.137 +2013,1,24,18,30,0,0,0,16,18,1020,92.83,142,4.5,0.145 +2013,1,24,19,30,0,0,0,17,18,1020,98.36,145.9,4.4,0.145 +2013,1,24,20,30,0,0,0,17,18,1020,100,152.8,4.1000000000000005,0.145 +2013,1,24,21,30,0,0,0,17,17,1020,100,159.8,3.7,0.145 +2013,1,24,22,30,0,0,0,17,17,1020,100,165.10000000000002,3.5,0.145 +2013,1,24,23,30,0,0,0,16,16,1020,100,169.3,3.5,0.145 +2013,1,25,0,30,0,0,0,16,16,1020,100,171.20000000000002,3.5,0.145 +2013,1,25,1,30,0,0,0,16,16,1020,100,172.4,3.6,0.145 +2013,1,25,2,30,0,0,0,15,16,1010,100,173.60000000000002,3.6,0.145 +2013,1,25,3,30,0,0,0,15,15,1010,100,174.5,3.5,0.145 +2013,1,25,4,30,0,0,0,15,15,1010,100,174.60000000000002,3.5,0.145 +2013,1,25,5,30,0,0,0,15,15,1010,100,174,3.4000000000000004,0.145 +2013,1,25,6,30,0,0,0,15,15,1010,100,173.3,3.4000000000000004,0.145 +2013,1,25,7,30,121,12,15,16,16,1010,100,172.10000000000002,4.1000000000000005,0.145 +2013,1,25,8,30,625,55,198,17,19,1020,89.81,172.4,5.2,0.145 +2013,1,25,9,30,800,76,403,17,22,1020,74.66,178.60000000000002,5.6000000000000005,0.145 +2013,1,25,10,30,883,86,573,16,23,1020,67.1,178.9,5.300000000000001,0.145 +2013,1,25,11,30,920,93,688,15,25,1010,56.1,175.9,5,0.145 +2013,1,25,12,30,921,100,733,14,26,1010,50.13,171,4.800000000000001,0.145 +2013,1,25,13,30,908,101,710,14,26,1010,48.4,165.3,4.800000000000001,0.145 +2013,1,25,14,30,868,98,618,14,26,1010,47.81,159.60000000000002,4.800000000000001,0.145 +2013,1,25,15,30,792,90,467,14,25,1010,51.32,155.4,4.800000000000001,0.145 +2013,1,25,16,30,646,74,274,14,23,1010,60.28,151.6,4.7,0.145 +2013,1,25,17,30,314,39,74,16,21,1010,74.72,145.1,4.6000000000000005,0.145 +2013,1,25,18,30,0,0,0,17,19,1010,90.92,143.6,4.7,0.145 +2013,1,25,19,30,0,0,0,18,19,1010,94.55,147.4,4.6000000000000005,0.145 +2013,1,25,20,30,0,0,0,18,18,1010,100,151,4.5,0.145 +2013,1,25,21,30,0,0,0,18,18,1010,100,155.20000000000002,4.3,0.145 +2013,1,25,22,30,0,0,0,18,18,1010,100,158,4,0.145 +2013,1,25,23,30,0,0,0,18,18,1010,100,160.70000000000002,3.6,0.145 +2013,1,26,0,30,0,0,0,17,17,1010,100,162.60000000000002,3.4000000000000004,0.145 +2013,1,26,1,30,0,0,0,17,17,1010,100,163.10000000000002,3.1,0.145 +2013,1,26,2,30,0,0,0,16,16,1010,100,162.60000000000002,2.9000000000000004,0.145 +2013,1,26,3,30,0,0,0,16,16,1010,100,160.4,2.8000000000000003,0.145 +2013,1,26,4,30,0,0,0,16,16,1010,100,156.4,2.8000000000000003,0.145 +2013,1,26,5,30,0,0,0,16,16,1010,100,152.4,2.9000000000000004,0.145 +2013,1,26,6,30,0,0,0,16,16,1010,100,150.5,3.1,0.145 +2013,1,26,7,30,70,12,14,17,18,1010,100,149.8,3.8000000000000003,0.145 +2013,1,26,8,30,549,60,187,17,20,1010,86.92,150.3,4.9,0.145 +2013,1,26,9,30,317,161,291,16,22,1010,72.08,160.70000000000002,5.5,0.145 +2013,1,26,10,30,830,95,555,15,23,1010,63.13,164,5.5,0.145 +2013,1,26,11,30,875,102,671,14,24,1010,55.980000000000004,162.20000000000002,5.300000000000001,0.145 +2013,1,26,12,30,902,101,724,13,25,1010,50.39,157.8,5.1000000000000005,0.145 +2013,1,26,13,30,898,100,705,13,25,1010,48.83,152.4,5.1000000000000005,0.145 +2013,1,26,14,30,872,94,619,13,25,1010,51.34,147.1,5.2,0.145 +2013,1,26,15,30,805,87,472,13,24,1010,54.620000000000005,142.6,5.2,0.145 +2013,1,26,16,30,679,70,282,13,22,1010,59.19,137.8,4.9,0.145 +2013,1,26,17,30,368,37,80,14,20,1010,72.49,130.20000000000002,4.7,0.145 +2013,1,26,18,30,0,0,0,16,19,1010,84.02,125.5,4.6000000000000005,0.145 +2013,1,26,19,30,0,0,0,17,18,1010,94.89,124,4.4,0.145 +2013,1,26,20,30,0,0,0,17,18,1010,97.87,126.10000000000001,4.1000000000000005,0.145 +2013,1,26,21,30,0,0,0,17,18,1010,99.3,129.4,3.9000000000000004,0.145 +2013,1,26,22,30,0,0,0,17,18,1010,99.87,135.1,3.8000000000000003,0.145 +2013,1,26,23,30,0,0,0,18,18,1010,100,138.1,3.5,0.145 +2013,1,27,0,30,0,0,0,18,18,1010,100,135.6,3.5,0.145 +2013,1,27,1,30,0,0,0,18,18,1010,100,138.9,3.8000000000000003,0.145 +2013,1,27,2,30,0,0,0,18,18,1010,100,143,4,0.145 +2013,1,27,3,30,0,0,0,18,18,1010,100,144.1,3.9000000000000004,0.145 +2013,1,27,4,30,0,0,0,18,18,1010,100,145,3.9000000000000004,0.145 +2013,1,27,5,30,0,0,0,18,18,1010,100,146.20000000000002,3.9000000000000004,0.145 +2013,1,27,6,30,0,0,0,18,18,1010,100,146.6,3.8000000000000003,0.145 +2013,1,27,7,30,0,4,4,19,19,1010,100,144.9,4.1000000000000005,0.145 +2013,1,27,8,30,0,57,57,19,21,1010,90.69,146.5,5,0.145 +2013,1,27,9,30,224,174,267,19,22,1010,85.28,153.1,5.9,0.145 +2013,1,27,10,30,128,257,329,19,23,1010,78.86,159.9,6.4,0.145 +2013,1,27,11,30,144,314,408,18,24,1010,77.93,160.5,6.4,0.145 +2013,1,27,12,30,17,252,264,18,24,1010,73.4,158,6.5,0.145 +2013,1,27,13,30,337,305,534,18,24,1010,73.36,155.8,6.7,0.145 +2013,1,27,14,30,197,285,404,18,24,1010,73.47,153,6.800000000000001,0.145 +2013,1,27,15,30,122,215,274,19,23,1010,78.67,149.4,6.6000000000000005,0.145 +2013,1,27,16,30,23,119,126,19,22,1010,85.17,144,6.2,0.145 +2013,1,27,17,30,0,27,27,19,21,1010,98.61,138.1,5.800000000000001,0.145 +2013,1,27,18,30,0,0,0,19,20,1010,99.98,136.9,5.6000000000000005,0.145 +2013,1,27,19,30,0,0,0,20,20,1010,100,137.4,5.5,0.145 +2013,1,27,20,30,0,0,0,20,20,1010,100,141,5.6000000000000005,0.145 +2013,1,27,21,30,0,0,0,19,20,1010,99.59,145.5,5.6000000000000005,0.145 +2013,1,27,22,30,0,0,0,19,20,1010,98.81,149.70000000000002,5.2,0.145 +2013,1,27,23,30,0,0,0,19,20,1010,100,151.1,4.7,0.145 +2013,1,28,0,30,0,0,0,19,19,1010,100,150.1,4.6000000000000005,0.145 +2013,1,28,1,30,0,0,0,19,19,1010,100,150.5,4.7,0.145 +2013,1,28,2,30,0,0,0,19,19,1010,100,150.6,4.9,0.145 +2013,1,28,3,30,0,0,0,19,19,1010,100,149.6,5,0.145 +2013,1,28,4,30,0,0,0,19,19,1010,100,148.8,5.4,0.145 +2013,1,28,5,30,0,0,0,19,20,1010,99.66,151.4,5.7,0.145 +2013,1,28,6,30,0,0,0,20,20,1010,100,154,5.300000000000001,0.145 +2013,1,28,7,30,19,11,12,19,20,1010,99.8,153.4,5.2,0.145 +2013,1,28,8,30,423,78,177,19,22,1010,87.97,154.60000000000002,6.1000000000000005,0.145 +2013,1,28,9,30,0,91,91,19,24,1010,75.8,157.70000000000002,7,0.145 +2013,1,28,10,30,150,261,346,19,25,1010,69.4,160.9,7.300000000000001,0.145 +2013,1,28,11,30,0,110,110,18,26,1010,64.52,161.4,7.300000000000001,0.145 +2013,1,28,12,30,17,253,265,18,26,1010,64.01,161.10000000000002,7.2,0.145 +2013,1,28,13,30,78,317,371,18,27,1010,60.22,160.60000000000002,7.1000000000000005,0.145 +2013,1,28,14,30,695,161,584,18,26,1010,63.980000000000004,159.20000000000002,7,0.145 +2013,1,28,15,30,661,127,448,18,25,1010,68.68,156.4,7,0.145 +2013,1,28,16,30,492,104,261,19,24,1010,74.51,151.8,6.9,0.145 +2013,1,28,17,30,169,50,71,19,22,1010,86.55,147,6.5,0.145 +2013,1,28,18,30,0,0,0,20,21,1010,94.97,145.20000000000002,6.1000000000000005,0.145 +2013,1,28,19,30,0,0,0,20,21,1010,96.86,146.1,6,0.145 +2013,1,28,20,30,0,0,0,20,21,1010,97.86,148.70000000000002,6.300000000000001,0.145 +2013,1,28,21,30,0,0,0,20,21,1010,98.49000000000001,154.5,6.4,0.145 +2013,1,28,22,30,0,0,0,20,21,1010,98.71000000000001,159.3,6.1000000000000005,0.145 +2013,1,28,23,30,0,0,0,20,21,1010,98.62,162.4,6,0.145 +2013,1,29,0,30,0,0,0,20,21,1010,100,164.5,5.9,0.145 +2013,1,29,1,30,0,0,0,20,21,1010,100,163.9,5.9,0.145 +2013,1,29,2,30,0,0,0,20,21,1000,100,161.70000000000002,6.1000000000000005,0.145 +2013,1,29,3,30,0,0,0,20,21,1000,100,162.3,6.5,0.145 +2013,1,29,4,30,0,0,0,20,21,1000,99.43,164.5,6.9,0.145 +2013,1,29,5,30,0,0,0,20,21,1000,99.65,168.10000000000002,7.300000000000001,0.145 +2013,1,29,6,30,0,0,0,20,21,1000,99.39,170.10000000000002,7.7,0.145 +2013,1,29,7,30,20,11,11,20,21,1000,98.91,171.70000000000002,8.1,0.145 +2013,1,29,8,30,78,92,110,20,23,1000,87.24,175.4,8.8,0.145 +2013,1,29,9,30,505,140,352,20,25,1000,75.77,179.9,9.4,0.145 +2013,1,29,10,30,353,236,434,19,27,1000,64.88,184,9.5,0.145 +2013,1,29,11,30,348,292,521,18,28,1000,57.84,187.3,9.1,0.145 +2013,1,29,12,30,552,244,631,17,29,1000,51.1,189.70000000000002,8.3,0.145 +2013,1,29,13,30,489,261,596,16,30,1000,45.29,192.8,7.5,0.145 +2013,1,29,14,30,294,277,457,15,31,1000,39.81,197.9,6.800000000000001,0.145 +2013,1,29,15,30,220,216,324,14,30,1000,39.02,200,5.9,0.145 +2013,1,29,16,30,0,101,101,14,28,1000,43.67,191.4,5.1000000000000005,0.145 +2013,1,29,17,30,7,42,43,15,25,1000,55.82,186.5,4.9,0.145 +2013,1,29,18,30,0,0,0,16,23,1000,65.76,186.3,4.6000000000000005,0.145 +2013,1,29,19,30,0,0,0,16,21,1000,77.72,188.10000000000002,3.2,0.145 +2013,1,29,20,30,0,0,0,17,19,1000,88.37,210,1.9000000000000001,0.145 +2013,1,29,21,30,0,0,0,15,18,1000,84.48,276.2,2.5,0.145 +2013,1,29,22,30,0,0,0,10,17,1000,66.07000000000001,323.6,5,0.145 +2013,1,29,23,30,0,0,0,4,16,1000,45.63,344.8,6.7,0.145 +2013,1,30,0,30,0,0,0,3,15,1000,45.79,349.90000000000003,6.4,0.145 +2013,1,30,1,30,0,0,0,3,14,1010,47.77,351.8,5.9,0.145 +2013,1,30,2,30,0,0,0,2,13,1010,47.72,351.90000000000003,5.6000000000000005,0.145 +2013,1,30,3,30,0,0,0,1,12,1010,48.47,350.20000000000005,5.5,0.145 +2013,1,30,4,30,0,0,0,0,12,1010,45.64,342.40000000000003,5.6000000000000005,0.145 +2013,1,30,5,30,0,0,0,0,12,1010,43.52,335,5.800000000000001,0.145 +2013,1,30,6,30,0,0,0,0,12,1010,40.77,329.8,6.800000000000001,0.145 +2013,1,30,7,30,222,14,21,-2,13,1010,33.94,329.70000000000005,8,0.145 +2013,1,30,8,30,727,49,222,-3,15,1010,27.35,328.90000000000003,9.1,0.145 +2013,1,30,9,30,891,64,439,-5,16,1010,23.18,326.90000000000003,9.8,0.145 +2013,1,30,10,30,970,72,620,-4,17,1020,21.94,324.70000000000005,10,0.145 +2013,1,30,11,30,1014,75,746,-5,18,1010,20.22,322.6,9.700000000000001,0.145 +2013,1,30,12,30,1024,81,802,-5,19,1010,19.69,322.8,9,0.145 +2013,1,30,13,30,1025,78,783,-5,19,1010,18.09,324.1,8.700000000000001,0.145 +2013,1,30,14,30,1002,74,691,-6,19,1010,17.41,323.20000000000005,8.6,0.145 +2013,1,30,15,30,955,65,535,-6,18,1010,17.94,327.70000000000005,8.1,0.145 +2013,1,30,16,30,852,53,331,-6,17,1010,18.92,331.3,7,0.145 +2013,1,30,17,30,589,32,107,-5,14,1010,24.63,337.40000000000003,5.1000000000000005,0.145 +2013,1,30,18,30,0,0,0,-2,12,1020,35.74,346.90000000000003,3.7,0.145 +2013,1,30,19,30,0,0,0,0,11,1020,47.09,357.5,3,0.145 +2013,1,30,20,30,0,0,0,0,10,1020,51.33,8.700000000000001,2.7,0.145 +2013,1,30,21,30,0,0,0,1,9,1020,58.050000000000004,21,2.6,0.145 +2013,1,30,22,30,0,0,0,1,9,1020,59.92,28.200000000000003,2.5,0.145 +2013,1,30,23,30,0,0,0,1,8,1020,64.73,32.800000000000004,2.4000000000000004,0.145 +2013,1,31,0,30,0,0,0,1,8,1020,64.27,37,2.5,0.145 +2013,1,31,1,30,0,0,0,1,8,1020,63.34,43.2,2.5,0.145 +2013,1,31,2,30,0,0,0,1,8,1020,63.190000000000005,50.300000000000004,2.2,0.145 +2013,1,31,3,30,0,0,0,1,8,1020,62.74,60.800000000000004,1.8,0.145 +2013,1,31,4,30,0,0,0,1,9,1020,57.68,75.10000000000001,1.5,0.145 +2013,1,31,5,30,0,0,0,0,9,1020,56.550000000000004,91.60000000000001,1.1,0.145 +2013,1,31,6,30,0,0,0,0,9,1020,53.42,132.9,0.9,0.145 +2013,1,31,7,30,239,14,22,1,10,1020,54.63,176.3,1.4000000000000001,0.145 +2013,1,31,8,30,145,94,129,1,12,1020,47.410000000000004,191.20000000000002,2,0.145 +2013,1,31,9,30,381,157,319,-1,15,1020,33.12,186.4,2,0.145 +2013,1,31,10,30,948,76,615,-2,18,1020,24.03,190.70000000000002,1.8,0.145 +2013,1,31,11,30,629,197,616,-3,19,1020,21.85,176.70000000000002,1.7000000000000002,0.145 +2013,1,31,12,30,460,283,608,-3,20,1020,20.54,169.9,1.7000000000000002,0.145 +2013,1,31,13,30,722,175,674,-3,21,1020,19.7,158.3,1.9000000000000001,0.145 +2013,1,31,14,30,694,155,585,-2,21,1020,21.93,153,2.3000000000000003,0.145 +2013,1,31,15,30,520,162,419,-1,20,1020,23.490000000000002,140.6,2.7,0.145 +2013,1,31,16,30,750,67,314,0,18,1020,28.34,134.1,2.7,0.145 +2013,1,31,17,30,199,47,73,4,15,1020,52.09,125.60000000000001,2.9000000000000004,0.145 +2013,1,31,18,30,0,0,0,5,13,1020,60.14,124.80000000000001,3.4000000000000004,0.145 +2013,1,31,19,30,0,0,0,6,13,1020,68.99,130.1,3.4000000000000004,0.145 +2013,1,31,20,30,0,0,0,7,12,1020,74.03,136.1,3,0.145 +2013,1,31,21,30,0,0,0,8,12,1020,78.09,139.1,2.8000000000000003,0.145 +2013,1,31,22,30,0,0,0,8,12,1020,81.12,141,2.6,0.145 +2013,1,31,23,30,0,0,0,9,11,1020,89.60000000000001,144.5,2.3000000000000003,0.145 +2013,2,1,0,30,0,0,0,9,11,1020,92.06,148.20000000000002,2,0.145 +2013,2,1,1,30,0,0,0,10,11,1020,94.46000000000001,145.9,1.9000000000000001,0.145 +2013,2,1,2,30,0,0,0,10,11,1020,96.78,139.3,1.9000000000000001,0.145 +2013,2,1,3,30,0,0,0,10,11,1020,98.67,135.5,1.8,0.145 +2013,2,1,4,30,0,0,0,11,11,1020,100,135.20000000000002,1.7000000000000002,0.145 +2013,2,1,5,30,0,0,0,11,12,1020,95.29,130.8,1.7000000000000002,0.145 +2013,2,1,6,30,0,0,0,11,12,1020,96.73,123.80000000000001,1.7000000000000002,0.145 +2013,2,1,7,30,0,21,21,11,14,1020,86.37,122.9,2.1,0.145 +2013,2,1,8,30,638,57,212,11,17,1020,72.4,121.60000000000001,2.9000000000000004,0.145 +2013,2,1,9,30,813,75,422,9,19,1020,54.730000000000004,125.7,3.3000000000000003,0.145 +2013,2,1,10,30,894,87,598,7,20,1020,44.95,122.80000000000001,3.6,0.145 +2013,2,1,11,30,657,189,628,6,21,1020,39.02,118.30000000000001,3.9000000000000004,0.145 +2013,2,1,12,30,943,99,769,5,22,1020,35.17,116.80000000000001,4.2,0.145 +2013,2,1,13,30,936,99,749,5,21,1020,36.49,119.5,4.4,0.145 +2013,2,1,14,30,904,95,658,5,21,1020,36.65,122.4,4.5,0.145 +2013,2,1,15,30,838,87,506,5,20,1020,39.89,124,4.5,0.145 +2013,2,1,16,30,707,73,308,6,19,1020,46.89,124.30000000000001,4.1000000000000005,0.145 +2013,2,1,17,30,408,42,97,7,16,1020,58.25,121.5,3.4000000000000004,0.145 +2013,2,1,18,30,0,0,0,9,15,1020,69.27,120.10000000000001,3.1,0.147 +2013,2,1,19,30,0,0,0,10,14,1020,77.81,126,3,0.147 +2013,2,1,20,30,0,0,0,10,14,1020,80.95,134.5,3,0.147 +2013,2,1,21,30,0,0,0,11,14,1020,83.85000000000001,142,2.9000000000000004,0.147 +2013,2,1,22,30,0,0,0,11,14,1020,92.66,150.4,2.7,0.147 +2013,2,1,23,30,0,0,0,12,13,1020,95.73,157.70000000000002,2.5,0.147 +2013,2,2,0,30,0,0,0,12,13,1020,99.03,162.20000000000002,2.3000000000000003,0.147 +2013,2,2,1,30,0,0,0,13,13,1020,100,164.3,2,0.147 +2013,2,2,2,30,0,0,0,13,13,1020,100,163.5,1.8,0.147 +2013,2,2,3,30,0,0,0,13,13,1020,100,159.8,1.7000000000000002,0.147 +2013,2,2,4,30,0,0,0,13,13,1020,100,153.4,1.6,0.147 +2013,2,2,5,30,0,0,0,13,14,1020,100,141.1,1.5,0.147 +2013,2,2,6,30,0,0,0,13,14,1020,100,128.70000000000002,1.4000000000000001,0.147 +2013,2,2,7,30,0,18,18,14,16,1020,93.09,125.2,1.7000000000000002,0.147 +2013,2,2,8,30,404,82,181,14,19,1020,77.61,127.60000000000001,2.2,0.147 +2013,2,2,9,30,158,186,254,14,21,1020,66.6,148.3,2.2,0.147 +2013,2,2,10,30,435,226,476,14,22,1020,61.050000000000004,164.20000000000002,1.9000000000000001,0.147 +2013,2,2,11,30,114,321,398,13,23,1020,55.6,160.5,1.7000000000000002,0.147 +2013,2,2,12,30,400,308,594,13,24,1020,51.09,149,1.9000000000000001,0.147 +2013,2,2,13,30,219,339,492,12,25,1020,47.25,139.4,2.1,0.147 +2013,2,2,14,30,66,281,323,12,25,1010,49.33,128.6,2.3000000000000003,0.147 +2013,2,2,15,30,757,109,489,12,24,1010,52.15,121.5,2.7,0.147 +2013,2,2,16,30,621,88,297,12,22,1010,56,116.4,3,0.147 +2013,2,2,17,30,331,48,94,14,20,1020,72.82000000000001,112.80000000000001,3.5,0.147 +2013,2,2,18,30,0,0,0,14,18,1020,86.56,112.80000000000001,3.7,0.147 +2013,2,2,19,30,0,0,0,15,17,1020,90.86,113.2,3.2,0.147 +2013,2,2,20,30,0,0,0,15,16,1020,99.9,113.4,2.5,0.147 +2013,2,2,21,30,0,0,0,15,15,1020,100,115.4,2.1,0.147 +2013,2,2,22,30,0,0,0,15,15,1020,100,118.4,1.9000000000000001,0.147 +2013,2,2,23,30,0,0,0,15,15,1020,100,120.7,1.7000000000000002,0.147 +2013,2,3,0,30,0,0,0,14,14,1020,100,121.2,1.5,0.147 +2013,2,3,1,30,0,0,0,14,14,1020,100,120.80000000000001,1.5,0.147 +2013,2,3,2,30,0,0,0,14,14,1020,100,121.2,1.4000000000000001,0.147 +2013,2,3,3,30,0,0,0,14,14,1020,100,120.2,1.2000000000000002,0.147 +2013,2,3,4,30,0,0,0,14,14,1020,100,113.10000000000001,1.1,0.147 +2013,2,3,5,30,0,0,0,13,13,1020,100,90.60000000000001,1.1,0.147 +2013,2,3,6,30,0,0,0,13,13,1020,100,56.900000000000006,1.3,0.147 +2013,2,3,7,30,116,17,21,15,15,1020,100,40.6,2.1,0.147 +2013,2,3,8,30,569,66,207,14,18,1020,82.10000000000001,40.800000000000004,2.8000000000000003,0.147 +2013,2,3,9,30,752,88,413,14,20,1020,69.69,49.400000000000006,2.7,0.147 +2013,2,3,10,30,487,212,493,13,22,1020,61.53,65.7,2.7,0.147 +2013,2,3,11,30,345,300,533,12,23,1020,54.71,82,2.7,0.147 +2013,2,3,12,30,222,350,510,11,23,1020,49.28,93.10000000000001,2.8000000000000003,0.147 +2013,2,3,13,30,428,295,596,11,23,1020,47.85,103.4,3,0.147 +2013,2,3,14,30,378,266,505,11,22,1020,49.84,109.60000000000001,3.4000000000000004,0.147 +2013,2,3,15,30,173,228,316,11,21,1010,52.97,111.7,3.9000000000000004,0.147 +2013,2,3,16,30,377,117,245,11,20,1010,58.67,110.80000000000001,4.1000000000000005,0.147 +2013,2,3,17,30,38,52,57,13,18,1010,73.06,110.2,4,0.147 +2013,2,3,18,30,0,0,0,14,17,1010,85.15,113,3.7,0.147 +2013,2,3,19,30,0,0,0,15,17,1010,89.97,117.10000000000001,3.5,0.147 +2013,2,3,20,30,0,0,0,15,17,1010,92.7,121.9,3.4000000000000004,0.147 +2013,2,3,21,30,0,0,0,15,16,1010,99.88,127.60000000000001,3.3000000000000003,0.147 +2013,2,3,22,30,0,0,0,15,16,1010,99.76,133.4,3.2,0.147 +2013,2,3,23,30,0,0,0,15,16,1010,99.43,139.3,3.1,0.147 +2013,2,4,0,30,0,0,0,15,16,1010,98.93,144,3,0.147 +2013,2,4,1,30,0,0,0,15,16,1010,98.44,147.1,2.9000000000000004,0.147 +2013,2,4,2,30,0,0,0,15,16,1010,98.07000000000001,150.3,2.7,0.147 +2013,2,4,3,30,0,0,0,15,16,1010,98.2,155.3,2.5,0.147 +2013,2,4,4,30,0,0,0,15,15,1010,100,154.70000000000002,2.4000000000000004,0.147 +2013,2,4,5,30,0,0,0,15,15,1010,100,155.70000000000002,2.2,0.147 +2013,2,4,6,30,0,0,0,15,15,1010,100,153.70000000000002,2.3000000000000003,0.147 +2013,2,4,7,30,0,9,9,16,17,1010,99.17,158.60000000000002,3,0.147 +2013,2,4,8,30,494,72,196,16,20,1010,82.84,168.9,4.2,0.147 +2013,2,4,9,30,68,185,215,16,22,1010,71.77,173.20000000000002,4.800000000000001,0.147 +2013,2,4,10,30,66,257,295,16,23,1010,66.59,173.70000000000002,4.800000000000001,0.147 +2013,2,4,11,30,0,138,138,16,25,1010,62.53,177,4.4,0.147 +2013,2,4,12,30,266,340,533,16,26,1010,58.730000000000004,177.60000000000002,4,0.147 +2013,2,4,13,30,837,125,716,16,26,1000,54.83,172.10000000000002,3.6,0.147 +2013,2,4,14,30,197,301,426,16,27,1000,51.050000000000004,166.3,3.2,0.147 +2013,2,4,15,30,751,105,488,15,26,1000,53.46,160.70000000000002,2.9000000000000004,0.147 +2013,2,4,16,30,630,84,299,15,24,1000,60.25,147,2.9000000000000004,0.147 +2013,2,4,17,30,358,46,98,17,22,1000,73.41,129.6,3.2,0.147 +2013,2,4,18,30,0,0,0,17,20,1000,86.5,127.30000000000001,3.6,0.147 +2013,2,4,19,30,0,0,0,18,19,1010,95.84,131.70000000000002,3.8000000000000003,0.147 +2013,2,4,20,30,0,0,0,18,18,1010,100,137.5,3.6,0.147 +2013,2,4,21,30,0,0,0,18,18,1010,100,143.4,3.2,0.147 +2013,2,4,22,30,0,0,0,17,18,1010,100,150,3.1,0.147 +2013,2,4,23,30,0,0,0,17,17,1010,100,157.9,3,0.147 +2013,2,5,0,30,0,0,0,17,17,1010,100,168.20000000000002,2.9000000000000004,0.147 +2013,2,5,1,30,0,0,0,16,17,1010,100,179.70000000000002,2.8000000000000003,0.147 +2013,2,5,2,30,0,0,0,16,16,1010,100,192.5,2.5,0.147 +2013,2,5,3,30,0,0,0,16,16,1010,100,201.10000000000002,2.1,0.147 +2013,2,5,4,30,0,0,0,16,16,1010,100,206.10000000000002,1.8,0.147 +2013,2,5,5,30,0,0,0,16,16,1010,100,210,1.6,0.147 +2013,2,5,6,30,0,0,0,16,16,1010,100,209.60000000000002,1.3,0.147 +2013,2,5,7,30,0,11,11,17,18,1010,97.74000000000001,202.4,1.5,0.147 +2013,2,5,8,30,483,77,199,17,20,1010,87.39,189.10000000000002,1.8,0.147 +2013,2,5,9,30,672,105,400,18,22,1010,79.5,184,2,0.147 +2013,2,5,10,30,771,119,569,18,24,1010,69.96000000000001,173.10000000000002,2.1,0.147 +2013,2,5,11,30,819,127,686,17,25,1010,63.1,167.9,2,0.147 +2013,2,5,12,30,843,127,738,16,26,1010,54.89,169.10000000000002,1.7000000000000002,0.147 +2013,2,5,13,30,833,127,718,15,27,1010,47.97,155.3,1.5,0.147 +2013,2,5,14,30,286,290,473,14,27,1010,45.71,127.30000000000001,1.8,0.147 +2013,2,5,15,30,286,221,368,14,26,1010,48.620000000000005,109.2,2.6,0.147 +2013,2,5,16,30,627,82,299,15,24,1010,58.06,105.4,3.4000000000000004,0.147 +2013,2,5,17,30,356,47,99,17,22,1010,75.18,107,4.2,0.147 +2013,2,5,18,30,0,0,0,18,20,1010,92.19,110.80000000000001,4.4,0.147 +2013,2,5,19,30,0,0,0,19,20,1010,96.77,111,4.1000000000000005,0.147 +2013,2,5,20,30,0,0,0,19,20,1010,98.64,112.9,3.8000000000000003,0.147 +2013,2,5,21,30,0,0,0,19,20,1010,100,114.30000000000001,3.6,0.147 +2013,2,5,22,30,0,0,0,19,19,1010,100,118,3,0.147 +2013,2,5,23,30,0,0,0,19,19,1010,100,121.10000000000001,2.3000000000000003,0.147 +2013,2,6,0,30,0,0,0,19,19,1010,100,122.30000000000001,1.5,0.147 +2013,2,6,1,30,0,0,0,19,19,1010,100,111.5,1.4000000000000001,0.147 +2013,2,6,2,30,0,0,0,19,19,1010,100,99.30000000000001,1.7000000000000002,0.147 +2013,2,6,3,30,0,0,0,19,19,1010,100,102.60000000000001,2.3000000000000003,0.147 +2013,2,6,4,30,0,0,0,19,19,1010,100,98.2,2.9000000000000004,0.147 +2013,2,6,5,30,0,0,0,19,19,1010,100,94.7,3.4000000000000004,0.147 +2013,2,6,6,30,0,0,0,19,19,1010,100,94.30000000000001,3.9000000000000004,0.147 +2013,2,6,7,30,0,6,6,19,19,1010,100,96.9,4.4,0.147 +2013,2,6,8,30,0,63,63,19,20,1010,99.49000000000001,102.60000000000001,4.7,0.147 +2013,2,6,9,30,0,16,16,20,21,1010,94.74,110.4,4.7,0.147 +2013,2,6,10,30,8,198,203,20,22,1010,88.69,122.60000000000001,4.800000000000001,0.147 +2013,2,6,11,30,0,19,19,19,23,1010,82.98,131.5,5.1000000000000005,0.147 +2013,2,6,12,30,0,45,45,20,23,1010,83.24,136.8,5.4,0.147 +2013,2,6,13,30,61,325,368,20,23,1000,83.91,142.5,5.4,0.147 +2013,2,6,14,30,100,301,366,20,23,1000,84.13,147.20000000000002,5.300000000000001,0.147 +2013,2,6,15,30,102,232,285,20,23,1000,83.99,147.4,5,0.147 +2013,2,6,16,30,458,124,284,20,22,1000,88.86,144.9,4.3,0.147 +2013,2,6,17,30,200,62,92,20,21,1000,96.47,138.5,3.4000000000000004,0.147 +2013,2,6,18,30,0,0,0,19,19,1000,100,129.9,2.7,0.147 +2013,2,6,19,30,0,0,0,19,19,1010,100,124.80000000000001,2,0.147 +2013,2,6,20,30,0,0,0,18,18,1010,100,115.7,1.5,0.147 +2013,2,6,21,30,0,0,0,18,18,1010,100,108.30000000000001,1.3,0.147 +2013,2,6,22,30,0,0,0,17,18,1010,100,107.2,1.2000000000000002,0.147 +2013,2,6,23,30,0,0,0,17,17,1010,100,119.10000000000001,1.2000000000000002,0.147 +2013,2,7,0,30,0,0,0,17,17,1010,100,138.20000000000002,1.2000000000000002,0.147 +2013,2,7,1,30,0,0,0,17,17,1010,100,153.1,1.1,0.147 +2013,2,7,2,30,0,0,0,17,18,1010,100,164.4,1,0.147 +2013,2,7,3,30,0,0,0,18,18,1010,100,173.70000000000002,0.8,0.147 +2013,2,7,4,30,0,0,0,18,18,1010,100,167.60000000000002,0.6000000000000001,0.147 +2013,2,7,5,30,0,0,0,18,18,1010,100,136.5,0.5,0.147 +2013,2,7,6,30,0,0,0,18,18,1010,100,87.4,0.7000000000000001,0.147 +2013,2,7,7,30,110,20,25,18,19,1010,97.81,71.8,1.2000000000000002,0.147 +2013,2,7,8,30,520,74,209,19,21,1010,89.3,75.4,1.4000000000000001,0.147 +2013,2,7,9,30,686,105,410,19,23,1010,79.8,93.5,1.2000000000000002,0.147 +2013,2,7,10,30,86,271,322,18,25,1010,69.28,116.60000000000001,0.9,0.147 +2013,2,7,11,30,88,325,386,18,26,1010,64.01,135.70000000000002,0.5,0.147 +2013,2,7,12,30,45,320,353,18,27,1010,59.09,156.3,0.30000000000000004,0.147 +2013,2,7,13,30,63,328,374,17,28,1010,57.45,168.5,0.2,0.147 +2013,2,7,14,30,174,309,422,17,27,1010,55.370000000000005,150.6,0.30000000000000004,0.147 +2013,2,7,15,30,281,224,371,16,26,1010,57.54,123.5,0.6000000000000001,0.147 +2013,2,7,16,30,350,127,251,17,25,1010,61.78,92.4,1.4000000000000001,0.147 +2013,2,7,17,30,0,37,37,18,23,1010,77.37,93.60000000000001,2.4000000000000004,0.147 +2013,2,7,18,30,0,0,0,19,21,1010,89.11,101.4,3,0.147 +2013,2,7,19,30,0,0,0,19,19,1010,100,109.7,3,0.147 +2013,2,7,20,30,0,0,0,18,19,1010,100,117,2.4000000000000004,0.147 +2013,2,7,21,30,0,0,0,18,18,1010,100,123.10000000000001,1.8,0.147 +2013,2,7,22,30,0,0,0,18,18,1010,100,127.5,1.5,0.147 +2013,2,7,23,30,0,0,0,18,18,1010,100,129.3,1.1,0.147 +2013,2,8,0,30,0,0,0,17,17,1010,100,116.60000000000001,0.8,0.147 +2013,2,8,1,30,0,0,0,17,17,1010,100,7.9,1.3,0.147 +2013,2,8,2,30,0,0,0,16,16,1010,100,345,2.4000000000000004,0.147 +2013,2,8,3,30,0,0,0,15,16,1010,100,350.8,3.9000000000000004,0.147 +2013,2,8,4,30,0,0,0,12,15,1010,90.10000000000001,4.1000000000000005,4.9,0.147 +2013,2,8,5,30,0,0,0,11,14,1010,84.48,11.3,5,0.147 +2013,2,8,6,30,0,0,0,11,14,1010,83.94,15.3,5.1000000000000005,0.147 +2013,2,8,7,30,0,5,5,11,14,1020,83.91,18.1,5.5,0.147 +2013,2,8,8,30,0,37,37,10,15,1020,75.96000000000001,22.700000000000003,6,0.147 +2013,2,8,9,30,257,187,302,10,17,1020,65.76,25.700000000000003,6,0.147 +2013,2,8,10,30,532,200,516,10,19,1020,58.2,27.900000000000002,5.6000000000000005,0.147 +2013,2,8,11,30,890,108,724,10,20,1020,54.230000000000004,30.8,5.1000000000000005,0.147 +2013,2,8,12,30,893,116,774,10,22,1010,49.870000000000005,33.7,4.6000000000000005,0.147 +2013,2,8,13,30,19,266,279,9,23,1010,45.37,38.900000000000006,4,0.147 +2013,2,8,14,30,856,110,665,9,23,1010,41.64,45,3.5,0.147 +2013,2,8,15,30,796,99,516,9,22,1010,43.7,54.400000000000006,3.3000000000000003,0.147 +2013,2,8,16,30,676,81,321,9,21,1010,46.78,66.2,3,0.147 +2013,2,8,17,30,414,48,112,11,18,1010,65.11,79.7,2.6,0.147 +2013,2,8,18,30,0,0,0,12,16,1010,80.55,94,2.7,0.147 +2013,2,8,19,30,0,0,0,13,16,1010,89.73,99.80000000000001,2.8000000000000003,0.147 +2013,2,8,20,30,0,0,0,14,15,1010,94.03,101.60000000000001,2.7,0.147 +2013,2,8,21,30,0,0,0,14,15,1010,100,101.60000000000001,2.7,0.147 +2013,2,8,22,30,0,0,0,14,14,1010,100,101.10000000000001,2.7,0.147 +2013,2,8,23,30,0,0,0,14,14,1010,100,101.30000000000001,2.8000000000000003,0.147 +2013,2,9,0,30,0,0,0,14,14,1010,100,102.60000000000001,2.9000000000000004,0.147 +2013,2,9,1,30,0,0,0,14,15,1010,100,104,3,0.147 +2013,2,9,2,30,0,0,0,15,15,1010,100,105,3.1,0.147 +2013,2,9,3,30,0,0,0,15,15,1010,100,104.7,3.2,0.147 +2013,2,9,4,30,0,0,0,15,16,1010,97.45,106.4,3.4000000000000004,0.147 +2013,2,9,5,30,0,0,0,15,16,1010,99.44,107.2,3.7,0.147 +2013,2,9,6,30,0,0,0,16,17,1010,95.98,109.9,4.2,0.147 +2013,2,9,7,30,47,20,23,16,18,1010,93.56,113.80000000000001,4.9,0.147 +2013,2,9,8,30,0,9,9,17,20,1010,86.43,119.5,5.6000000000000005,0.147 +2013,2,9,9,30,0,43,43,18,21,1010,84.46000000000001,127.80000000000001,6.1000000000000005,0.147 +2013,2,9,10,30,5,191,195,18,23,1010,77.25,138.20000000000002,6.5,0.147 +2013,2,9,11,30,82,325,382,19,24,1010,73.9,148.6,6.7,0.147 +2013,2,9,12,30,1,169,170,19,25,1010,70.15,154.60000000000002,6.800000000000001,0.147 +2013,2,9,13,30,6,208,213,19,25,1010,70.49,157.10000000000002,6.800000000000001,0.147 +2013,2,9,14,30,23,251,266,19,25,1010,70.86,156.3,6.800000000000001,0.147 +2013,2,9,15,30,0,153,153,19,24,1000,75.98,153.1,6.9,0.147 +2013,2,9,16,30,9,129,132,19,23,1000,82,148.6,6.7,0.147 +2013,2,9,17,30,0,45,45,20,21,1000,94.65,142.3,6.300000000000001,0.147 +2013,2,9,18,30,0,0,0,20,21,1000,100,136.9,6.1000000000000005,0.148 +2013,2,9,19,30,0,0,0,20,20,1000,100,137.70000000000002,6,0.148 +2013,2,9,20,30,0,0,0,20,20,1000,100,141.4,5.7,0.148 +2013,2,9,21,30,0,0,0,20,20,1000,100,146.20000000000002,5.300000000000001,0.148 +2013,2,9,22,30,0,0,0,20,20,1000,100,150.5,5.5,0.148 +2013,2,9,23,30,0,0,0,20,20,1000,100,157.5,6.2,0.148 +2013,2,10,0,30,0,0,0,20,20,1000,100,161.3,6.5,0.148 +2013,2,10,1,30,0,0,0,20,20,1000,100,162.5,6.4,0.148 +2013,2,10,2,30,0,0,0,20,20,1000,100,166.60000000000002,5.9,0.148 +2013,2,10,3,30,0,0,0,20,20,1000,100,173.10000000000002,5.300000000000001,0.148 +2013,2,10,4,30,0,0,0,20,20,1000,100,179.60000000000002,4.800000000000001,0.148 +2013,2,10,5,30,0,0,0,20,20,1000,100,186.8,4.2,0.148 +2013,2,10,6,30,0,0,0,20,20,1000,100,191.20000000000002,3.9000000000000004,0.148 +2013,2,10,7,30,0,16,16,20,20,1000,100,195.70000000000002,4.2,0.148 +2013,2,10,8,30,106,106,135,20,22,1000,90.79,203.4,4.7,0.148 +2013,2,10,9,30,113,199,250,19,24,1000,78.06,217.8,4.7,0.148 +2013,2,10,10,30,31,242,261,19,25,1000,70.28,230.4,3.9000000000000004,0.148 +2013,2,10,11,30,330,320,551,18,26,1000,63.89,248.10000000000002,3,0.148 +2013,2,10,12,30,330,346,592,18,27,1000,57.99,273.90000000000003,2.7,0.148 +2013,2,10,13,30,428,308,620,17,27,1000,55.86,304.2,2.7,0.148 +2013,2,10,14,30,214,313,454,16,26,1000,57.08,332.8,3,0.148 +2013,2,10,15,30,498,184,448,16,25,1000,58.550000000000004,357.1,3.6,0.148 +2013,2,10,16,30,135,152,201,15,23,1000,63.96,17.900000000000002,4.3,0.148 +2013,2,10,17,30,57,61,70,15,21,1000,69.46000000000001,29.200000000000003,4.7,0.148 +2013,2,10,18,30,0,0,0,14,19,1010,73.95,31.5,4.9,0.148 +2013,2,10,19,30,0,0,0,12,18,1010,71.96000000000001,32.6,4.9,0.148 +2013,2,10,20,30,0,0,0,11,17,1010,70.23,33,4.7,0.148 +2013,2,10,21,30,0,0,0,10,16,1010,70.24,28.400000000000002,4.5,0.148 +2013,2,10,22,30,0,0,0,9,16,1010,66.73,16.900000000000002,4.7,0.148 +2013,2,10,23,30,0,0,0,8,16,1010,66.05,12.4,5,0.148 +2013,2,11,0,30,0,0,0,8,15,1010,64.65,13,5,0.148 +2013,2,11,1,30,0,0,0,8,15,1010,65.98,16.3,4.9,0.148 +2013,2,11,2,30,0,0,0,9,15,1010,67.92,24.200000000000003,4.800000000000001,0.148 +2013,2,11,3,30,0,0,0,9,15,1010,69.84,32.9,4.6000000000000005,0.148 +2013,2,11,4,30,0,0,0,9,15,1010,71.98,38.900000000000006,4.4,0.148 +2013,2,11,5,30,0,0,0,10,15,1010,75.31,39.1,4.2,0.148 +2013,2,11,6,30,0,0,0,11,15,1010,78.65,34.6,4.3,0.148 +2013,2,11,7,30,41,22,25,11,16,1010,75.68,35.300000000000004,4.6000000000000005,0.148 +2013,2,11,8,30,368,104,204,11,17,1010,71.57000000000001,38.1,4.9,0.148 +2013,2,11,9,30,16,172,179,12,18,1010,70.15,37.4,4.9,0.148 +2013,2,11,10,30,27,238,255,13,19,1010,70.67,37,4.7,0.148 +2013,2,11,11,30,8,218,224,14,20,1010,70.29,35.300000000000004,4.2,0.148 +2013,2,11,12,30,0,146,146,15,21,1010,69.17,29.8,3.6,0.148 +2013,2,11,13,30,3,181,183,15,22,1010,67.47,22.6,3.2,0.148 +2013,2,11,14,30,0,112,112,16,22,1010,69.28,17.900000000000002,2.9000000000000004,0.148 +2013,2,11,15,30,14,194,201,16,21,1010,74.87,18.2,2.9000000000000004,0.148 +2013,2,11,16,30,0,86,86,16,20,1010,80.78,19.8,3.1,0.148 +2013,2,11,17,30,108,75,93,16,19,1010,86.86,14.700000000000001,3.3000000000000003,0.148 +2013,2,11,18,30,0,0,0,16,18,1010,93.12,9.9,3.9000000000000004,0.148 +2013,2,11,19,30,0,0,0,16,17,1010,98.99000000000001,14.200000000000001,4.5,0.148 +2013,2,11,20,30,0,0,0,16,16,1010,100,24,4.800000000000001,0.148 +2013,2,11,21,30,0,0,0,16,16,1010,100,33.7,4.5,0.148 +2013,2,11,22,30,0,0,0,15,16,1010,97.16,37.7,4.1000000000000005,0.148 +2013,2,11,23,30,0,0,0,15,15,1010,100,40.400000000000006,3.8000000000000003,0.148 +2013,2,12,0,30,0,0,0,14,15,1010,99.15,42.6,3.6,0.148 +2013,2,12,1,30,0,0,0,14,15,1010,98.26,39.5,3.3000000000000003,0.148 +2013,2,12,2,30,0,0,0,14,15,1010,97.42,30.5,2.9000000000000004,0.148 +2013,2,12,3,30,0,0,0,14,15,1010,100,27.8,2.6,0.148 +2013,2,12,4,30,0,0,0,14,14,1010,100,17.7,2.4000000000000004,0.148 +2013,2,12,5,30,0,0,0,13,14,1010,99.95,5.7,2.4000000000000004,0.148 +2013,2,12,6,30,0,0,0,13,14,1010,97.62,349.70000000000005,3,0.148 +2013,2,12,7,30,79,25,30,13,15,1010,95.29,338.90000000000003,3.4000000000000004,0.148 +2013,2,12,8,30,477,90,221,13,17,1010,84.21000000000001,330.6,3.4000000000000004,0.148 +2013,2,12,9,30,682,117,431,13,19,1010,72.02,320,3.2,0.148 +2013,2,12,10,30,0,154,154,15,21,1010,69.07000000000001,293.40000000000003,3.4000000000000004,0.148 +2013,2,12,11,30,3,183,186,15,23,1010,64.51,277.8,3.9000000000000004,0.148 +2013,2,12,12,30,5,194,198,14,24,1010,56.75,285.3,4.3,0.148 +2013,2,12,13,30,182,365,500,12,25,1000,47.18,297,4.6000000000000005,0.148 +2013,2,12,14,30,859,118,688,11,25,1000,41.62,306.8,4.800000000000001,0.148 +2013,2,12,15,30,809,104,539,9,24,1000,40.11,315.20000000000005,4.800000000000001,0.148 +2013,2,12,16,30,249,147,239,8,22,1010,42.49,324.20000000000005,4.2,0.148 +2013,2,12,17,30,151,63,88,9,20,1010,50.74,335.20000000000005,3.2,0.148 +2013,2,12,18,30,0,0,0,10,18,1010,61.07,347.20000000000005,3,0.148 +2013,2,12,19,30,0,0,0,9,17,1010,62.15,355.70000000000005,3,0.148 +2013,2,12,20,30,0,0,0,9,16,1010,64.18,357.5,2.5,0.148 +2013,2,12,21,30,0,0,0,9,15,1010,67.65,355.20000000000005,2.1,0.148 +2013,2,12,22,30,0,0,0,8,15,1010,67.2,348.40000000000003,2.1,0.148 +2013,2,12,23,30,0,0,0,8,15,1010,65.37,339.20000000000005,2.7,0.148 +2013,2,13,0,30,0,0,0,7,15,1010,62.2,339.8,3.9000000000000004,0.148 +2013,2,13,1,30,0,0,0,7,14,1010,66.23,353.3,5.1000000000000005,0.148 +2013,2,13,2,30,0,0,0,8,13,1010,73.45,2.9000000000000004,6,0.148 +2013,2,13,3,30,0,0,0,8,12,1010,78.93,8.5,6.4,0.148 +2013,2,13,4,30,0,0,0,7,11,1010,80.01,11.100000000000001,6.300000000000001,0.148 +2013,2,13,5,30,0,0,0,6,11,1010,72.74,11.4,6,0.148 +2013,2,13,6,30,0,0,0,5,11,1010,69.44,7.1000000000000005,5.800000000000001,0.148 +2013,2,13,7,30,0,18,18,5,11,1010,67.58,6.2,5.9,0.148 +2013,2,13,8,30,37,106,116,4,12,1010,60.17,8.3,5.800000000000001,0.148 +2013,2,13,9,30,244,198,311,3,13,1020,54.120000000000005,9.4,5.4,0.148 +2013,2,13,10,30,154,289,383,3,15,1020,46.35,9.4,4.800000000000001,0.148 +2013,2,13,11,30,179,350,478,3,16,1010,42.5,9.1,4.2,0.148 +2013,2,13,12,30,940,109,819,2,17,1010,38.53,4.6000000000000005,3.7,0.148 +2013,2,13,13,30,939,107,802,1,18,1010,33.980000000000004,357.40000000000003,3.5,0.148 +2013,2,13,14,30,917,101,713,0,19,1010,29.71,355.70000000000005,3.5,0.148 +2013,2,13,15,30,855,95,558,0,19,1010,30.42,0.9,3.4000000000000004,0.148 +2013,2,13,16,30,751,78,357,0,17,1010,32.02,8.700000000000001,2.9000000000000004,0.148 +2013,2,13,17,30,514,48,135,3,14,1010,49.34,22.1,2.1,0.148 +2013,2,13,18,30,0,0,0,5,12,1010,66.28,44.2,2,0.148 +2013,2,13,19,30,0,0,0,6,12,1010,67.5,57,2.1,0.148 +2013,2,13,20,30,0,0,0,6,11,1010,73.34,67.2,2.1,0.148 +2013,2,13,21,30,0,0,0,6,11,1010,79.55,73.7,2,0.148 +2013,2,13,22,30,0,0,0,6,10,1010,80.53,75.8,1.9000000000000001,0.148 +2013,2,13,23,30,0,0,0,6,10,1010,81.33,75.7,1.8,0.148 +2013,2,14,0,30,0,0,0,7,10,1010,81.9,71.7,1.8,0.148 +2013,2,14,1,30,0,0,0,7,9,1010,87.91,63,1.8,0.148 +2013,2,14,2,30,0,0,0,7,9,1010,88.07000000000001,50,1.8,0.148 +2013,2,14,3,30,0,0,0,7,8,1010,94.62,39.6,1.8,0.148 +2013,2,14,4,30,0,0,0,7,8,1010,95.31,35.2,1.9000000000000001,0.148 +2013,2,14,5,30,0,0,0,7,8,1010,95.8,37.5,1.9000000000000001,0.148 +2013,2,14,6,30,0,0,0,7,8,1010,96.06,41.900000000000006,1.8,0.148 +2013,2,14,7,30,290,24,44,7,11,1010,81.11,45.400000000000006,2.2,0.148 +2013,2,14,8,30,697,63,259,7,14,1020,63.14,51.6,2.5,0.148 +2013,2,14,9,30,854,81,481,4,17,1020,42.45,59.1,2.2,0.148 +2013,2,14,10,30,930,92,665,1,19,1020,32.12,59.5,2,0.148 +2013,2,14,11,30,966,98,790,1,20,1010,28.62,60.5,1.9000000000000001,0.148 +2013,2,14,12,30,969,106,842,0,21,1010,26.39,68.5,2,0.148 +2013,2,14,13,30,963,106,822,1,21,1010,27.6,76.60000000000001,2,0.148 +2013,2,14,14,30,935,101,729,1,21,1010,28.1,82.10000000000001,2.2,0.148 +2013,2,14,15,30,872,95,570,1,20,1010,29.580000000000002,87.4,2.7,0.148 +2013,2,14,16,30,764,78,365,1,19,1010,30.990000000000002,96.2,3.2,0.148 +2013,2,14,17,30,522,49,139,4,16,1010,44.89,103,3.6,0.148 +2013,2,14,18,30,0,0,0,5,13,1010,60.93,106.9,3.7,0.148 +2013,2,14,19,30,0,0,0,6,12,1010,70,109.2,3.5,0.148 +2013,2,14,20,30,0,0,0,7,12,1010,74.43,111.4,3.1,0.148 +2013,2,14,21,30,0,0,0,7,12,1010,76.49,112,2.9000000000000004,0.148 +2013,2,14,22,30,0,0,0,8,11,1010,83.21000000000001,114.60000000000001,2.7,0.148 +2013,2,14,23,30,0,0,0,8,11,1010,84.64,117.7,2.6,0.148 +2013,2,15,0,30,0,0,0,8,11,1010,86.31,120.7,2.4000000000000004,0.148 +2013,2,15,1,30,0,0,0,9,11,1010,88.17,127.30000000000001,2.3000000000000003,0.148 +2013,2,15,2,30,0,0,0,9,11,1010,90.66,131.20000000000002,2.2,0.148 +2013,2,15,3,30,0,0,0,10,11,1010,93.69,128.9,2,0.148 +2013,2,15,4,30,0,0,0,10,11,1010,96.54,124.4,1.9000000000000001,0.148 +2013,2,15,5,30,0,0,0,9,11,1010,100,117.80000000000001,1.9000000000000001,0.148 +2013,2,15,6,30,0,0,0,11,11,1010,100,111.60000000000001,1.9000000000000001,0.148 +2013,2,15,7,30,250,26,44,11,14,1010,85.58,105.7,2.3000000000000003,0.148 +2013,2,15,8,30,644,70,253,11,18,1020,70.12,101.7,2.7,0.148 +2013,2,15,9,30,796,93,468,9,20,1020,52.09,99.4,2.6,0.148 +2013,2,15,10,30,866,108,645,8,21,1020,43.97,82.10000000000001,2.7,0.148 +2013,2,15,11,30,892,121,763,7,22,1020,39.09,64.8,3.2,0.148 +2013,2,15,12,30,895,129,812,7,23,1010,38.46,58.6,3.7,0.148 +2013,2,15,13,30,869,136,786,7,22,1010,38.4,57.400000000000006,4,0.148 +2013,2,15,14,30,809,142,688,7,22,1010,41.03,58.900000000000006,4.1000000000000005,0.148 +2013,2,15,15,30,714,138,530,7,21,1010,43.6,63.5,4.3,0.148 +2013,2,15,16,30,575,114,331,7,19,1010,46.1,67.8,4.4,0.148 +2013,2,15,17,30,325,64,121,8,17,1020,55.65,74.4,3.9000000000000004,0.148 +2013,2,15,18,30,0,0,0,9,15,1020,68.68,81.10000000000001,3.4000000000000004,0.148 +2013,2,15,19,30,0,0,0,9,14,1020,75.38,81.2,3,0.148 +2013,2,15,20,30,0,0,0,10,14,1020,77.46000000000001,75.60000000000001,2.5,0.148 +2013,2,15,21,30,0,0,0,10,14,1020,78.61,59.1,2.5,0.148 +2013,2,15,22,30,0,0,0,10,13,1020,82.53,29.1,3.9000000000000004,0.148 +2013,2,15,23,30,0,0,0,9,12,1020,82.16,11.600000000000001,6.2,0.148 +2013,2,16,0,30,0,0,0,6,10,1020,80.2,11.8,7.5,0.148 +2013,2,16,1,30,0,0,0,4,9,1020,74.89,15.3,7.1000000000000005,0.148 +2013,2,16,2,30,0,0,0,4,9,1020,71.22,16.8,6.2,0.148 +2013,2,16,3,30,0,0,0,3,9,1020,74.82000000000001,15.9,5.1000000000000005,0.148 +2013,2,16,4,30,0,0,0,3,8,1020,74.91,13.600000000000001,4.3,0.148 +2013,2,16,5,30,0,0,0,3,7,1020,80.87,7.9,3.8000000000000003,0.148 +2013,2,16,6,30,0,0,0,3,7,1020,80.53,3.1,3.9000000000000004,0.148 +2013,2,16,7,30,259,28,47,3,9,1030,72.93,1.6,4.4,0.148 +2013,2,16,8,30,705,64,268,1,11,1030,50.660000000000004,9.700000000000001,4.7,0.148 +2013,2,16,9,30,880,77,496,-1,14,1030,36.99,16.3,4.5,0.148 +2013,2,16,10,30,961,84,683,-1,15,1030,31.470000000000002,16.5,4,0.148 +2013,2,16,11,30,999,88,810,-1,16,1020,29.36,14.700000000000001,3.5,0.148 +2013,2,16,12,30,990,102,861,-2,17,1020,26.87,14.4,3,0.148 +2013,2,16,13,30,987,100,842,-2,18,1020,24.28,16.5,2.3000000000000003,0.148 +2013,2,16,14,30,963,95,749,-3,19,1020,23.31,24,1.7000000000000002,0.148 +2013,2,16,15,30,899,91,588,-3,18,1020,22.740000000000002,39.6,1.2000000000000002,0.148 +2013,2,16,16,30,797,76,379,-3,17,1020,24.23,72.3,1,0.148 +2013,2,16,17,30,563,49,149,1,14,1020,41.45,107,1.4000000000000001,0.148 +2013,2,16,18,30,0,0,0,2,12,1020,51.120000000000005,124.60000000000001,2.1,0.148 +2013,2,16,19,30,0,0,0,3,11,1020,59.49,137.8,2.5,0.148 +2013,2,16,20,30,0,0,0,3,10,1020,65.92,146.6,2.9000000000000004,0.148 +2013,2,16,21,30,0,0,0,4,10,1020,68.61,151.3,3,0.148 +2013,2,16,22,30,0,0,0,5,10,1020,76.8,156.70000000000002,3,0.148 +2013,2,16,23,30,0,0,0,5,9,1020,80,163.4,3,0.148 +2013,2,17,0,30,0,0,0,6,9,1020,82.94,170.8,3,0.148 +2013,2,17,1,30,0,0,0,6,9,1020,86.09,177.8,2.9000000000000004,0.148 +2013,2,17,2,30,0,0,0,7,8,1020,95.51,182.4,2.8000000000000003,0.148 +2013,2,17,3,30,0,0,0,7,8,1020,99.04,183.4,2.7,0.148 +2013,2,17,4,30,0,0,0,7,7,1020,100,182,2.5,0.148 +2013,2,17,5,30,0,0,0,7,7,1020,100,177.60000000000002,2.4000000000000004,0.148 +2013,2,17,6,30,0,0,0,8,8,1020,100,173.60000000000002,2.5,0.148 +2013,2,17,7,30,271,28,49,9,11,1020,91.4,167.9,3.6,0.148 +2013,2,17,8,30,647,72,261,9,15,1020,68.18,160.5,5.1000000000000005,0.148 +2013,2,17,9,30,786,98,475,7,18,1020,51.32,160.60000000000002,5.9,0.148 +2013,2,17,10,30,841,120,648,7,20,1020,44.14,160.5,6.1000000000000005,0.148 +2013,2,17,11,30,859,137,762,7,21,1020,42.92,158.60000000000002,6.4,0.148 +2013,2,17,12,30,258,377,576,8,22,1010,43.2,155.8,6.7,0.148 +2013,2,17,13,30,76,356,415,9,21,1010,48.76,153.9,7.1000000000000005,0.148 +2013,2,17,14,30,43,291,321,10,20,1010,54.17,151.9,7.4,0.148 +2013,2,17,15,30,39,228,250,10,19,1010,59.35,150.3,7.5,0.148 +2013,2,17,16,30,11,139,143,11,18,1010,64.54,149.5,7.4,0.148 +2013,2,17,17,30,0,51,51,11,18,1010,70.61,149.1,6.9,0.148 +2013,2,17,18,30,0,0,0,12,17,1010,73.35000000000001,149.9,6.7,0.161 +2013,2,17,19,30,0,0,0,12,17,1010,75.48,153,6.7,0.161 +2013,2,17,20,30,0,0,0,12,17,1010,77.19,156.4,6.6000000000000005,0.161 +2013,2,17,21,30,0,0,0,13,17,1010,79.31,158,6.300000000000001,0.161 +2013,2,17,22,30,0,0,0,13,17,1010,81.4,159.3,6.300000000000001,0.161 +2013,2,17,23,30,0,0,0,14,17,1010,83.2,161.70000000000002,6.300000000000001,0.161 +2013,2,18,0,30,0,0,0,14,17,1010,84.76,164.70000000000002,6.300000000000001,0.161 +2013,2,18,1,30,0,0,0,14,17,1010,86.28,165.20000000000002,6.300000000000001,0.161 +2013,2,18,2,30,0,0,0,14,17,1010,87.64,165,5.9,0.161 +2013,2,18,3,30,0,0,0,15,16,1010,94.92,163.20000000000002,5.300000000000001,0.161 +2013,2,18,4,30,0,0,0,15,16,1010,96.69,161.20000000000002,4.800000000000001,0.161 +2013,2,18,5,30,0,0,0,15,16,1010,98.51,160.70000000000002,4.9,0.161 +2013,2,18,6,30,0,0,0,16,16,1010,100,160.9,5.4,0.161 +2013,2,18,7,30,100,34,43,16,18,1010,90.29,162,6.1000000000000005,0.161 +2013,2,18,8,30,0,87,87,16,20,1010,81.16,164.4,7.1000000000000005,0.161 +2013,2,18,9,30,24,189,200,16,23,1010,71.44,172.4,7.5,0.161 +2013,2,18,10,30,61,280,319,16,24,1010,63.050000000000004,179.3,7,0.161 +2013,2,18,11,30,9,227,234,16,26,1010,58.52,185,6.2,0.161 +2013,2,18,12,30,313,368,611,15,27,1010,50.03,192.5,5.300000000000001,0.161 +2013,2,18,13,30,849,146,790,14,28,1010,44.06,200.3,4.3,0.161 +2013,2,18,14,30,844,130,708,13,28,1000,40,207.5,3.3000000000000003,0.161 +2013,2,18,15,30,791,117,559,11,28,1000,36.21,213.3,2.5,0.161 +2013,2,18,16,30,692,93,362,10,26,1000,38.22,212.10000000000002,1.6,0.161 +2013,2,18,17,30,457,58,142,14,23,1010,59.28,179.4,1.2000000000000002,0.161 +2013,2,18,18,30,0,0,0,13,21,1010,64.24,166.10000000000002,1.3,0.161 +2013,2,18,19,30,0,0,0,14,19,1010,74.38,178.70000000000002,1.4000000000000001,0.161 +2013,2,18,20,30,0,0,0,14,17,1010,87.04,190.60000000000002,1.6,0.161 +2013,2,18,21,30,0,0,0,15,17,1010,89.59,195.60000000000002,1.8,0.161 +2013,2,18,22,30,0,0,0,15,16,1010,98.62,189.3,2,0.161 +2013,2,18,23,30,0,0,0,15,16,1010,100,187.3,2,0.161 +2013,2,19,0,30,0,0,0,15,15,1010,100,194.20000000000002,1.4000000000000001,0.161 +2013,2,19,1,30,0,0,0,15,15,1010,100,213.60000000000002,0.8,0.161 +2013,2,19,2,30,0,0,0,14,14,1010,100,352.3,1.4000000000000001,0.161 +2013,2,19,3,30,0,0,0,14,14,1010,100,25,2.7,0.161 +2013,2,19,4,30,0,0,0,13,14,1010,99.91,33.300000000000004,4,0.161 +2013,2,19,5,30,0,0,0,12,14,1010,94.72,42.400000000000006,5.2,0.161 +2013,2,19,6,30,0,0,0,9,14,1020,81.37,49.2,6,0.161 +2013,2,19,7,30,0,27,27,7,14,1020,66.65,54.2,6.4,0.161 +2013,2,19,8,30,199,117,176,6,16,1020,53.5,60.300000000000004,6.6000000000000005,0.161 +2013,2,19,9,30,6,166,169,6,17,1020,48.980000000000004,64.10000000000001,6.6000000000000005,0.161 +2013,2,19,10,30,37,262,286,6,19,1020,44.46,68.60000000000001,6.300000000000001,0.161 +2013,2,19,11,30,9,228,235,7,20,1020,44.63,73.8,6.1000000000000005,0.161 +2013,2,19,12,30,26,308,329,8,21,1020,45.06,77.2,5.9,0.161 +2013,2,19,13,30,567,267,700,9,20,1010,50.68,79.5,5.9,0.161 +2013,2,19,14,30,369,300,554,9,20,1010,55.660000000000004,81.60000000000001,6,0.161 +2013,2,19,15,30,641,166,526,10,19,1010,59.74,80.60000000000001,6.1000000000000005,0.161 +2013,2,19,16,30,344,145,280,10,17,1010,63.81,80.30000000000001,6.1000000000000005,0.161 +2013,2,19,17,30,208,76,115,10,16,1010,69.4,79,5.9,0.161 +2013,2,19,18,30,0,0,0,11,16,1010,73.05,81.4,5.6000000000000005,0.161 +2013,2,19,19,30,0,0,0,11,16,1010,76.69,87.5,5.300000000000001,0.161 +2013,2,19,20,30,0,0,0,12,16,1010,84.76,93.80000000000001,4.7,0.161 +2013,2,19,21,30,0,0,0,12,15,1010,87.16,100.10000000000001,4.1000000000000005,0.161 +2013,2,19,22,30,0,0,0,13,15,1010,89.23,107.5,3.7,0.161 +2013,2,19,23,30,0,0,0,13,15,1010,91.34,111.30000000000001,3.5,0.161 +2013,2,20,0,30,0,0,0,14,15,1010,93.81,111.9,3.2,0.161 +2013,2,20,1,30,0,0,0,14,15,1010,96.89,112,3.4000000000000004,0.161 +2013,2,20,2,30,0,0,0,15,16,1010,94.74,113.60000000000001,4.1000000000000005,0.161 +2013,2,20,3,30,0,0,0,15,17,1010,93.05,117.30000000000001,4.6000000000000005,0.161 +2013,2,20,4,30,0,0,0,16,17,1010,97.11,118.7,4.800000000000001,0.161 +2013,2,20,5,30,0,0,0,17,18,1010,100,117.4,4.800000000000001,0.161 +2013,2,20,6,30,0,0,0,17,18,1010,97.15,116.5,4.9,0.161 +2013,2,20,7,30,0,1,1,17,18,1010,99.08,122.30000000000001,5.5,0.161 +2013,2,20,8,30,0,29,29,18,20,1010,95.41,128,6.5,0.161 +2013,2,20,9,30,25,189,201,18,21,1010,85.56,134.6,7.6000000000000005,0.161 +2013,2,20,10,30,1,175,175,18,22,1010,81.05,141.6,8.1,0.161 +2013,2,20,11,30,24,287,306,18,23,1010,76.47,149.5,8,0.161 +2013,2,20,12,30,76,372,432,18,24,1000,71.60000000000001,157.70000000000002,7.7,0.161 +2013,2,20,13,30,48,340,377,18,24,1000,70.52,162.5,7.4,0.161 +2013,2,20,14,30,134,336,429,18,24,1000,69.93,162.5,7.2,0.161 +2013,2,20,15,30,191,260,368,18,23,1000,74.76,156.8,7.1000000000000005,0.161 +2013,2,20,16,30,421,134,300,18,22,1000,80.8,149.8,7,0.161 +2013,2,20,17,30,154,78,107,18,21,1000,87.82000000000001,143.5,6.7,0.161 +2013,2,20,18,30,0,0,0,19,20,1000,95.38,139.9,6.4,0.161 +2013,2,20,19,30,0,0,0,19,20,1000,96.26,140.6,6.4,0.161 +2013,2,20,20,30,0,0,0,19,20,1000,100,143.9,6.5,0.161 +2013,2,20,21,30,0,0,0,19,20,1000,100,146.8,6.7,0.161 +2013,2,20,22,30,0,0,0,19,20,1000,97.32000000000001,149.3,7.2,0.161 +2013,2,20,23,30,0,0,0,19,20,1000,98.03,151.1,7.7,0.161 +2013,2,21,0,30,0,0,0,19,20,1000,98.89,154.20000000000002,7.9,0.161 +2013,2,21,1,30,0,0,0,19,20,1000,99.57000000000001,159.70000000000002,7.9,0.161 +2013,2,21,2,30,0,0,0,19,20,1000,99.98,167.4,7.9,0.161 +2013,2,21,3,30,0,0,0,19,20,1000,99.98,172.60000000000002,7.9,0.161 +2013,2,21,4,30,0,0,0,19,20,1000,99.43,179.4,7.5,0.161 +2013,2,21,5,30,0,0,0,19,19,1000,100,185.70000000000002,6.800000000000001,0.161 +2013,2,21,6,30,0,0,0,19,19,1000,100,190.10000000000002,6.300000000000001,0.161 +2013,2,21,7,30,169,37,52,19,20,1000,96.16,197.4,5.800000000000001,0.161 +2013,2,21,8,30,344,106,212,19,22,1000,83.42,205.60000000000002,5.4,0.161 +2013,2,21,9,30,253,213,338,17,25,1000,63.26,219.5,4.7,0.161 +2013,2,21,10,30,166,307,414,14,27,1000,46.86,247.5,4.1000000000000005,0.161 +2013,2,21,11,30,136,367,469,11,28,1000,36.92,289.7,4.4,0.161 +2013,2,21,12,30,138,395,504,10,28,1000,33.25,315,5.300000000000001,0.161 +2013,2,21,13,30,147,386,499,9,28,1000,32.67,322.40000000000003,5.6000000000000005,0.161 +2013,2,21,14,30,345,312,552,7,27,1000,31.35,324.1,5.1000000000000005,0.161 +2013,2,21,15,30,657,146,520,6,26,1000,29.88,326.6,4.4,0.161 +2013,2,21,16,30,665,86,350,5,24,1000,29.66,332.3,3.3000000000000003,0.161 +2013,2,21,17,30,166,75,107,7,21,1000,42.08,340.70000000000005,2.3000000000000003,0.161 +2013,2,21,18,30,0,0,0,8,19,1000,50.550000000000004,353.8,2.1,0.161 +2013,2,21,19,30,0,0,0,8,18,1000,52.52,9.8,2.2,0.161 +2013,2,21,20,30,0,0,0,7,17,1000,54.71,25.6,2.3000000000000003,0.161 +2013,2,21,21,30,0,0,0,7,17,1000,58.050000000000004,38.1,2.3000000000000003,0.161 +2013,2,21,22,30,0,0,0,8,16,1000,60.45,47.2,2.1,0.161 +2013,2,21,23,30,0,0,0,9,16,1000,65.29,55.2,1.9000000000000001,0.161 +2013,2,22,0,30,0,0,0,10,16,1000,76.7,62.7,1.8,0.161 +2013,2,22,1,30,0,0,0,12,15,1000,85.18,59.300000000000004,1.8,0.161 +2013,2,22,2,30,0,0,0,13,15,1000,92.06,43.2,2.2,0.161 +2013,2,22,3,30,0,0,0,14,15,1000,95.91,31.1,3,0.161 +2013,2,22,4,30,0,0,0,14,15,1000,95.41,26.8,3.9000000000000004,0.161 +2013,2,22,5,30,0,0,0,13,15,1000,96.73,24.700000000000003,4.3,0.161 +2013,2,22,6,30,0,0,0,12,14,1010,89.51,23.400000000000002,4.6000000000000005,0.161 +2013,2,22,7,30,0,2,2,10,14,1010,81.67,20.900000000000002,5.4,0.161 +2013,2,22,8,30,0,11,11,9,16,1010,63.77,25.3,6.2,0.161 +2013,2,22,9,30,0,153,153,7,17,1010,54.5,32.5,6.5,0.161 +2013,2,22,10,30,44,275,304,7,18,1010,49.47,33.6,6.2,0.161 +2013,2,22,11,30,247,364,549,7,19,1010,46.67,32.2,5.800000000000001,0.161 +2013,2,22,12,30,294,382,614,7,20,1010,44.15,30.3,5.300000000000001,0.161 +2013,2,22,13,30,512,293,689,7,21,1010,42.83,29.1,4.7,0.161 +2013,2,22,14,30,179,341,466,8,21,1010,44.52,26.3,4.3,0.161 +2013,2,22,15,30,387,230,452,8,20,1000,48.620000000000005,24,4,0.161 +2013,2,22,16,30,479,126,318,9,19,1010,52.410000000000004,23.3,3.8000000000000003,0.161 +2013,2,22,17,30,201,91,130,9,18,1010,56.29,19.6,3.8000000000000003,0.161 +2013,2,22,18,30,0,0,0,9,17,1010,60.21,15.600000000000001,4.3,0.161 +2013,2,22,19,30,0,0,0,8,15,1010,67.04,15.9,4.800000000000001,0.161 +2013,2,22,20,30,0,0,0,8,14,1010,70.42,19.8,5,0.161 +2013,2,22,21,30,0,0,0,8,14,1010,69.60000000000001,23.400000000000002,4.9,0.161 +2013,2,22,22,30,0,0,0,8,13,1010,73.94,22.6,4.5,0.161 +2013,2,22,23,30,0,0,0,8,13,1010,73.86,16.2,4.3,0.161 +2013,2,23,0,30,0,0,0,8,13,1010,72.81,11.9,4.4,0.161 +2013,2,23,1,30,0,0,0,7,13,1010,75.41,11.5,4.7,0.161 +2013,2,23,2,30,0,0,0,7,12,1010,72.72,11.200000000000001,4.9,0.161 +2013,2,23,3,30,0,0,0,6,12,1010,70.13,11.4,5,0.161 +2013,2,23,4,30,0,0,0,6,11,1010,72.33,12.3,5.1000000000000005,0.161 +2013,2,23,5,30,0,0,0,5,11,1010,70.11,14,5,0.161 +2013,2,23,6,30,0,0,0,5,11,1010,69,14.100000000000001,4.7,0.161 +2013,2,23,7,30,0,12,12,5,11,1010,68.46000000000001,17,4.4,0.161 +2013,2,23,8,30,91,127,155,5,13,1010,65.01,20.8,4,0.161 +2013,2,23,9,30,501,167,418,6,14,1010,59.07,18.900000000000002,3.6,0.161 +2013,2,23,10,30,700,182,638,6,16,1010,54.17,7.6000000000000005,3.5,0.161 +2013,2,23,11,30,621,241,708,7,19,1010,46.480000000000004,355.3,3.4000000000000004,0.161 +2013,2,23,12,30,603,272,752,7,20,1010,44.93,350.8,3.3000000000000003,0.161 +2013,2,23,13,30,600,264,731,7,20,1010,45.64,347.5,3,0.161 +2013,2,23,14,30,331,318,552,7,20,1010,45.17,349.6,2.8000000000000003,0.161 +2013,2,23,15,30,845,89,576,7,20,1010,44.43,0.6000000000000001,2.7,0.161 +2013,2,23,16,30,367,158,306,7,19,1010,47.160000000000004,11.100000000000001,2.3000000000000003,0.161 +2013,2,23,17,30,238,75,122,9,17,1010,60.7,20.400000000000002,1.6,0.161 +2013,2,23,18,30,0,0,0,9,15,1010,69.75,38.7,1.5,0.161 +2013,2,23,19,30,0,0,0,9,14,1010,73.57000000000001,56,1.7000000000000002,0.161 +2013,2,23,20,30,0,0,0,9,13,1010,80.82000000000001,71.7,1.8,0.161 +2013,2,23,21,30,0,0,0,10,13,1010,84.11,85.7,1.8,0.161 +2013,2,23,22,30,0,0,0,11,12,1010,94.18,93.10000000000001,1.8,0.161 +2013,2,23,23,30,0,0,0,11,12,1010,99.8,99.4,1.8,0.161 +2013,2,24,0,30,0,0,0,11,12,1010,100,103,1.9000000000000001,0.161 +2013,2,24,1,30,0,0,0,11,12,1010,100,103.30000000000001,1.8,0.161 +2013,2,24,2,30,0,0,0,11,12,1010,100,101.4,1.8,0.161 +2013,2,24,3,30,0,0,0,11,12,1010,100,100.80000000000001,1.8,0.161 +2013,2,24,4,30,0,0,0,11,12,1010,100,96.9,1.8,0.161 +2013,2,24,5,30,0,0,0,11,12,1010,100,92.4,2,0.161 +2013,2,24,6,30,0,0,0,11,13,1010,100,92.10000000000001,2.3000000000000003,0.161 +2013,2,24,7,30,0,24,24,14,15,1010,95.96000000000001,92.5,3.2,0.161 +2013,2,24,8,30,105,129,162,14,18,1010,80.33,100.60000000000001,4.1000000000000005,0.161 +2013,2,24,9,30,137,227,296,14,21,1010,67.51,111.4,4.2,0.161 +2013,2,24,10,30,0,168,168,14,22,1000,64.19,119.5,4.1000000000000005,0.161 +2013,2,24,11,30,3,182,185,15,22,1000,65.96000000000001,126.2,3.8000000000000003,0.161 +2013,2,24,12,30,2,161,162,15,23,1000,64.42,133.70000000000002,3.6,0.161 +2013,2,24,13,30,3,176,179,16,23,1000,66.33,136.3,3.6,0.161 +2013,2,24,14,30,0,159,159,16,23,1000,67.64,134.3,3.6,0.161 +2013,2,24,15,30,0,144,144,16,22,1000,72.82000000000001,127.30000000000001,3.7,0.161 +2013,2,24,16,30,17,151,158,17,21,1000,78.59,118.10000000000001,4.1000000000000005,0.161 +2013,2,24,17,30,6,70,72,17,20,1000,85.33,105.60000000000001,4.4,0.161 +2013,2,24,18,30,0,0,0,17,18,1000,98.53,94.7,4.3,0.161 +2013,2,24,19,30,0,0,0,17,18,1000,100,89,3.8000000000000003,0.161 +2013,2,24,20,30,0,0,0,17,17,1000,100,86.10000000000001,3.3000000000000003,0.161 +2013,2,24,21,30,0,0,0,17,17,1000,100,92.7,3,0.161 +2013,2,24,22,30,0,0,0,17,17,1000,100,107.2,2.9000000000000004,0.161 +2013,2,24,23,30,0,0,0,17,17,1000,100,128.20000000000002,3,0.161 +2013,2,25,0,30,0,0,0,17,17,1000,100,147.3,2.9000000000000004,0.161 +2013,2,25,1,30,0,0,0,17,17,1000,100,168.4,2.8000000000000003,0.161 +2013,2,25,2,30,0,0,0,17,17,1000,100,189.8,2.5,0.161 +2013,2,25,3,30,0,0,0,17,17,1000,100,199.3,2.2,0.161 +2013,2,25,4,30,0,0,0,17,17,1000,100,196.70000000000002,2.1,0.161 +2013,2,25,5,30,0,0,0,17,17,1000,100,220.5,3,0.161 +2013,2,25,6,30,0,0,0,16,16,1000,100,271.90000000000003,5.6000000000000005,0.161 +2013,2,25,7,30,358,36,74,10,16,1000,69.71000000000001,308.70000000000005,8.200000000000001,0.161 +2013,2,25,8,30,226,129,202,1,18,1000,33.980000000000004,322.5,9.4,0.161 +2013,2,25,9,30,903,83,544,-3,19,1000,21.400000000000002,318,10.100000000000001,0.161 +2013,2,25,10,30,978,93,738,-6,20,1000,15.67,309.90000000000003,10.5,0.161 +2013,2,25,11,30,763,178,758,-9,21,1000,12.39,302.5,10.9,0.161 +2013,2,25,12,30,712,226,798,-9,21,1000,12.24,298.1,11.3,0.161 +2013,2,25,13,30,976,118,885,-7,21,1000,13.65,295.6,11.600000000000001,0.161 +2013,2,25,14,30,938,116,783,-5,20,1000,17.17,296.5,11.700000000000001,0.161 +2013,2,25,15,30,855,115,613,-4,19,1000,20.53,300.3,11.200000000000001,0.161 +2013,2,25,16,30,751,94,401,-3,18,1000,22.7,302.6,10.3,0.161 +2013,2,25,17,30,504,63,166,-3,17,1000,24.42,303,9,0.161 +2013,2,25,18,30,0,0,0,-2,15,1000,28.810000000000002,305.1,8,0.157 +2013,2,25,19,30,0,0,0,-2,14,1010,32.27,309.20000000000005,7.7,0.157 +2013,2,25,20,30,0,0,0,-1,13,1010,35.87,315.90000000000003,7.4,0.157 +2013,2,25,21,30,0,0,0,-1,12,1010,39.7,320.5,6.9,0.157 +2013,2,25,22,30,0,0,0,0,11,1010,43.54,321.3,6.4,0.157 +2013,2,25,23,30,0,0,0,0,10,1010,47.78,323.70000000000005,5.6000000000000005,0.157 +2013,2,26,0,30,0,0,0,0,9,1010,53.120000000000005,326.20000000000005,5,0.157 +2013,2,26,1,30,0,0,0,0,8,1010,58.95,327.20000000000005,4.4,0.157 +2013,2,26,2,30,0,0,0,0,7,1010,65.08,324.3,3.9000000000000004,0.157 +2013,2,26,3,30,0,0,0,1,7,1010,66.32000000000001,317.3,3.4000000000000004,0.157 +2013,2,26,4,30,0,0,0,1,6,1010,71.93,307.70000000000005,3,0.157 +2013,2,26,5,30,0,0,0,1,5,1010,77.4,298.6,2.8000000000000003,0.157 +2013,2,26,6,30,0,0,0,1,6,1010,71.74,291.5,3.2,0.157 +2013,2,26,7,30,69,38,46,0,8,1010,61.11,286.7,3.6,0.157 +2013,2,26,8,30,791,61,319,0,12,1010,45.62,292.1,3.5,0.157 +2013,2,26,9,30,915,76,547,-1,15,1010,33.24,310.70000000000005,3.5,0.157 +2013,2,26,10,30,621,197,609,-2,17,1010,26.82,305.5,3.3000000000000003,0.157 +2013,2,26,11,30,643,238,729,-2,19,1010,22.82,298.7,3.2,0.157 +2013,2,26,12,30,999,102,908,-3,21,1010,19.29,294,2.9000000000000004,0.157 +2013,2,26,13,30,994,101,885,-2,22,1010,18.990000000000002,292.1,2.3000000000000003,0.157 +2013,2,26,14,30,970,96,789,-2,22,1010,19.06,290.7,1.7000000000000002,0.157 +2013,2,26,15,30,921,88,627,-3,22,1010,17.85,289.90000000000003,0.8,0.157 +2013,2,26,16,30,827,74,415,-4,21,1010,17.75,291.40000000000003,0.5,0.157 +2013,2,26,17,30,618,51,178,2,18,1010,34.36,112.9,1.2000000000000002,0.157 +2013,2,26,18,30,0,0,0,2,15,1010,42.730000000000004,115.30000000000001,2.4000000000000004,0.157 +2013,2,26,19,30,0,0,0,3,13,1010,51.4,127.4,3.4000000000000004,0.157 +2013,2,26,20,30,0,0,0,5,13,1010,58.92,140.4,3.7,0.157 +2013,2,26,21,30,0,0,0,6,12,1010,70.91,151.6,3.5,0.157 +2013,2,26,22,30,0,0,0,8,12,1010,77.94,162.70000000000002,3.5,0.157 +2013,2,26,23,30,0,0,0,9,12,1010,83.15,173.60000000000002,3.8000000000000003,0.157 +2013,2,27,0,30,0,0,0,9,12,1010,87.17,179.70000000000002,3.8000000000000003,0.157 +2013,2,27,1,30,0,0,0,10,11,1010,96.12,184.3,3.4000000000000004,0.157 +2013,2,27,2,30,0,0,0,10,11,1010,98.43,187.9,2.8000000000000003,0.157 +2013,2,27,3,30,0,0,0,9,10,1010,100,188.4,2.2,0.157 +2013,2,27,4,30,0,0,0,9,10,1010,100,189.9,1.6,0.157 +2013,2,27,5,30,0,0,0,11,11,1010,100,183.4,1.1,0.157 +2013,2,27,6,30,0,0,0,11,11,1010,100,201.5,0.7000000000000001,0.157 +2013,2,27,7,30,231,44,70,11,13,1010,87.84,280.40000000000003,1.2000000000000002,0.157 +2013,2,27,8,30,559,99,283,10,16,1010,70.45,317.70000000000005,2,0.157 +2013,2,27,9,30,722,127,501,10,20,1010,57.45,275.7,2.5,0.157 +2013,2,27,10,30,816,140,685,9,21,1010,48.76,269.3,2.8000000000000003,0.157 +2013,2,27,11,30,881,139,815,7,23,1010,37.52,289.3,3,0.157 +2013,2,27,12,30,921,132,878,4,24,1010,28.990000000000002,316.8,3.9000000000000004,0.157 +2013,2,27,13,30,935,122,864,1,24,1010,23.18,335.3,5.1000000000000005,0.157 +2013,2,27,14,30,926,110,775,0,23,1010,21.03,346.1,5.7,0.157 +2013,2,27,15,30,730,128,558,-1,22,1010,21.42,352.90000000000003,5.800000000000001,0.157 +2013,2,27,16,30,177,176,249,-1,21,1010,22.27,357,5.5,0.157 +2013,2,27,17,30,460,56,152,0,18,1010,27.88,0.7000000000000001,4.5,0.157 +2013,2,27,18,30,0,0,0,1,15,1010,40.13,5.1000000000000005,3.8000000000000003,0.157 +2013,2,27,19,30,0,0,0,2,13,1010,49.26,10.8,3.7,0.157 +2013,2,27,20,30,0,0,0,3,12,1020,55.71,16.900000000000002,3.5,0.157 +2013,2,27,21,30,0,0,0,3,12,1020,61.79,20.8,3.4000000000000004,0.157 +2013,2,27,22,30,0,0,0,4,11,1020,62.550000000000004,23.3,3.4000000000000004,0.157 +2013,2,27,23,30,0,0,0,4,10,1020,66.73,23.8,3.6,0.157 +2013,2,28,0,30,0,0,0,3,10,1020,65.79,21.1,4,0.157 +2013,2,28,1,30,0,0,0,3,9,1020,68.37,16.2,4.4,0.157 +2013,2,28,2,30,0,0,0,2,8,1020,70.35000000000001,13.200000000000001,4.7,0.157 +2013,2,28,3,30,0,0,0,2,8,1020,66.96000000000001,10.4,5,0.157 +2013,2,28,4,30,0,0,0,1,7,1020,68.07000000000001,10.600000000000001,5.2,0.157 +2013,2,28,5,30,0,0,0,0,7,1020,65.34,14.4,5.1000000000000005,0.157 +2013,2,28,6,30,0,0,0,0,7,1020,64.64,15.200000000000001,5.2,0.157 +2013,2,28,7,30,0,32,32,0,9,1020,55.74,14.100000000000001,5.9,0.157 +2013,2,28,8,30,16,122,128,0,11,1020,45.31,22.6,6.4,0.157 +2013,2,28,9,30,226,230,348,0,13,1020,38.65,25.1,6.1000000000000005,0.157 +2013,2,28,10,30,135,323,415,-1,15,1020,32.34,22.6,5.6000000000000005,0.157 +2013,2,28,11,30,257,375,573,-2,16,1020,28.37,16.900000000000002,5.2,0.157 +2013,2,28,12,30,413,354,691,-3,17,1020,25.25,11.100000000000001,5,0.157 +2013,2,28,13,30,339,371,642,-3,18,1020,22.88,7.7,4.800000000000001,0.157 +2013,2,28,14,30,182,352,484,-3,19,1020,20.95,5.9,4.7,0.157 +2013,2,28,15,30,186,273,384,-4,18,1020,21.84,3.9000000000000004,4.6000000000000005,0.157 +2013,2,28,16,30,251,171,276,-4,17,1020,22.91,4.1000000000000005,4.2,0.157 +2013,2,28,17,30,311,69,135,-3,14,1020,30.12,8.200000000000001,3.2,0.157 +2013,2,28,18,30,0,0,0,0,11,1020,47.550000000000004,11.3,2.4000000000000004,0.157 +2013,2,28,19,30,0,0,0,1,10,1020,53.83,11.200000000000001,2.3000000000000003,0.157 +2013,2,28,20,30,0,0,0,1,10,1020,55.46,15.9,2.1,0.157 +2013,2,28,21,30,0,0,0,1,10,1020,56.36,20.700000000000003,1.9000000000000001,0.157 +2013,2,28,22,30,0,0,0,1,10,1020,55.83,23.8,1.8,0.157 +2013,2,28,23,30,0,0,0,1,10,1020,55.44,27.700000000000003,1.5,0.157 +2013,3,1,0,30,0,0,0,1,10,1020,54.39,29.1,1.2000000000000002,0.157 +2013,3,1,1,30,0,0,0,0,10,1020,57.24,17.6,0.9,0.157 +2013,3,1,2,30,0,0,0,1,9,1020,62.9,336.40000000000003,1,0.157 +2013,3,1,3,30,0,0,0,1,8,1020,64.74,311.3,1.2000000000000002,0.157 +2013,3,1,4,30,0,0,0,1,7,1020,70.41,307.40000000000003,1.5,0.157 +2013,3,1,5,30,0,0,0,2,6,1020,75.88,310.3,1.6,0.157 +2013,3,1,6,30,0,0,0,2,7,1020,70.52,310.1,1.9000000000000001,0.157 +2013,3,1,7,30,388,40,87,2,9,1020,63.480000000000004,308.8,2.2,0.157 +2013,3,1,8,30,727,76,321,1,13,1020,44.59,309.20000000000005,1.9000000000000001,0.157 +2013,3,1,9,30,869,93,550,-3,17,1020,25.03,287.40000000000003,1.4000000000000001,0.157 +2013,3,1,10,30,937,104,737,-4,19,1020,19.38,273.6,1.4000000000000001,0.157 +2013,3,1,11,30,970,111,863,-5,20,1020,17.92,271.90000000000003,1.2000000000000002,0.157 +2013,3,1,12,30,979,115,916,-4,21,1020,17.66,264.90000000000003,1,0.157 +2013,3,1,13,30,973,115,893,-3,22,1020,18.1,236.3,1,0.157 +2013,3,1,14,30,948,109,796,-3,22,1010,17.830000000000002,204.9,1.3,0.157 +2013,3,1,15,30,888,103,631,-3,22,1010,17.91,190.3,1.6,0.157 +2013,3,1,16,30,781,88,417,-3,21,1010,19.36,180.8,1.8,0.157 +2013,3,1,17,30,550,61,179,1,18,1010,34.980000000000004,152.9,2.3000000000000003,0.157 +2013,3,1,18,30,0,0,0,2,15,1010,44.42,139.8,3.2,0.157 +2013,3,1,19,30,0,0,0,3,13,1020,51.38,145,3.9000000000000004,0.157 +2013,3,1,20,30,0,0,0,4,12,1020,60.68,152.9,3.7,0.157 +2013,3,1,21,30,0,0,0,5,12,1020,65.69,163.60000000000002,2.6,0.157 +2013,3,1,22,30,0,0,0,5,11,1020,71.17,192.8,1.8,0.157 +2013,3,1,23,30,0,0,0,5,10,1020,74.81,260.90000000000003,1.8,0.157 +2013,3,2,0,30,0,0,0,5,10,1020,74.56,319.1,2.7,0.157 +2013,3,2,1,30,0,0,0,6,9,1020,82,351.6,3.8000000000000003,0.157 +2013,3,2,2,30,0,0,0,6,9,1020,84.7,6,4.3,0.157 +2013,3,2,3,30,0,0,0,6,8,1020,89.61,10.700000000000001,4.3,0.157 +2013,3,2,4,30,0,0,0,5,7,1020,90.11,8.4,4.5,0.157 +2013,3,2,5,30,0,0,0,4,7,1020,82.64,7.1000000000000005,4.7,0.157 +2013,3,2,6,30,0,0,0,3,7,1020,77.27,6.300000000000001,4.9,0.157 +2013,3,2,7,30,363,41,87,2,9,1020,65.6,3.5,5.300000000000001,0.157 +2013,3,2,8,30,688,79,315,1,12,1020,48.79,3,5.800000000000001,0.157 +2013,3,2,9,30,827,100,539,0,14,1020,37.77,1.8,6.1000000000000005,0.157 +2013,3,2,10,30,896,113,722,-1,16,1020,30.76,356.1,6.4,0.157 +2013,3,2,11,30,928,123,846,-2,17,1020,27.240000000000002,350.20000000000005,6.6000000000000005,0.157 +2013,3,2,12,30,923,136,895,-2,18,1020,24.73,346,6.800000000000001,0.157 +2013,3,2,13,30,926,130,875,-2,19,1020,23.03,343.40000000000003,6.800000000000001,0.157 +2013,3,2,14,30,909,120,782,-2,19,1020,23.13,342.20000000000005,6.6000000000000005,0.157 +2013,3,2,15,30,863,107,623,-2,19,1020,23.23,343.40000000000003,6,0.157 +2013,3,2,16,30,759,90,412,-2,18,1020,24.830000000000002,346.1,4.9,0.157 +2013,3,2,17,30,538,61,178,-1,16,1020,30.87,354.3,3.1,0.157 +2013,3,2,18,30,0,0,0,1,13,1020,44.69,18.8,2.3000000000000003,0.157 +2013,3,2,19,30,0,0,0,1,12,1020,51.35,41.900000000000006,2.5,0.157 +2013,3,2,20,30,0,0,0,1,11,1020,51.93,56.7,2.8000000000000003,0.157 +2013,3,2,21,30,0,0,0,1,10,1020,56.94,65.9,2.7,0.157 +2013,3,2,22,30,0,0,0,2,10,1020,63.14,73.4,2.4000000000000004,0.157 +2013,3,2,23,30,0,0,0,2,9,1020,65.17,83.5,2.1,0.157 +2013,3,3,0,30,0,0,0,3,9,1020,66.71000000000001,98.2,1.9000000000000001,0.157 +2013,3,3,1,30,0,0,0,3,9,1020,68.21000000000001,114.10000000000001,1.8,0.157 +2013,3,3,2,30,0,0,0,3,10,1020,69.88,126.4,1.7000000000000002,0.157 +2013,3,3,3,30,0,0,0,4,10,1020,72.34,134.70000000000002,1.5,0.157 +2013,3,3,4,30,0,0,0,4,9,1020,75.75,145.8,1.5,0.157 +2013,3,3,5,30,0,0,0,5,8,1020,85.72,160.70000000000002,1.7000000000000002,0.157 +2013,3,3,6,30,0,0,0,6,9,1020,85.18,174.4,1.8,0.157 +2013,3,3,7,30,437,38,95,7,12,1020,75.09,185,2.5,0.157 +2013,3,3,8,30,740,70,326,6,15,1020,57.79,182.60000000000002,3.6,0.157 +2013,3,3,9,30,867,86,550,4,18,1020,42.18,180.5,4,0.157 +2013,3,3,10,30,930,97,733,4,20,1020,35.36,178.70000000000002,4.1000000000000005,0.157 +2013,3,3,11,30,964,102,857,3,22,1020,30.59,173.5,4.3,0.157 +2013,3,3,12,30,969,109,909,3,23,1020,28.48,168.60000000000002,4.6000000000000005,0.157 +2013,3,3,13,30,963,109,886,3,23,1010,28.05,166.3,4.7,0.157 +2013,3,3,14,30,937,105,790,3,24,1010,27.7,164.10000000000002,4.800000000000001,0.157 +2013,3,3,15,30,887,96,629,3,23,1010,27.62,160.5,5,0.157 +2013,3,3,16,30,787,82,417,3,22,1010,29.87,155.60000000000002,5.300000000000001,0.157 +2013,3,3,17,30,573,57,183,4,19,1010,39.06,148.1,5.6000000000000005,0.157 +2013,3,3,18,30,0,0,0,7,17,1010,51.97,144.4,5.9,0.157 +2013,3,3,19,30,0,0,0,8,16,1010,62.85,148.9,6.1000000000000005,0.157 +2013,3,3,20,30,0,0,0,9,15,1010,71.9,156.8,6.1000000000000005,0.157 +2013,3,3,21,30,0,0,0,10,15,1010,74.79,164.10000000000002,6,0.157 +2013,3,3,22,30,0,0,0,10,15,1010,82.11,169.60000000000002,5.800000000000001,0.157 +2013,3,3,23,30,0,0,0,11,14,1010,84.56,173.5,5.6000000000000005,0.157 +2013,3,4,0,30,0,0,0,11,14,1010,87.22,176.20000000000002,5.6000000000000005,0.157 +2013,3,4,1,30,0,0,0,12,14,1010,90.10000000000001,177.5,5.6000000000000005,0.157 +2013,3,4,2,30,0,0,0,12,14,1010,93.07000000000001,177.70000000000002,5.7,0.157 +2013,3,4,3,30,0,0,0,13,14,1010,95.63,177.3,5.7,0.157 +2013,3,4,4,30,0,0,0,13,14,1010,97.59,177.20000000000002,5.800000000000001,0.157 +2013,3,4,5,30,0,0,0,13,14,1010,99.31,178.10000000000002,5.800000000000001,0.157 +2013,3,4,6,30,0,0,0,14,14,1010,100,179.5,6,0.157 +2013,3,4,7,30,362,45,94,14,16,1010,89.58,181.9,6.9,0.157 +2013,3,4,8,30,694,81,324,13,19,1010,71.43,186.20000000000002,8.1,0.157 +2013,3,4,9,30,836,100,550,11,22,1010,52.160000000000004,190.10000000000002,8.4,0.157 +2013,3,4,10,30,906,111,735,9,24,1010,40.980000000000004,190.8,7.9,0.157 +2013,3,4,11,30,944,117,861,8,27,1010,31.01,189.9,7.2,0.157 +2013,3,4,12,30,937,132,909,7,29,1000,26.76,189.20000000000002,6.4,0.157 +2013,3,4,13,30,934,129,887,5,30,1000,23.34,188.9,5.6000000000000005,0.157 +2013,3,4,14,30,911,122,791,5,30,1000,20.69,186.70000000000002,5.1000000000000005,0.157 +2013,3,4,15,30,810,131,620,4,30,1000,19.87,181.60000000000002,4.800000000000001,0.157 +2013,3,4,16,30,700,109,410,4,28,1000,22.75,173.10000000000002,4.9,0.157 +2013,3,4,17,30,471,73,177,8,24,1000,37.36,157.9,5.7,0.157 +2013,3,4,18,30,0,0,0,11,20,1000,57,156.60000000000002,6.5,0.157 +2013,3,4,19,30,0,0,0,13,18,1000,75.43,157.60000000000002,6.6000000000000005,0.157 +2013,3,4,20,30,0,0,0,15,17,1000,89.35000000000001,160.3,6.2,0.157 +2013,3,4,21,30,0,0,0,16,17,1000,93.94,165.60000000000002,5.9,0.157 +2013,3,4,22,30,0,0,0,16,17,1000,100,170.4,5.7,0.157 +2013,3,4,23,30,0,0,0,16,16,1000,100,174.4,5.6000000000000005,0.157 +2013,3,5,0,30,0,0,0,16,16,1000,100,177.8,5.4,0.157 +2013,3,5,1,30,0,0,0,15,16,1000,100,180.70000000000002,5.1000000000000005,0.157 +2013,3,5,2,30,0,0,0,15,15,1000,100,182.70000000000002,4.6000000000000005,0.157 +2013,3,5,3,30,0,0,0,14,14,1000,100,185.8,3.9000000000000004,0.157 +2013,3,5,4,30,0,0,0,13,13,1010,100,191.10000000000002,2.9000000000000004,0.157 +2013,3,5,5,30,0,0,0,13,13,1010,100,199.5,1.9000000000000001,0.157 +2013,3,5,6,30,0,0,0,14,14,1010,100,306.90000000000003,3.4000000000000004,0.157 +2013,3,5,7,30,207,57,85,14,16,1010,88.77,356.3,6.7,0.157 +2013,3,5,8,30,0,96,96,10,17,1010,67.48,16,8.3,0.157 +2013,3,5,9,30,17,203,213,7,18,1020,54.63,19.6,9.1,0.157 +2013,3,5,10,30,59,309,350,5,19,1020,40.69,19.3,9.200000000000001,0.157 +2013,3,5,11,30,50,353,392,3,20,1020,34.63,19,8.6,0.157 +2013,3,5,12,30,509,323,747,3,21,1020,33.03,16.5,7.9,0.157 +2013,3,5,13,30,853,164,859,2,21,1020,29.42,12.600000000000001,7.300000000000001,0.157 +2013,3,5,14,30,538,260,657,1,21,1020,27.04,8.6,6.9,0.157 +2013,3,5,15,30,240,276,422,0,22,1020,24.310000000000002,6.4,6.5,0.157 +2013,3,5,16,30,544,124,359,-1,21,1020,23.3,7,5.9,0.157 +2013,3,5,17,30,554,61,185,-2,18,1020,25.18,8.6,4.4,0.157 +2013,3,5,18,30,0,0,0,0,15,1020,34.74,8.8,3.1,0.154 +2013,3,5,19,30,0,0,0,0,13,1020,41.85,9.4,2.8000000000000003,0.154 +2013,3,5,20,30,0,0,0,0,12,1020,45.9,12.200000000000001,2.9000000000000004,0.154 +2013,3,5,21,30,0,0,0,1,11,1020,50.44,16.6,3.4000000000000004,0.154 +2013,3,5,22,30,0,0,0,1,11,1020,55.02,20.400000000000002,3.8000000000000003,0.154 +2013,3,5,23,30,0,0,0,1,10,1020,55.86,22,3.9000000000000004,0.154 +2013,3,6,0,30,0,0,0,1,9,1020,60.01,21.400000000000002,4.1000000000000005,0.154 +2013,3,6,1,30,0,0,0,1,8,1020,63.36,20.3,4.2,0.154 +2013,3,6,2,30,0,0,0,1,7,1020,66.5,20.5,4.2,0.154 +2013,3,6,3,30,0,0,0,0,7,1020,65.32000000000001,22.200000000000003,4.2,0.154 +2013,3,6,4,30,0,0,0,0,6,1020,69.35000000000001,24,4.1000000000000005,0.154 +2013,3,6,5,30,0,0,0,0,6,1020,70.07000000000001,25.400000000000002,3.8000000000000003,0.154 +2013,3,6,6,30,0,0,0,1,6,1020,71.64,24.3,4.2,0.154 +2013,3,6,7,30,454,43,107,1,8,1020,63.1,23.900000000000002,5,0.154 +2013,3,6,8,30,745,76,343,0,11,1020,48.67,35.9,5.300000000000001,0.154 +2013,3,6,9,30,865,94,568,-1,14,1020,34.94,43.2,4.9,0.154 +2013,3,6,10,30,925,105,750,-1,16,1020,29.87,45.2,4.2,0.154 +2013,3,6,11,30,618,262,753,-1,18,1020,26.09,53.2,3.8000000000000003,0.154 +2013,3,6,12,30,957,117,918,-1,19,1020,24.5,66.3,3.5,0.154 +2013,3,6,13,30,944,118,891,-1,20,1020,24.61,77.30000000000001,3.3000000000000003,0.154 +2013,3,6,14,30,650,220,702,-1,19,1020,25.14,86.5,3.2,0.154 +2013,3,6,15,30,848,110,627,0,18,1020,28.16,93.10000000000001,3.2,0.154 +2013,3,6,16,30,742,94,416,0,17,1020,32.2,95.5,3.3000000000000003,0.154 +2013,3,6,17,30,518,55,173,2,15,1020,41.800000000000004,97.80000000000001,3.1,0.154 +2013,3,6,18,30,0,0,0,4,13,1020,57.01,101.5,2.8000000000000003,0.154 +2013,3,6,19,30,0,0,0,6,13,1020,64.27,101.10000000000001,2.8000000000000003,0.154 +2013,3,6,20,30,0,0,0,7,12,1020,73.86,101.2,2.7,0.154 +2013,3,6,21,30,0,0,0,8,12,1020,77.71000000000001,105.4,2.3000000000000003,0.154 +2013,3,6,22,30,0,0,0,8,12,1020,80.51,110.5,2.2,0.154 +2013,3,6,23,30,0,0,0,9,12,1020,83.32000000000001,120.2,2,0.154 +2013,3,7,0,30,0,0,0,9,11,1020,92.28,127.2,2,0.154 +2013,3,7,1,30,0,0,0,10,11,1020,95.56,135.9,2,0.154 +2013,3,7,2,30,0,0,0,10,12,1020,92.77,143.70000000000002,2,0.154 +2013,3,7,3,30,0,0,0,11,12,1020,95.72,147.20000000000002,1.9000000000000001,0.154 +2013,3,7,4,30,0,0,0,11,12,1020,98.34,146.1,1.7000000000000002,0.154 +2013,3,7,5,30,0,0,0,11,12,1020,100,134.70000000000002,1.7000000000000002,0.154 +2013,3,7,6,30,0,0,0,12,13,1020,96.9,116.60000000000001,1.8,0.154 +2013,3,7,7,30,276,55,95,12,15,1020,87.62,104.4,2.5,0.154 +2013,3,7,8,30,375,126,262,13,18,1020,73.02,107.2,3.6,0.154 +2013,3,7,9,30,696,142,527,13,19,1020,68.62,121.4,4,0.154 +2013,3,7,10,30,309,326,543,13,21,1020,61.82,126.30000000000001,4.1000000000000005,0.154 +2013,3,7,11,30,315,380,632,13,22,1020,59.370000000000005,127.9,4.4,0.154 +2013,3,7,12,30,187,427,585,13,23,1020,56.63,128.1,4.7,0.154 +2013,3,7,13,30,271,403,626,14,23,1010,57.120000000000005,127.80000000000001,5.1000000000000005,0.154 +2013,3,7,14,30,57,334,377,14,22,1010,61.690000000000005,125.10000000000001,5.4,0.154 +2013,3,7,15,30,197,284,406,14,21,1010,67.39,120.9,5.6000000000000005,0.154 +2013,3,7,16,30,471,142,348,15,20,1010,73.75,118.2,5.7,0.154 +2013,3,7,17,30,2,80,80,15,19,1010,80.46000000000001,117.7,5.4,0.154 +2013,3,7,18,30,0,0,0,15,18,1010,87.75,117,4.9,0.154 +2013,3,7,19,30,0,0,0,16,18,1010,89.41,115.9,4.6000000000000005,0.154 +2013,3,7,20,30,0,0,0,16,18,1010,96.72,117.5,4.6000000000000005,0.154 +2013,3,7,21,30,0,0,0,16,18,1010,97.93,122.7,4.6000000000000005,0.154 +2013,3,7,22,30,0,0,0,16,18,1010,98.74000000000001,128.9,4.7,0.154 +2013,3,7,23,30,0,0,0,16,18,1010,99.92,135,4.800000000000001,0.154 +2013,3,8,0,30,0,0,0,17,18,1010,100,139.1,4.800000000000001,0.154 +2013,3,8,1,30,0,0,0,17,18,1010,95.53,141,4.800000000000001,0.154 +2013,3,8,2,30,0,0,0,17,18,1010,96.23,140.9,4.6000000000000005,0.154 +2013,3,8,3,30,0,0,0,17,18,1010,96.97,143.1,4.7,0.154 +2013,3,8,4,30,0,0,0,17,18,1010,97.8,147.9,4.800000000000001,0.154 +2013,3,8,5,30,0,0,0,17,18,1010,98.94,142.5,4.6000000000000005,0.154 +2013,3,8,6,30,0,0,0,17,18,1010,99.59,134.9,4.6000000000000005,0.154 +2013,3,8,7,30,0,25,25,18,19,1010,94.23,136.9,4.800000000000001,0.154 +2013,3,8,8,30,0,124,124,18,22,1010,83.97,144.70000000000002,5.300000000000001,0.154 +2013,3,8,9,30,24,213,227,17,23,1010,72.34,152.70000000000002,5.9,0.154 +2013,3,8,10,30,72,323,373,16,24,1010,64.83,152.9,6.1000000000000005,0.154 +2013,3,8,11,30,102,394,476,16,25,1010,58.57,149.5,6.1000000000000005,0.154 +2013,3,8,12,30,17,294,308,15,25,1010,56.480000000000004,143,6.300000000000001,0.154 +2013,3,8,13,30,72,391,451,15,25,1010,55.1,139.8,6.4,0.154 +2013,3,8,14,30,18,271,285,15,25,1010,54.46,135.3,6.4,0.154 +2013,3,8,15,30,94,281,340,15,24,1010,57.74,134.1,6.300000000000001,0.154 +2013,3,8,16,30,50,179,201,15,22,1010,65.96000000000001,130.8,6.1000000000000005,0.154 +2013,3,8,17,30,16,83,87,15,21,1010,77.49,126.9,5.800000000000001,0.154 +2013,3,8,18,30,0,0,0,16,19,1010,87.02,122.10000000000001,5.4,0.154 +2013,3,8,19,30,0,0,0,17,19,1010,90.01,120.4,5.4,0.154 +2013,3,8,20,30,0,0,0,17,19,1010,89.92,129,5.5,0.154 +2013,3,8,21,30,0,0,0,17,19,1010,89.89,136.3,5.1000000000000005,0.154 +2013,3,8,22,30,0,0,0,17,18,1010,96.7,138.70000000000002,4.5,0.154 +2013,3,8,23,30,0,0,0,17,18,1010,97.76,142.4,4.4,0.154 +2013,3,9,0,30,0,0,0,17,18,1010,98.64,148.20000000000002,4.7,0.154 +2013,3,9,1,30,0,0,0,17,18,1010,99.23,149.1,5.300000000000001,0.154 +2013,3,9,2,30,0,0,0,17,19,1010,93.46000000000001,151,5.800000000000001,0.154 +2013,3,9,3,30,0,0,0,17,19,1010,93.38,152.8,6,0.154 +2013,3,9,4,30,0,0,0,18,19,1010,94.41,150.8,5.9,0.154 +2013,3,9,5,30,0,0,0,18,19,1010,95.63,151.6,5.7,0.154 +2013,3,9,6,30,0,0,0,18,19,1010,96.67,154.20000000000002,5.6000000000000005,0.154 +2013,3,9,7,30,0,16,16,18,21,1010,86.34,160.70000000000002,6.1000000000000005,0.154 +2013,3,9,8,30,0,48,48,18,23,1010,81.73,167.10000000000002,7.2,0.154 +2013,3,9,9,30,0,138,138,18,24,1010,71.81,172.10000000000002,7.9,0.154 +2013,3,9,10,30,22,269,285,18,26,1010,62.89,170.20000000000002,8.200000000000001,0.154 +2013,3,9,11,30,114,400,492,18,27,1000,58.2,167.5,8.200000000000001,0.154 +2013,3,9,12,30,25,330,351,17,28,1000,57.27,164.9,8,0.154 +2013,3,9,13,30,18,294,309,17,28,1000,56.660000000000004,163.9,7.9,0.154 +2013,3,9,14,30,154,370,486,17,27,1000,59.74,160.60000000000002,8.1,0.154 +2013,3,9,15,30,655,177,582,17,25,1000,63.93,153.8,8.3,0.154 +2013,3,9,16,30,103,190,236,17,24,1000,69.10000000000001,148.8,8.6,0.154 +2013,3,9,17,30,325,92,168,18,22,1000,79.03,147.3,8.1,0.154 +2013,3,9,18,30,0,0,0,18,20,1000,90.14,148,7.300000000000001,0.154 +2013,3,9,19,30,0,0,0,18,20,1000,90.5,148.6,7.2,0.154 +2013,3,9,20,30,0,0,0,18,20,1000,90.36,150.70000000000002,7.4,0.154 +2013,3,9,21,30,0,0,0,18,20,1000,96.75,151.9,7.300000000000001,0.154 +2013,3,9,22,30,0,0,0,18,20,1000,98.02,154.60000000000002,7.300000000000001,0.154 +2013,3,9,23,30,0,0,0,18,20,1000,99.66,158.20000000000002,7.7,0.154 +2013,3,10,0,30,0,0,0,19,20,1000,95.4,161.9,7.9,0.154 +2013,3,10,1,30,0,0,0,19,20,1000,96.77,168.20000000000002,7.800000000000001,0.154 +2013,3,10,2,30,0,0,0,19,20,1000,97.25,176.70000000000002,7.300000000000001,0.154 +2013,3,10,3,30,0,0,0,19,20,1000,97.35000000000001,182.10000000000002,6.5,0.154 +2013,3,10,4,30,0,0,0,19,20,1000,97.19,187,5.2,0.154 +2013,3,10,5,30,0,0,0,19,19,1000,100,198.20000000000002,3.1,0.154 +2013,3,10,6,30,0,0,0,18,19,1000,99.49000000000001,227.70000000000002,2.5,0.154 +2013,3,10,7,30,95,74,89,17,19,1000,88.41,321.1,5.300000000000001,0.154 +2013,3,10,8,30,495,131,317,12,19,1010,66.72,354.6,8.4,0.154 +2013,3,10,9,30,17,205,215,8,21,1010,43.71,1.6,8.8,0.154 +2013,3,10,10,30,26,279,298,6,23,1010,35.49,0.8,7.800000000000001,0.154 +2013,3,10,11,30,189,408,562,6,24,1010,33.27,0.4,6.9,0.154 +2013,3,10,12,30,386,385,714,6,25,1000,30.54,359.1,6.5,0.154 +2013,3,10,13,30,923,127,895,5,26,1000,27.11,359.20000000000005,6.300000000000001,0.154 +2013,3,10,14,30,905,119,801,4,26,1000,25.2,359.40000000000003,6.1000000000000005,0.154 +2013,3,10,15,30,840,115,637,3,25,1000,24.68,358.90000000000003,5.9,0.154 +2013,3,10,16,30,741,97,427,2,24,1010,24.04,356.40000000000003,5.800000000000001,0.154 +2013,3,10,17,30,532,67,193,1,21,1010,26.650000000000002,354.70000000000005,5.7,0.154 +2013,3,10,18,30,0,0,0,1,19,1010,30.11,357.1,5.800000000000001,0.154 +2013,3,10,19,30,0,0,0,1,17,1010,36.19,2.6,5.800000000000001,0.154 +2013,3,10,20,30,0,0,0,2,16,1010,41.36,8.8,5.7,0.154 +2013,3,10,21,30,0,0,0,3,15,1010,46.33,7.9,5.6000000000000005,0.154 +2013,3,10,22,30,0,0,0,3,14,1010,50.29,6.4,5.300000000000001,0.154 +2013,3,10,23,30,0,0,0,3,13,1010,53.49,4.7,4.800000000000001,0.154 +2013,3,11,0,30,0,0,0,3,12,1010,56.84,2.2,4.3,0.154 +2013,3,11,1,30,0,0,0,3,11,1010,60.69,0.30000000000000004,3.7,0.154 +2013,3,11,2,30,0,0,0,3,10,1010,65.14,356.70000000000005,3.2,0.154 +2013,3,11,3,30,0,0,0,3,9,1010,70.10000000000001,351.5,2.8000000000000003,0.154 +2013,3,11,4,30,0,0,0,3,9,1010,70.41,347.5,2.7,0.154 +2013,3,11,5,30,0,0,0,3,8,1010,75.35000000000001,345.1,2.7,0.154 +2013,3,11,6,30,0,0,0,3,9,1010,70.32000000000001,340.70000000000005,3.2,0.154 +2013,3,11,7,30,477,48,126,3,11,1020,60.09,337.8,4,0.154 +2013,3,11,8,30,769,76,368,0,15,1020,37.58,351.70000000000005,4.6000000000000005,0.154 +2013,3,11,9,30,898,91,601,-4,18,1020,21.400000000000002,352.3,5.1000000000000005,0.154 +2013,3,11,10,30,965,100,792,-5,20,1020,17.03,343.5,5.2,0.154 +2013,3,11,11,30,997,107,920,-6,21,1010,15.52,336.20000000000005,5.2,0.154 +2013,3,11,12,30,993,120,969,-6,22,1010,14.33,331.6,5.1000000000000005,0.154 +2013,3,11,13,30,983,122,942,-6,23,1010,13.52,329.90000000000003,4.9,0.154 +2013,3,11,14,30,953,119,839,-6,23,1010,13.790000000000001,330.40000000000003,4.6000000000000005,0.154 +2013,3,11,15,30,898,110,670,-5,23,1010,14.16,333.40000000000003,4.3,0.154 +2013,3,11,16,30,800,93,451,-5,22,1010,15.69,338.90000000000003,3.4000000000000004,0.154 +2013,3,11,17,30,593,65,207,-3,19,1010,22.81,346.8,2.1,0.154 +2013,3,11,18,30,0,0,0,0,16,1010,37.06,10.9,1.6,0.154 +2013,3,11,19,30,0,0,0,0,14,1010,39.21,34.7,1.7000000000000002,0.154 +2013,3,11,20,30,0,0,0,0,13,1010,42,55.7,1.8,0.154 +2013,3,11,21,30,0,0,0,1,13,1010,48.51,73.60000000000001,1.9000000000000001,0.154 +2013,3,11,22,30,0,0,0,3,12,1010,54.120000000000005,87,1.9000000000000001,0.154 +2013,3,11,23,30,0,0,0,4,12,1010,60.11,96.2,1.9000000000000001,0.154 +2013,3,12,0,30,0,0,0,5,12,1010,65.25,101.9,1.8,0.154 +2013,3,12,1,30,0,0,0,6,12,1010,69.26,110.7,1.7000000000000002,0.154 +2013,3,12,2,30,0,0,0,7,12,1010,77.69,123.10000000000001,1.7000000000000002,0.154 +2013,3,12,3,30,0,0,0,7,11,1010,81.13,140,1.6,0.154 +2013,3,12,4,30,0,0,0,8,11,1010,84.46000000000001,156.3,1.6,0.154 +2013,3,12,5,30,0,0,0,9,11,1010,87.53,171.9,1.7000000000000002,0.154 +2013,3,12,6,30,0,0,0,9,12,1010,84.81,183.4,1.8,0.154 +2013,3,12,7,30,458,51,127,10,15,1020,72.76,190.60000000000002,2.2,0.154 +2013,3,12,8,30,732,84,365,8,18,1020,52.47,177.20000000000002,2.6,0.154 +2013,3,12,9,30,852,103,591,5,21,1020,35.92,167.20000000000002,2.5,0.154 +2013,3,12,10,30,918,113,775,4,23,1020,30.150000000000002,165.70000000000002,2.2,0.154 +2013,3,12,11,30,952,118,898,3,24,1020,26.76,158,2.2,0.154 +2013,3,12,12,30,962,122,948,3,25,1010,24.12,147.1,2.4000000000000004,0.154 +2013,3,12,13,30,956,120,922,2,26,1010,22.12,136.5,2.6,0.154 +2013,3,12,14,30,714,200,742,2,26,1010,22.02,128.70000000000002,2.9000000000000004,0.154 +2013,3,12,15,30,711,146,592,2,25,1010,23.43,124,3.2,0.154 +2013,3,12,16,30,582,121,383,2,23,1010,26.740000000000002,119.9,3.7,0.154 +2013,3,12,17,30,257,85,147,3,20,1010,34.63,115.5,4.1000000000000005,0.154 +2013,3,12,18,30,0,0,0,5,18,1010,48.050000000000004,111.5,4.1000000000000005,0.154 +2013,3,12,19,30,0,0,0,7,16,1020,62.9,112.10000000000001,3.7,0.154 +2013,3,12,20,30,0,0,0,9,15,1020,68.39,115.4,3.1,0.154 +2013,3,12,21,30,0,0,0,9,14,1020,76.54,121.80000000000001,2.8000000000000003,0.154 +2013,3,12,22,30,0,0,0,10,14,1020,78.61,129.5,2.7,0.154 +2013,3,12,23,30,0,0,0,10,14,1020,79.88,136.4,2.6,0.154 +2013,3,13,0,30,0,0,0,10,13,1020,86.49,141.9,2.3000000000000003,0.154 +2013,3,13,1,30,0,0,0,11,13,1020,87.7,147.20000000000002,2,0.154 +2013,3,13,2,30,0,0,0,11,13,1020,88.95,152.1,1.8,0.154 +2013,3,13,3,30,0,0,0,11,13,1020,90.68,156.9,1.5,0.154 +2013,3,13,4,30,0,0,0,11,13,1020,92.73,152.20000000000002,1.1,0.154 +2013,3,13,5,30,0,0,0,11,12,1020,100,108.60000000000001,1.2000000000000002,0.154 +2013,3,13,6,30,0,0,0,12,13,1020,96.94,63.400000000000006,1.9000000000000001,0.154 +2013,3,13,7,30,167,61,89,12,15,1020,87.02,52.300000000000004,3,0.154 +2013,3,13,8,30,451,123,298,11,18,1020,67.53,59.5,3.7,0.154 +2013,3,13,9,30,823,108,583,10,21,1020,50.2,64.8,4,0.154 +2013,3,13,10,30,885,121,762,8,22,1020,42.47,69.5,4.1000000000000005,0.154 +2013,3,13,11,30,915,130,882,7,23,1020,36.67,76.5,4.3,0.154 +2013,3,13,12,30,881,160,920,6,24,1020,32.72,82.5,4.5,0.154 +2013,3,13,13,30,866,164,893,6,24,1020,33.72,86.10000000000001,4.7,0.154 +2013,3,13,14,30,834,158,794,6,23,1020,33.43,89,5,0.154 +2013,3,13,15,30,741,159,626,6,22,1020,35.75,91.5,5.1000000000000005,0.154 +2013,3,13,16,30,427,157,350,6,20,1020,41.62,93.5,5.1000000000000005,0.154 +2013,3,13,17,30,429,85,189,7,18,1020,50.550000000000004,95.9,4.5,0.154 +2013,3,13,18,30,0,0,0,9,16,1020,64.01,98.2,3.5,0.158 +2013,3,13,19,30,0,0,0,10,15,1020,75.18,99.5,2.8000000000000003,0.158 +2013,3,13,20,30,0,0,0,11,14,1020,84.56,102.5,2.5,0.158 +2013,3,13,21,30,0,0,0,11,14,1020,87.07000000000001,109,2.3000000000000003,0.158 +2013,3,13,22,30,0,0,0,12,14,1020,94.59,116.2,2.3000000000000003,0.158 +2013,3,13,23,30,0,0,0,12,13,1020,95.83,122.2,2.4000000000000004,0.158 +2013,3,14,0,30,0,0,0,12,13,1020,96.88,125.80000000000001,2.4000000000000004,0.158 +2013,3,14,1,30,0,0,0,12,13,1020,97.99000000000001,127,2.4000000000000004,0.158 +2013,3,14,2,30,0,0,0,12,13,1020,98.97,128.1,2.3000000000000003,0.158 +2013,3,14,3,30,0,0,0,11,13,1020,100,129.9,2.2,0.158 +2013,3,14,4,30,0,0,0,11,12,1020,100,130.9,2.2,0.158 +2013,3,14,5,30,0,0,0,11,12,1020,100,130.6,2.1,0.158 +2013,3,14,6,30,0,0,0,13,14,1020,98.4,130.3,2.4000000000000004,0.158 +2013,3,14,7,30,413,57,129,14,17,1020,82.54,131.20000000000002,3.2,0.158 +2013,3,14,8,30,681,93,361,12,20,1020,63.67,140.6,3.7,0.158 +2013,3,14,9,30,807,113,582,12,22,1020,53.49,146.8,3.8000000000000003,0.158 +2013,3,14,10,30,872,125,761,11,23,1020,48.78,147.4,4,0.158 +2013,3,14,11,30,905,132,880,11,24,1020,44.06,146.1,4.1000000000000005,0.158 +2013,3,14,12,30,898,146,924,10,25,1020,40.09,143.1,4.3,0.158 +2013,3,14,13,30,890,145,897,10,25,1020,39.34,137.6,4.4,0.158 +2013,3,14,14,30,861,139,798,10,25,1020,39.38,131.20000000000002,4.6000000000000005,0.158 +2013,3,14,15,30,811,125,637,10,24,1020,42.17,126.60000000000001,4.7,0.158 +2013,3,14,16,30,713,104,429,10,22,1020,48.39,124.10000000000001,4.800000000000001,0.158 +2013,3,14,17,30,515,71,198,11,20,1020,56.9,123.4,4.6000000000000005,0.158 +2013,3,14,18,30,36,9,10,12,18,1020,69.83,123,4.1000000000000005,0.158 +2013,3,14,19,30,0,0,0,13,17,1020,80.65,123.9,3.6,0.158 +2013,3,14,20,30,0,0,0,14,16,1020,89.88,127.60000000000001,3.3000000000000003,0.158 +2013,3,14,21,30,0,0,0,14,16,1020,91.77,133.5,3.2,0.158 +2013,3,14,22,30,0,0,0,14,15,1020,98.05,141.8,3.1,0.158 +2013,3,14,23,30,0,0,0,14,15,1020,97.47,151,3,0.158 +2013,3,15,0,30,0,0,0,14,15,1020,100,160.20000000000002,3,0.158 +2013,3,15,1,30,0,0,0,14,14,1020,100,167.20000000000002,3.1,0.158 +2013,3,15,2,30,0,0,0,14,14,1020,100,170.70000000000002,3,0.158 +2013,3,15,3,30,0,0,0,13,13,1020,100,170.9,2.7,0.158 +2013,3,15,4,30,0,0,0,13,13,1020,100,168.8,2.5,0.158 +2013,3,15,5,30,0,0,0,13,13,1020,100,164.8,2.4000000000000004,0.158 +2013,3,15,6,30,0,0,0,14,14,1020,100,162.5,2.8000000000000003,0.158 +2013,3,15,7,30,486,52,139,14,18,1020,81.92,160.4,3.9000000000000004,0.158 +2013,3,15,8,30,744,81,376,13,21,1020,62.01,169.10000000000002,4.9,0.158 +2013,3,15,9,30,856,98,599,11,23,1020,49.370000000000005,172.9,5.2,0.158 +2013,3,15,10,30,912,109,778,10,25,1020,43.980000000000004,170.8,5.2,0.158 +2013,3,15,11,30,939,117,896,10,26,1020,39.56,166.9,5.300000000000001,0.158 +2013,3,15,12,30,934,128,940,9,26,1010,36.18,161.5,5.4,0.158 +2013,3,15,13,30,927,126,913,9,27,1010,33.87,156.8,5.6000000000000005,0.158 +2013,3,15,14,30,898,122,812,9,26,1010,36.46,153.60000000000002,5.800000000000001,0.158 +2013,3,15,15,30,784,138,636,10,25,1010,39.69,151.20000000000002,6,0.158 +2013,3,15,16,30,681,115,427,10,24,1010,43.45,148.5,6,0.158 +2013,3,15,17,30,471,79,196,11,22,1010,55.38,144.8,5.800000000000001,0.158 +2013,3,15,18,30,23,10,10,13,20,1010,70.27,139.1,5.2,0.158 +2013,3,15,19,30,0,0,0,15,18,1010,83.16,137,4.800000000000001,0.158 +2013,3,15,20,30,0,0,0,15,17,1010,92.88,141.6,4.5,0.158 +2013,3,15,21,30,0,0,0,16,17,1010,94.2,148.4,4.3,0.158 +2013,3,15,22,30,0,0,0,16,17,1010,94.05,155,4.3,0.158 +2013,3,15,23,30,0,0,0,15,17,1010,93.62,160.3,4.5,0.158 +2013,3,16,0,30,0,0,0,15,16,1010,99.42,164.5,4.6000000000000005,0.158 +2013,3,16,1,30,0,0,0,15,16,1010,99.21000000000001,166.20000000000002,4.4,0.158 +2013,3,16,2,30,0,0,0,15,16,1010,99.17,166.70000000000002,4.1000000000000005,0.158 +2013,3,16,3,30,0,0,0,15,15,1010,100,166.60000000000002,3.9000000000000004,0.158 +2013,3,16,4,30,0,0,0,15,15,1010,100,165.70000000000002,3.7,0.158 +2013,3,16,5,30,0,0,0,15,15,1010,100,164.9,3.6,0.158 +2013,3,16,6,30,0,0,0,16,16,1010,100,164.20000000000002,4.1000000000000005,0.158 +2013,3,16,7,30,322,70,130,16,19,1010,85.58,163.9,5.4,0.158 +2013,3,16,8,30,453,129,310,16,22,1010,69.97,170.20000000000002,6.7,0.158 +2013,3,16,9,30,422,237,486,15,23,1010,63.96,173.9,7.300000000000001,0.158 +2013,3,16,10,30,471,284,631,15,24,1010,58.81,173.60000000000002,7.300000000000001,0.158 +2013,3,16,11,30,241,415,616,15,25,1010,54.79,172,7,0.158 +2013,3,16,12,30,333,418,709,15,26,1010,54.980000000000004,168.8,6.7,0.158 +2013,3,16,13,30,375,391,711,15,26,1000,52.39,164.3,6.5,0.158 +2013,3,16,14,30,724,208,766,15,26,1000,52.97,159.8,6.5,0.158 +2013,3,16,15,30,660,187,608,15,25,1000,56.79,156.60000000000002,6.7,0.158 +2013,3,16,16,30,120,210,266,16,24,1000,61.5,154.5,6.800000000000001,0.158 +2013,3,16,17,30,0,7,7,16,22,1000,71.67,152.3,6.4,0.158 +2013,3,16,18,30,0,0,0,17,20,1000,84.08,148.5,5.7,0.158 +2013,3,16,19,30,0,0,0,17,20,1010,92.27,145,5.5,0.158 +2013,3,16,20,30,0,0,0,17,19,1010,93.37,146.5,5.4,0.158 +2013,3,16,21,30,0,0,0,17,19,1010,93.65,150.20000000000002,5.1000000000000005,0.158 +2013,3,16,22,30,0,0,0,17,19,1000,93.38,154,5,0.158 +2013,3,16,23,30,0,0,0,17,19,1000,93.09,157.70000000000002,4.9,0.158 +2013,3,17,0,30,0,0,0,17,19,1000,98.84,160.8,4.9,0.158 +2013,3,17,1,30,0,0,0,17,18,1000,98.63,162,4.800000000000001,0.158 +2013,3,17,2,30,0,0,0,17,18,1000,98.56,162.20000000000002,4.5,0.158 +2013,3,17,3,30,0,0,0,17,18,1000,98.7,161.3,4.1000000000000005,0.158 +2013,3,17,4,30,0,0,0,17,18,1000,99.19,159.9,3.7,0.158 +2013,3,17,5,30,0,0,0,17,18,1000,100,155.60000000000002,3.5,0.158 +2013,3,17,6,30,0,0,0,18,18,1000,100,151.4,4,0.158 +2013,3,17,7,30,333,70,133,18,20,1000,89.73,151.5,5.300000000000001,0.158 +2013,3,17,8,30,20,153,161,17,23,1000,72.98,163.9,6.300000000000001,0.158 +2013,3,17,9,30,48,250,279,17,25,1000,63.7,170.9,6.300000000000001,0.158 +2013,3,17,10,30,817,148,754,17,27,1000,55.95,171.9,5.800000000000001,0.158 +2013,3,17,11,30,851,158,870,17,28,1000,51.67,169.70000000000002,5.300000000000001,0.158 +2013,3,17,12,30,853,167,915,16,29,1000,47.31,164.8,4.800000000000001,0.158 +2013,3,17,13,30,843,167,888,16,30,1000,43.26,156.5,4.5,0.158 +2013,3,17,14,30,809,162,788,15,30,1000,42.27,147.20000000000002,4.4,0.158 +2013,3,17,15,30,716,163,621,15,29,1000,44.12,139.8,4.7,0.158 +2013,3,17,16,30,598,138,414,15,28,1000,47.08,133.3,5.2,0.158 +2013,3,17,17,30,375,94,189,16,25,1000,59.52,128.6,5.9,0.158 +2013,3,17,18,30,7,9,9,18,22,1000,78.37,128.3,5.9,0.158 +2013,3,17,19,30,0,0,0,19,20,1000,94.10000000000001,131.9,5.1000000000000005,0.158 +2013,3,17,20,30,0,0,0,19,20,1000,95.93,138.9,4.4,0.158 +2013,3,17,21,30,0,0,0,19,19,1000,100,145.6,4.3,0.158 +2013,3,17,22,30,0,0,0,19,19,1000,100,153.20000000000002,4.5,0.158 +2013,3,17,23,30,0,0,0,19,19,1000,100,158.20000000000002,4.1000000000000005,0.158 +2013,3,18,0,30,0,0,0,18,18,1000,100,162.20000000000002,3.5,0.158 +2013,3,18,1,30,0,0,0,18,18,1000,100,167.70000000000002,3.1,0.158 +2013,3,18,2,30,0,0,0,17,17,1000,100,166.3,3,0.158 +2013,3,18,3,30,0,0,0,17,17,1000,100,157.4,2.9000000000000004,0.158 +2013,3,18,4,30,0,0,0,17,17,1000,100,150.70000000000002,2.5,0.158 +2013,3,18,5,30,0,0,0,17,17,1000,100,149.1,1.8,0.158 +2013,3,18,6,30,0,0,0,18,18,1000,100,149.8,1.8,0.158 +2013,3,18,7,30,268,79,131,19,21,1000,90.13,148.4,2.5,0.158 +2013,3,18,8,30,580,123,360,19,23,1000,78.21000000000001,165.3,2.5,0.158 +2013,3,18,9,30,739,141,582,18,26,1000,62.04,169.10000000000002,1.9000000000000001,0.158 +2013,3,18,10,30,819,151,761,17,28,1000,52.15,173.4,1.1,0.158 +2013,3,18,11,30,862,156,881,16,30,1000,43.11,175.8,0.5,0.158 +2013,3,18,12,30,839,182,919,14,33,1000,32.12,0.30000000000000004,0.9,0.158 +2013,3,18,13,30,842,173,895,11,34,1000,25.46,0.9,1.5,0.158 +2013,3,18,14,30,823,161,801,9,35,1000,21.36,358.3,1.4000000000000001,0.158 +2013,3,18,15,30,744,158,636,8,35,1000,19.29,346.1,1.2000000000000002,0.158 +2013,3,18,16,30,654,128,431,6,34,1000,19.36,337.20000000000005,0.8,0.158 +2013,3,18,17,30,464,84,202,8,30,1000,26.97,41.900000000000006,1,0.158 +2013,3,18,18,30,36,11,12,12,25,1000,47.65,104.30000000000001,2,0.158 +2013,3,18,19,30,0,0,0,14,22,1000,61.980000000000004,120,3,0.158 +2013,3,18,20,30,0,0,0,16,20,1000,81.31,131.3,2.7,0.158 +2013,3,18,21,30,0,0,0,17,19,1010,92.68,129,1.9000000000000001,0.158 +2013,3,18,22,30,0,0,0,18,19,1010,95.61,97.30000000000001,1.7000000000000002,0.158 +2013,3,18,23,30,0,0,0,18,19,1010,100,72.5,1.7000000000000002,0.158 +2013,3,19,0,30,0,0,0,18,18,1010,100,63.5,1.5,0.158 +2013,3,19,1,30,0,0,0,17,17,1010,100,52.6,1.4000000000000001,0.158 +2013,3,19,2,30,0,0,0,16,17,1010,100,35.6,1.7000000000000002,0.158 +2013,3,19,3,30,0,0,0,16,16,1010,100,28,2,0.158 +2013,3,19,4,30,0,0,0,15,16,1010,95.36,30.3,2.2,0.158 +2013,3,19,5,30,0,0,0,14,16,1010,92.60000000000001,38.7,2.3000000000000003,0.158 +2013,3,19,6,30,0,0,0,14,17,1010,87.41,47.400000000000006,2.8000000000000003,0.158 +2013,3,19,7,30,327,73,137,15,19,1010,79.16,55.7,3.5,0.158 +2013,3,19,8,30,580,122,362,16,22,1010,71.25,87.30000000000001,4,0.158 +2013,3,19,9,30,0,118,118,17,25,1010,65.09,106.60000000000001,4.2,0.158 +2013,3,19,10,30,22,281,298,18,27,1010,58.9,115.5,4.2,0.158 +2013,3,19,11,30,46,370,410,18,28,1010,55.01,120.80000000000001,4.1000000000000005,0.158 +2013,3,19,12,30,734,242,891,17,29,1010,50.44,125.10000000000001,3.9000000000000004,0.158 +2013,3,19,13,30,731,235,864,17,29,1010,49.06,127.80000000000001,3.9000000000000004,0.158 +2013,3,19,14,30,701,220,767,16,29,1000,48.19,126.80000000000001,3.9000000000000004,0.158 +2013,3,19,15,30,641,195,609,16,28,1000,50.72,121.9,4,0.158 +2013,3,19,16,30,73,197,231,17,27,1000,57.76,115.7,4,0.158 +2013,3,19,17,30,323,103,186,17,24,1000,67.59,107.2,3.9000000000000004,0.158 +2013,3,19,18,30,0,9,9,18,22,1000,80.79,96.10000000000001,4,0.158 +2013,3,19,19,30,0,0,0,19,20,1010,96.28,88.9,4.1000000000000005,0.158 +2013,3,19,20,30,0,0,0,19,20,1010,98.23,89.60000000000001,4.3,0.158 +2013,3,19,21,30,0,0,0,19,20,1010,98.51,92.10000000000001,4.3,0.158 +2013,3,19,22,30,0,0,0,19,20,1010,98.46000000000001,90.9,4.1000000000000005,0.158 +2013,3,19,23,30,0,0,0,19,20,1010,98.18,87.7,3.7,0.158 +2013,3,20,0,30,0,0,0,19,20,1010,97.71000000000001,83,3.3000000000000003,0.158 +2013,3,20,1,30,0,0,0,19,20,1010,96.82000000000001,66.5,3.4000000000000004,0.158 +2013,3,20,2,30,0,0,0,19,20,1010,100,44.6,4.2,0.158 +2013,3,20,3,30,0,0,0,18,19,1010,98.77,37,5.1000000000000005,0.158 +2013,3,20,4,30,0,0,0,18,19,1010,94.75,32.4,5.9,0.158 +2013,3,20,5,30,0,0,0,17,18,1010,94.19,30.900000000000002,6.7,0.158 +2013,3,20,6,30,0,0,0,15,18,1010,87.01,31.900000000000002,7.300000000000001,0.158 +2013,3,20,7,30,166,91,124,14,19,1010,76.41,37.7,8,0.158 +2013,3,20,8,30,380,179,338,13,20,1010,67.85,48.1,8.3,0.158 +2013,3,20,9,30,532,225,547,12,22,1010,60.06,55.1,7.9,0.158 +2013,3,20,10,30,621,253,720,12,23,1010,51.33,58.1,7.2,0.158 +2013,3,20,11,30,658,275,833,12,24,1010,48.1,58,6.6000000000000005,0.158 +2013,3,20,12,30,683,276,881,12,25,1010,45.17,58.900000000000006,6.1000000000000005,0.158 +2013,3,20,13,30,682,268,857,12,25,1010,44.57,61.1,5.6000000000000005,0.158 +2013,3,20,14,30,671,240,765,11,25,1010,43.65,65.2,5.1000000000000005,0.158 +2013,3,20,15,30,657,191,617,11,24,1010,45.4,72.4,5,0.158 +2013,3,20,16,30,572,149,418,11,23,1010,47.49,80.10000000000001,4.9,0.158 +2013,3,20,17,30,395,94,197,11,21,1010,53.6,86.9,4.7,0.158 +2013,3,20,18,30,0,13,13,11,19,1010,63.07,93.5,4,0.158 +2013,3,20,19,30,0,0,0,12,17,1010,76,100.10000000000001,3.1,0.158 +2013,3,20,20,30,0,0,0,13,17,1010,84.18,104.2,2.5,0.158 +2013,3,20,21,30,0,0,0,13,16,1010,85.78,108.80000000000001,2.3000000000000003,0.158 +2013,3,20,22,30,0,0,0,13,16,1010,86.47,113.30000000000001,2.3000000000000003,0.158 +2013,3,20,23,30,0,0,0,13,15,1010,92.54,120.30000000000001,2.3000000000000003,0.158 +2013,3,21,0,30,0,0,0,13,15,1010,93.09,128.9,2.3000000000000003,0.158 +2013,3,21,1,30,0,0,0,14,15,1010,93.87,137.6,2.3000000000000003,0.158 +2013,3,21,2,30,0,0,0,14,15,1010,95.03,144.1,2.4000000000000004,0.158 +2013,3,21,3,30,0,0,0,14,15,1010,96.85000000000001,146.5,2.4000000000000004,0.158 +2013,3,21,4,30,0,0,0,14,15,1010,99.16,145.5,2.3000000000000003,0.158 +2013,3,21,5,30,0,0,0,15,15,1010,100,144,2.2,0.158 +2013,3,21,6,30,0,0,0,15,16,1010,97.53,142.5,2.9000000000000004,0.158 +2013,3,21,7,30,299,79,141,15,19,1010,81.17,142.1,4.4,0.158 +2013,3,21,8,30,545,131,361,15,22,1010,64.66,150.20000000000002,5.4,0.158 +2013,3,21,9,30,39,249,273,14,23,1010,60.53,156.5,5.6000000000000005,0.158 +2013,3,21,10,30,56,338,380,15,24,1010,57.68,161,5.7,0.158 +2013,3,21,11,30,4,170,173,15,25,1000,55.02,163.8,5.800000000000001,0.158 +2013,3,21,12,30,12,255,267,15,26,1000,52.620000000000005,164.10000000000002,5.7,0.158 +2013,3,21,13,30,12,256,267,15,26,1000,53.45,162.10000000000002,5.6000000000000005,0.158 +2013,3,21,14,30,29,313,337,16,26,1000,54.27,159.20000000000002,5.6000000000000005,0.158 +2013,3,21,15,30,89,298,356,16,26,1000,58.17,156.3,5.6000000000000005,0.158 +2013,3,21,16,30,49,192,215,16,25,1000,62.550000000000004,152.5,5.7,0.158 +2013,3,21,17,30,5,91,93,16,23,1000,67.86,148,5.7,0.158 +2013,3,21,18,30,0,6,6,17,21,1000,79.07000000000001,143.1,5.5,0.153 +2013,3,21,19,30,0,0,0,17,20,1000,86.99,142.70000000000002,5.2,0.153 +2013,3,21,20,30,0,0,0,18,19,1000,95.11,145.1,5.1000000000000005,0.153 +2013,3,21,21,30,0,0,0,18,19,1000,96.8,149.6,5.1000000000000005,0.153 +2013,3,21,22,30,0,0,0,18,19,1000,97.96000000000001,155.10000000000002,5,0.153 +2013,3,21,23,30,0,0,0,18,19,1000,98.71000000000001,162.3,4.7,0.153 +2013,3,22,0,30,0,0,0,18,19,1000,99.14,167.20000000000002,4,0.153 +2013,3,22,1,30,0,0,0,18,19,1000,99.63,166.9,3.3000000000000003,0.153 +2013,3,22,2,30,0,0,0,18,18,1000,100,168,2.8000000000000003,0.153 +2013,3,22,3,30,0,0,0,18,18,1000,100,167,2.7,0.153 +2013,3,22,4,30,0,0,0,18,18,1000,100,155.20000000000002,2.7,0.153 +2013,3,22,5,30,0,0,0,18,18,1000,100,140.9,2.9000000000000004,0.153 +2013,3,22,6,30,0,0,0,19,20,1000,100,136.70000000000002,3.6,0.153 +2013,3,22,7,30,279,82,141,19,22,1000,86.62,144,4.6000000000000005,0.153 +2013,3,22,8,30,0,125,125,19,24,1000,77.15,155.70000000000002,5.1000000000000005,0.153 +2013,3,22,9,30,6,194,198,19,26,1000,68.46000000000001,159.5,5.2,0.153 +2013,3,22,10,30,5,192,196,19,27,1000,64.28,159.9,5,0.153 +2013,3,22,11,30,23,325,345,19,28,1000,60.02,158.20000000000002,4.7,0.153 +2013,3,22,12,30,7,192,199,19,29,1000,55.980000000000004,154.20000000000002,4.3,0.153 +2013,3,22,13,30,285,428,676,19,30,1000,52.27,149.1,3.9000000000000004,0.153 +2013,3,22,14,30,729,195,769,19,29,1000,54.9,141.9,3.8000000000000003,0.153 +2013,3,22,15,30,20,242,255,18,28,1000,57.800000000000004,134.1,3.9000000000000004,0.153 +2013,3,22,16,30,170,206,286,18,27,1000,61.550000000000004,126.30000000000001,4.2,0.153 +2013,3,22,17,30,204,123,177,19,25,1000,70.51,120.4,4.5,0.153 +2013,3,22,18,30,4,7,7,19,23,1000,81.67,117.2,4.5,0.153 +2013,3,22,19,30,0,0,0,20,21,1000,94.53,116.4,4.3,0.153 +2013,3,22,20,30,0,0,0,20,21,1000,100,116.30000000000001,4.2,0.153 +2013,3,22,21,30,0,0,0,20,20,1000,100,116.9,4.2,0.153 +2013,3,22,22,30,0,0,0,20,20,1000,100,119.4,4.3,0.153 +2013,3,22,23,30,0,0,0,20,20,1000,100,123.10000000000001,4.1000000000000005,0.153 +2013,3,23,0,30,0,0,0,20,20,1000,100,132.8,3,0.153 +2013,3,23,1,30,0,0,0,20,20,1000,100,165.5,1.7000000000000002,0.153 +2013,3,23,2,30,0,0,0,19,19,1000,100,178.60000000000002,1.2000000000000002,0.153 +2013,3,23,3,30,0,0,0,19,19,1000,100,120.9,1.8,0.153 +2013,3,23,4,30,0,0,0,19,19,1000,100,104.60000000000001,2.1,0.153 +2013,3,23,5,30,0,0,0,19,19,1000,100,100.4,1.8,0.153 +2013,3,23,6,30,0,0,0,20,20,1000,100,94.2,2,0.153 +2013,3,23,7,30,283,86,147,20,22,1000,89.11,89.10000000000001,2.4000000000000004,0.153 +2013,3,23,8,30,525,142,368,20,25,1000,73.84,106.2,2.1,0.153 +2013,3,23,9,30,657,173,579,19,27,1000,64.3,121.9,1.3,0.153 +2013,3,23,10,30,46,332,367,19,28,1000,59.35,133.5,0.5,0.153 +2013,3,23,11,30,30,350,376,18,30,1000,50.82,11,0.6000000000000001,0.153 +2013,3,23,12,30,799,200,916,17,31,1000,45.68,345.8,1.2000000000000002,0.153 +2013,3,23,13,30,812,184,892,17,32,1000,40.82,344,1.6,0.153 +2013,3,23,14,30,801,165,797,16,33,1000,36.550000000000004,342.8,1.8,0.153 +2013,3,23,15,30,733,154,634,15,32,1000,36.52,346,1.8,0.153 +2013,3,23,16,30,632,128,428,14,31,1000,36.93,5.1000000000000005,1.9000000000000001,0.153 +2013,3,23,17,30,444,86,203,14,29,1000,43.22,42.300000000000004,2.7,0.153 +2013,3,23,18,30,55,14,16,15,25,1000,55.36,75.8,3.7,0.153 +2013,3,23,19,30,0,0,0,16,23,1000,67.54,85.2,4,0.153 +2013,3,23,20,30,0,0,0,17,21,1000,81.86,90.5,3.6,0.153 +2013,3,23,21,30,0,0,0,18,20,1000,90.39,99.2,2.8000000000000003,0.153 +2013,3,23,22,30,0,0,0,18,19,1000,98.06,112.10000000000001,1.8,0.153 +2013,3,23,23,30,0,0,0,18,18,1000,100,135.20000000000002,1.2000000000000002,0.153 +2013,3,24,0,30,0,0,0,18,18,1000,100,165.4,1.2000000000000002,0.153 +2013,3,24,1,30,0,0,0,17,17,1000,100,186.9,1.5,0.153 +2013,3,24,2,30,0,0,0,17,17,1000,100,217,2,0.153 +2013,3,24,3,30,0,0,0,18,18,1000,100,283.7,3.7,0.153 +2013,3,24,4,30,0,0,0,16,17,1000,94.28,319.3,5.800000000000001,0.153 +2013,3,24,5,30,0,0,0,12,15,1010,83.38,343.1,7.9,0.153 +2013,3,24,6,30,0,0,0,9,15,1010,70.12,356.3,9.3,0.153 +2013,3,24,7,30,0,64,64,8,15,1010,66.9,359.20000000000005,9.200000000000001,0.153 +2013,3,24,8,30,683,111,407,5,16,1010,50.910000000000004,358.40000000000003,8.9,0.153 +2013,3,24,9,30,825,125,638,1,17,1010,34.62,354.8,8.8,0.153 +2013,3,24,10,30,902,131,824,-2,19,1010,24.8,352.1,8.6,0.153 +2013,3,24,11,30,942,133,946,-4,20,1010,18.66,350.40000000000003,8.1,0.153 +2013,3,24,12,30,925,153,984,-5,21,1010,16.26,349.8,7.7,0.153 +2013,3,24,13,30,921,148,955,-5,22,1010,15.780000000000001,350.20000000000005,7.2,0.153 +2013,3,24,14,30,252,384,584,-6,22,1010,14.75,351,6.800000000000001,0.153 +2013,3,24,15,30,105,305,373,-6,21,1010,15.55,352.40000000000003,6.300000000000001,0.153 +2013,3,24,16,30,371,179,357,-6,20,1010,16.31,356,5.800000000000001,0.153 +2013,3,24,17,30,487,88,217,-6,18,1010,18.36,1.2000000000000002,5,0.153 +2013,3,24,18,30,73,15,18,-5,16,1010,22.17,9,4.2,0.153 +2013,3,24,19,30,0,0,0,-3,15,1010,28.8,17.2,4.3,0.153 +2013,3,24,20,30,0,0,0,-2,14,1010,31.66,22.900000000000002,4.6000000000000005,0.153 +2013,3,24,21,30,0,0,0,-1,13,1010,36.57,27.400000000000002,4.800000000000001,0.153 +2013,3,24,22,30,0,0,0,0,12,1010,41.480000000000004,31.700000000000003,5,0.153 +2013,3,24,23,30,0,0,0,0,11,1010,46.5,35.800000000000004,5.1000000000000005,0.153 +2013,3,25,0,30,0,0,0,0,11,1010,48.18,37.5,5,0.153 +2013,3,25,1,30,0,0,0,0,10,1010,53.31,36.5,4.800000000000001,0.153 +2013,3,25,2,30,0,0,0,1,9,1010,58.81,32.1,4.6000000000000005,0.153 +2013,3,25,3,30,0,0,0,1,9,1020,60.28,27.700000000000003,4.5,0.153 +2013,3,25,4,30,0,0,0,1,8,1020,65.59,25.6,4.6000000000000005,0.153 +2013,3,25,5,30,0,0,0,2,8,1020,66.58,26.6,4.7,0.153 +2013,3,25,6,30,0,0,0,2,8,1020,67.4,28.1,5.5,0.153 +2013,3,25,7,30,459,72,174,1,10,1020,54.07,36.9,6.4,0.153 +2013,3,25,8,30,693,109,414,0,12,1020,40.75,41.400000000000006,6.5,0.153 +2013,3,25,9,30,813,130,639,-2,14,1020,31.28,42.2,6.1000000000000005,0.153 +2013,3,25,10,30,880,141,820,-4,16,1020,25.76,43.900000000000006,5.7,0.153 +2013,3,25,11,30,917,147,941,-5,17,1020,20.39,47.2,5.300000000000001,0.153 +2013,3,25,12,30,901,167,980,-6,18,1020,17.8,51.900000000000006,4.9,0.153 +2013,3,25,13,30,897,164,951,-7,18,1020,17.03,57.400000000000006,4.5,0.153 +2013,3,25,14,30,873,154,848,-7,19,1020,16.56,63.5,4.1000000000000005,0.153 +2013,3,25,15,30,796,150,675,-7,18,1020,16.42,70.9,4,0.153 +2013,3,25,16,30,695,126,459,-7,17,1020,17.69,77,3.8000000000000003,0.153 +2013,3,25,17,30,494,88,221,-7,15,1020,20.85,83.30000000000001,3.3000000000000003,0.153 +2013,3,25,18,30,63,16,19,-4,13,1020,28.86,93.10000000000001,2.7,0.153 +2013,3,25,19,30,0,0,0,-2,12,1020,38.52,100.9,2.5,0.153 +2013,3,25,20,30,0,0,0,-1,11,1020,42.19,100.30000000000001,2.4000000000000004,0.153 +2013,3,25,21,30,0,0,0,0,11,1020,44.31,91.2,2.3000000000000003,0.153 +2013,3,25,22,30,0,0,0,0,10,1020,48.910000000000004,77.4,2.4000000000000004,0.153 +2013,3,25,23,30,0,0,0,0,10,1020,50.910000000000004,65,2.6,0.153 +2013,3,26,0,30,0,0,0,0,10,1020,53.18,54.7,2.8000000000000003,0.153 +2013,3,26,1,30,0,0,0,1,9,1020,59.22,47.2,3.2,0.153 +2013,3,26,2,30,0,0,0,2,9,1020,61.54,43.2,3.5,0.153 +2013,3,26,3,30,0,0,0,2,9,1020,63.27,41.2,3.8000000000000003,0.153 +2013,3,26,4,30,0,0,0,2,9,1020,63.89,41.800000000000004,4,0.153 +2013,3,26,5,30,0,0,0,2,9,1020,63.84,45.1,3.9000000000000004,0.153 +2013,3,26,6,30,0,0,0,2,10,1020,59.42,48.5,4.4,0.153 +2013,3,26,7,30,463,73,178,1,12,1030,49.56,54.1,5.4,0.153 +2013,3,26,8,30,694,108,415,0,15,1030,34.28,63,5.7,0.153 +2013,3,26,9,30,821,123,640,-1,17,1030,27.51,65.10000000000001,5.5,0.153 +2013,3,26,10,30,887,132,819,-2,18,1020,24.62,67.3,5.2,0.153 +2013,3,26,11,30,917,139,936,-2,19,1020,22.42,71.4,4.800000000000001,0.153 +2013,3,26,12,30,910,152,976,-3,20,1020,20.66,77.10000000000001,4.6000000000000005,0.153 +2013,3,26,13,30,899,152,944,-3,20,1020,20.55,83.80000000000001,4.5,0.153 +2013,3,26,14,30,870,147,840,-3,20,1020,20.8,90.7,4.6000000000000005,0.153 +2013,3,26,15,30,752,164,661,-2,19,1020,22.59,96.9,4.5,0.153 +2013,3,26,16,30,645,138,449,-2,18,1020,24.76,103.4,4.4,0.153 +2013,3,26,17,30,446,95,215,-1,16,1020,29.66,109.60000000000001,4,0.153 +2013,3,26,18,30,49,17,19,0,14,1020,37.480000000000004,115.60000000000001,3.3000000000000003,0.153 +2013,3,26,19,30,0,0,0,1,12,1020,47.67,121.4,2.9000000000000004,0.153 +2013,3,26,20,30,0,0,0,2,12,1020,50.910000000000004,126.10000000000001,2.8000000000000003,0.153 +2013,3,26,21,30,0,0,0,2,12,1020,53.21,130.1,2.9000000000000004,0.153 +2013,3,26,22,30,0,0,0,3,12,1020,59.13,132.6,3,0.153 +2013,3,26,23,30,0,0,0,3,12,1020,61.620000000000005,133.6,3.1,0.153 +2013,3,27,0,30,0,0,0,4,11,1020,64.3,135.6,3.1,0.153 +2013,3,27,1,30,0,0,0,5,11,1020,67.19,137.1,3,0.153 +2013,3,27,2,30,0,0,0,5,11,1020,69.94,136.9,2.9000000000000004,0.153 +2013,3,27,3,30,0,0,0,6,11,1020,73.13,134.8,2.8000000000000003,0.153 +2013,3,27,4,30,0,0,0,6,11,1020,76.3,132.70000000000002,2.8000000000000003,0.153 +2013,3,27,5,30,0,0,0,7,11,1020,79.29,131.5,2.8000000000000003,0.153 +2013,3,27,6,30,0,0,0,8,14,1020,72.16,130.6,3.5,0.153 +2013,3,27,7,30,0,36,36,8,17,1020,59.71,132.4,4.7,0.153 +2013,3,27,8,30,0,85,85,6,18,1020,48.5,138.3,5.300000000000001,0.153 +2013,3,27,9,30,54,271,305,7,20,1020,43.38,140.8,5.5,0.153 +2013,3,27,10,30,64,355,405,7,21,1020,42.65,142.5,5.5,0.153 +2013,3,27,11,30,11,245,255,8,22,1020,44.660000000000004,143.8,5.4,0.153 +2013,3,27,12,30,81,443,517,9,22,1020,43.74,143.70000000000002,5.4,0.153 +2013,3,27,13,30,32,365,394,9,22,1020,45.26,139.8,5.5,0.153 +2013,3,27,14,30,72,372,430,10,21,1020,49.44,136.5,5.6000000000000005,0.153 +2013,3,27,15,30,30,262,282,10,20,1020,53.69,135.5,5.6000000000000005,0.153 +2013,3,27,16,30,38,191,210,10,19,1020,58.120000000000005,134.9,5.5,0.153 +2013,3,27,17,30,439,92,212,10,18,1020,62.93,134.5,5.300000000000001,0.153 +2013,3,27,18,30,54,18,20,11,17,1020,68.71000000000001,132.8,4.6000000000000005,0.153 +2013,3,27,19,30,0,0,0,11,17,1020,76.45,133,4.1000000000000005,0.153 +2013,3,27,20,30,0,0,0,12,16,1020,79.69,140.9,3.9000000000000004,0.153 +2013,3,27,21,30,0,0,0,12,16,1020,82.28,145.5,3.7,0.153 +2013,3,27,22,30,0,0,0,13,15,1020,89.95,151.4,3.6,0.153 +2013,3,27,23,30,0,0,0,13,15,1020,91.96000000000001,160.10000000000002,3.6,0.153 +2013,3,28,0,30,0,0,0,13,15,1020,93.64,165.10000000000002,3.5,0.153 +2013,3,28,1,30,0,0,0,14,15,1020,94.94,164.5,3.3000000000000003,0.153 +2013,3,28,2,30,0,0,0,14,15,1020,96.06,163.9,3.1,0.153 +2013,3,28,3,30,0,0,0,14,15,1010,97.14,159.5,2.8000000000000003,0.153 +2013,3,28,4,30,0,0,0,14,15,1010,98.42,150.20000000000002,2.6,0.153 +2013,3,28,5,30,0,0,0,14,15,1010,99.98,139.3,2.8000000000000003,0.153 +2013,3,28,6,30,0,0,0,15,16,1020,95.53,129.9,3.7,0.153 +2013,3,28,7,30,0,77,77,15,19,1020,79.66,128.8,4.9,0.153 +2013,3,28,8,30,8,156,160,14,21,1020,67.03,138.5,5.5,0.153 +2013,3,28,9,30,12,216,223,14,22,1020,62.42,139.8,5.6000000000000005,0.153 +2013,3,28,10,30,7,213,219,14,23,1020,58.910000000000004,140.3,5.9,0.153 +2013,3,28,11,30,13,272,284,14,24,1020,55.42,139,6.1000000000000005,0.153 +2013,3,28,12,30,11,247,258,14,24,1020,55.31,138.1,6.2,0.153 +2013,3,28,13,30,209,449,635,14,23,1010,58.6,137.4,6.2,0.153 +2013,3,28,14,30,88,383,454,14,22,1010,62.14,136,6.1000000000000005,0.153 +2013,3,28,15,30,56,289,327,14,22,1010,61.82,135.3,5.9,0.153 +2013,3,28,16,30,575,147,426,14,21,1010,65.29,134.9,5.6000000000000005,0.153 +2013,3,28,17,30,400,96,206,14,20,1010,69.42,134.1,5,0.153 +2013,3,28,18,30,51,18,20,14,19,1020,75.96000000000001,131.8,4.1000000000000005,0.153 +2013,3,28,19,30,0,0,0,15,18,1020,85.24,129.20000000000002,3.6,0.153 +2013,3,28,20,30,0,0,0,16,18,1020,94.59,131.8,3.4000000000000004,0.153 +2013,3,28,21,30,0,0,0,16,17,1020,96.27,137,3.4000000000000004,0.153 +2013,3,28,22,30,0,0,0,16,17,1020,96.08,145.1,3.5,0.153 +2013,3,28,23,30,0,0,0,16,16,1020,100,154.20000000000002,3.4000000000000004,0.153 +2013,3,29,0,30,0,0,0,16,16,1020,100,159.9,3.2,0.153 +2013,3,29,1,30,0,0,0,16,16,1010,100,161.5,3.1,0.153 +2013,3,29,2,30,0,0,0,15,15,1010,100,160.4,2.8000000000000003,0.153 +2013,3,29,3,30,0,0,0,15,15,1010,100,152.9,2.4000000000000004,0.153 +2013,3,29,4,30,0,0,0,15,15,1010,100,142.20000000000002,2.4000000000000004,0.153 +2013,3,29,5,30,0,0,0,15,15,1010,100,134.6,2.6,0.153 +2013,3,29,6,30,0,0,0,16,17,1020,99.17,130.20000000000002,3.4000000000000004,0.153 +2013,3,29,7,30,371,85,174,16,20,1020,81.98,129.5,4.6000000000000005,0.153 +2013,3,29,8,30,586,132,398,15,23,1020,64.09,140.8,5.300000000000001,0.153 +2013,3,29,9,30,721,150,612,15,24,1020,58.08,143.6,5.6000000000000005,0.153 +2013,3,29,10,30,784,166,781,14,25,1020,53.33,144.8,5.7,0.153 +2013,3,29,11,30,806,182,890,14,26,1010,49.58,145,5.7,0.153 +2013,3,29,12,30,814,188,931,14,26,1010,49.43,142.20000000000002,5.7,0.153 +2013,3,29,13,30,328,424,716,14,26,1010,49.75,140.1,5.6000000000000005,0.153 +2013,3,29,14,30,407,344,672,14,25,1010,53.4,138.8,5.4,0.153 +2013,3,29,15,30,703,167,636,15,24,1010,57.59,137.5,5.300000000000001,0.153 +2013,3,29,16,30,580,146,429,15,23,1010,62.35,134.8,5.1000000000000005,0.153 +2013,3,29,17,30,73,107,127,15,21,1010,72.24,131.5,4.7,0.153 +2013,3,29,18,30,0,13,13,16,20,1010,79.67,129.6,4.2,0.148 +2013,3,29,19,30,0,0,0,17,19,1010,88.81,127,4,0.148 +2013,3,29,20,30,0,0,0,17,19,1010,90.97,131.6,3.8000000000000003,0.148 +2013,3,29,21,30,0,0,0,17,19,1010,98.02,134.1,3.3000000000000003,0.148 +2013,3,29,22,30,0,0,0,17,18,1010,98.64,133.8,3,0.148 +2013,3,29,23,30,0,0,0,17,18,1010,98.78,133.1,2.9000000000000004,0.148 +2013,3,30,0,30,0,0,0,17,18,1010,98.85000000000001,135.6,2.7,0.148 +2013,3,30,1,30,0,0,0,17,17,1010,100,140.4,2.7,0.148 +2013,3,30,2,30,0,0,0,17,17,1010,100,141.9,2.8000000000000003,0.148 +2013,3,30,3,30,0,0,0,17,17,1010,100,144,2.7,0.148 +2013,3,30,4,30,0,0,0,16,17,1010,100,144.4,2.5,0.148 +2013,3,30,5,30,0,0,0,16,17,1010,100,146.3,2.6,0.148 +2013,3,30,6,30,0,0,0,17,18,1010,98.53,151.70000000000002,3.3000000000000003,0.148 +2013,3,30,7,30,0,41,41,17,20,1010,88.10000000000001,159,3.8000000000000003,0.148 +2013,3,30,8,30,0,38,38,17,23,1010,70.97,163.70000000000002,3.9000000000000004,0.148 +2013,3,30,9,30,5,193,197,17,25,1010,61.76,169,3.9000000000000004,0.148 +2013,3,30,10,30,6,195,200,16,27,1010,57.56,170.70000000000002,3.7,0.148 +2013,3,30,11,30,85,429,505,16,28,1010,50.72,166.9,3.6,0.148 +2013,3,30,12,30,90,453,536,16,29,1010,47.37,160.4,3.6,0.148 +2013,3,30,13,30,793,192,898,16,29,1010,47.18,152.4,3.8000000000000003,0.148 +2013,3,30,14,30,775,176,801,16,29,1010,47.15,144.70000000000002,4.1000000000000005,0.148 +2013,3,30,15,30,730,154,643,16,28,1010,50.02,140,4.5,0.148 +2013,3,30,16,30,636,128,439,16,27,1010,53.68,137.5,4.9,0.148 +2013,3,30,17,30,454,88,215,17,24,1010,65.91,136,5.300000000000001,0.148 +2013,3,30,18,30,64,20,24,17,22,1010,77.74,136,5.4,0.148 +2013,3,30,19,30,0,0,0,18,20,1010,92.03,136.6,5.1000000000000005,0.148 +2013,3,30,20,30,0,0,0,19,20,1010,100,142.5,5,0.148 +2013,3,30,21,30,0,0,0,19,19,1010,100,147.5,4.800000000000001,0.148 +2013,3,30,22,30,0,0,0,19,19,1010,100,153.1,4.6000000000000005,0.148 +2013,3,30,23,30,0,0,0,19,19,1010,100,159.5,4.5,0.148 +2013,3,31,0,30,0,0,0,19,19,1010,100,163.20000000000002,4.2,0.148 +2013,3,31,1,30,0,0,0,18,19,1010,100,168,4,0.148 +2013,3,31,2,30,0,0,0,18,18,1010,100,169.60000000000002,3.8000000000000003,0.148 +2013,3,31,3,30,0,0,0,18,18,1010,100,164.8,3.5,0.148 +2013,3,31,4,30,0,0,0,17,18,1010,100,161.70000000000002,3.1,0.148 +2013,3,31,5,30,0,0,0,17,18,1010,100,163.4,2.9000000000000004,0.148 +2013,3,31,6,30,0,6,6,18,19,1010,99.62,162.9,3.5,0.148 +2013,3,31,7,30,234,89,147,19,21,1010,88.61,167.4,4.5,0.148 +2013,3,31,8,30,617,125,410,18,23,1010,77.83,177.8,4.7,0.148 +2013,3,31,9,30,86,294,350,18,25,1010,67.89,177.20000000000002,4.3,0.148 +2013,3,31,10,30,288,369,597,18,27,1010,59.4,170.10000000000002,4,0.148 +2013,3,31,11,30,300,415,681,18,28,1010,54.95,158.8,3.9000000000000004,0.148 +2013,3,31,12,30,798,197,931,17,29,1010,51.04,147.5,4.1000000000000005,0.148 +2013,3,31,13,30,418,387,760,17,29,1010,50.65,138.5,4.3,0.148 +2013,3,31,14,30,763,181,798,17,28,1000,53.61,132.70000000000002,4.4,0.148 +2013,3,31,15,30,594,220,619,17,27,1000,57.06,128,4.6000000000000005,0.148 +2013,3,31,16,30,488,179,419,17,26,1000,61.15,122.30000000000001,4.800000000000001,0.148 +2013,3,31,17,30,295,118,201,18,24,1000,70.34,117.5,4.7,0.148 +2013,3,31,18,30,0,18,18,18,22,1010,81.4,113.4,4.3,0.148 +2013,3,31,19,30,0,0,0,19,21,1010,89.01,109.10000000000001,4.1000000000000005,0.148 +2013,3,31,20,30,0,0,0,19,20,1010,96.47,107.9,4,0.148 +2013,3,31,21,30,0,0,0,19,20,1010,97.53,108.9,4,0.148 +2013,3,31,22,30,0,0,0,19,20,1010,98.15,112.60000000000001,3.8000000000000003,0.148 +2013,3,31,23,30,0,0,0,19,19,1010,100,121.4,3.5,0.148 +2013,4,1,0,30,0,0,0,19,19,1010,100,134,3.3000000000000003,0.148 +2013,4,1,1,30,0,0,0,19,19,1010,100,144.20000000000002,3,0.148 +2013,4,1,2,30,0,0,0,18,19,1010,100,148.70000000000002,2.5,0.148 +2013,4,1,3,30,0,0,0,18,18,1010,100,147.1,2,0.148 +2013,4,1,4,30,0,0,0,18,18,1010,100,143,1.6,0.148 +2013,4,1,5,30,0,0,0,18,18,1010,100,137.1,1.2000000000000002,0.148 +2013,4,1,6,30,9,8,8,19,20,1010,100,126.4,1.4000000000000001,0.148 +2013,4,1,7,30,347,94,182,19,22,1010,87.93,111.5,1.7000000000000002,0.148 +2013,4,1,8,30,9,163,167,19,24,1010,75.82000000000001,103.60000000000001,1.8,0.148 +2013,4,1,9,30,19,240,253,18,26,1010,63.42,98.60000000000001,2.1,0.148 +2013,4,1,10,30,55,353,397,17,27,1010,57.68,101.7,2.7,0.148 +2013,4,1,11,30,58,400,452,17,28,1010,53.5,105.5,3.3000000000000003,0.148 +2013,4,1,12,30,780,208,926,17,29,1010,49.85,107,3.8000000000000003,0.148 +2013,4,1,13,30,771,205,895,17,28,1010,52.36,105.2,4.2,0.148 +2013,4,1,14,30,741,194,795,17,27,1010,55.44,103.5,4.4,0.148 +2013,4,1,15,30,208,316,456,17,26,1010,59.15,103,4.6000000000000005,0.148 +2013,4,1,16,30,8,169,173,17,25,1010,63.63,101.80000000000001,4.7,0.148 +2013,4,1,17,30,364,104,207,18,23,1010,73.48,99.80000000000001,4.7,0.148 +2013,4,1,18,30,45,18,21,18,21,1010,85.89,96.7,4.5,0.148 +2013,4,1,19,30,0,0,0,19,20,1010,95.38,93.4,4.2,0.148 +2013,4,1,20,30,0,0,0,19,20,1010,98.06,95,4,0.148 +2013,4,1,21,30,0,0,0,19,20,1010,99.07000000000001,101,3.9000000000000004,0.148 +2013,4,1,22,30,0,0,0,19,20,1010,99.27,106.4,3.7,0.148 +2013,4,1,23,30,0,0,0,19,20,1010,99.08,111.60000000000001,3.5,0.148 +2013,4,2,0,30,0,0,0,19,20,1010,98.34,117.9,3.2,0.148 +2013,4,2,1,30,0,0,0,19,19,1010,100,123.7,2.7,0.148 +2013,4,2,2,30,0,0,0,19,19,1010,100,127.5,2.4000000000000004,0.148 +2013,4,2,3,30,0,0,0,19,19,1010,100,124.5,2.3000000000000003,0.148 +2013,4,2,4,30,0,0,0,19,19,1010,100,116.60000000000001,2.2,0.148 +2013,4,2,5,30,0,0,0,19,19,1010,100,108.10000000000001,2.5,0.148 +2013,4,2,6,30,0,8,8,20,20,1010,100,103,3.3000000000000003,0.148 +2013,4,2,7,30,235,92,152,20,22,1010,90.96000000000001,106.9,4.3,0.148 +2013,4,2,8,30,253,194,314,20,25,1010,77.12,122.10000000000001,5.1000000000000005,0.148 +2013,4,2,9,30,634,185,600,20,26,1010,71.29,130.5,5.800000000000001,0.148 +2013,4,2,10,30,24,304,323,20,26,1010,69.73,134.6,6.300000000000001,0.148 +2013,4,2,11,30,12,259,270,19,26,1010,68.68,137,6.5,0.148 +2013,4,2,12,30,17,311,328,19,26,1010,72.16,138.9,6.2,0.148 +2013,4,2,13,30,245,451,672,19,25,1010,72.15,139,5.7,0.148 +2013,4,2,14,30,14,267,279,19,25,1000,72.33,135.3,5.1000000000000005,0.148 +2013,4,2,15,30,152,320,423,19,24,1000,77.03,131.3,4.7,0.148 +2013,4,2,16,30,488,176,417,19,24,1000,77.31,124.7,4.3,0.148 +2013,4,2,17,30,304,116,202,19,23,1000,82.45,114.60000000000001,3.9000000000000004,0.148 +2013,4,2,18,30,25,18,20,20,22,1000,88.69,99.60000000000001,3.6,0.148 +2013,4,2,19,30,0,0,0,20,21,1000,95.57000000000001,83.30000000000001,3.6,0.148 +2013,4,2,20,30,0,0,0,20,20,1000,100,74.8,3.6,0.148 +2013,4,2,21,30,0,0,0,20,20,1010,100,72.9,3.5,0.148 +2013,4,2,22,30,0,0,0,20,20,1000,100,70.2,3.2,0.148 +2013,4,2,23,30,0,0,0,19,20,1000,99.5,69.5,2.8000000000000003,0.148 +2013,4,3,0,30,0,0,0,19,19,1000,100,66.60000000000001,2.2,0.148 +2013,4,3,1,30,0,0,0,19,19,1000,100,56.400000000000006,1.9000000000000001,0.148 +2013,4,3,2,30,0,0,0,19,19,1000,100,34,2.5,0.148 +2013,4,3,3,30,0,0,0,18,19,1000,99.84,22.200000000000003,3.3000000000000003,0.148 +2013,4,3,4,30,0,0,0,18,18,1000,100,20.5,3.9000000000000004,0.148 +2013,4,3,5,30,0,0,0,18,18,1000,100,19.900000000000002,4.2,0.148 +2013,4,3,6,30,10,9,9,17,18,1010,99.19,20.400000000000002,4.7,0.148 +2013,4,3,7,30,0,9,9,17,20,1010,86.64,24.6,5.1000000000000005,0.148 +2013,4,3,8,30,0,35,35,17,22,1010,77.51,29.1,5.2,0.148 +2013,4,3,9,30,21,244,258,18,23,1010,73.76,33.300000000000004,5,0.148 +2013,4,3,10,30,20,293,310,17,24,1010,68.87,35.300000000000004,4.7,0.148 +2013,4,3,11,30,54,408,456,17,25,1010,63.82,37.2,4.5,0.148 +2013,4,3,12,30,20,334,353,17,26,1010,59.07,41,4.3,0.148 +2013,4,3,13,30,30,364,391,17,27,1010,54.59,44.5,3.9000000000000004,0.148 +2013,4,3,14,30,742,192,797,16,26,1010,56.94,47.7,3.2,0.148 +2013,4,3,15,30,282,306,498,16,25,1010,59.5,40,2.8000000000000003,0.148 +2013,4,3,16,30,230,211,326,16,24,1010,62.410000000000004,13.700000000000001,3.4000000000000004,0.148 +2013,4,3,17,30,362,106,210,15,21,1010,73.07000000000001,1.6,4.6000000000000005,0.148 +2013,4,3,18,30,41,20,23,15,19,1010,77.86,357.90000000000003,5.9,0.148 +2013,4,3,19,30,0,0,0,13,17,1010,81.33,355.6,6.6000000000000005,0.148 +2013,4,3,20,30,0,0,0,12,15,1010,86.06,356.90000000000003,6.5,0.148 +2013,4,3,21,30,0,0,0,12,15,1010,83.25,1.1,5.9,0.148 +2013,4,3,22,30,0,0,0,11,15,1010,81.66,4.3,5.4,0.148 +2013,4,3,23,30,0,0,0,11,14,1010,84.57000000000001,4.9,5.2,0.148 +2013,4,4,0,30,0,0,0,10,13,1010,86.66,1.4000000000000001,5.1000000000000005,0.148 +2013,4,4,1,30,0,0,0,10,13,1010,83.34,356.1,4.7,0.148 +2013,4,4,2,30,0,0,0,9,12,1010,86.57000000000001,349.6,4.2,0.148 +2013,4,4,3,30,0,0,0,9,12,1010,85.47,340.1,3.8000000000000003,0.148 +2013,4,4,4,30,0,0,0,9,11,1010,90.61,332.70000000000005,3.6,0.148 +2013,4,4,5,30,0,0,0,9,11,1010,89.34,328.6,3.8000000000000003,0.148 +2013,4,4,6,30,45,14,16,9,12,1020,87.91,326.90000000000003,4.5,0.148 +2013,4,4,7,30,0,36,36,8,14,1020,74.68,329.20000000000005,5.300000000000001,0.148 +2013,4,4,8,30,5,159,162,7,16,1020,62.34,330.70000000000005,5.9,0.148 +2013,4,4,9,30,17,240,251,7,18,1020,51.85,332.6,6.1000000000000005,0.148 +2013,4,4,10,30,875,138,843,6,20,1020,43.19,334.70000000000005,6.2,0.148 +2013,4,4,11,30,913,139,958,5,21,1020,36.550000000000004,336.20000000000005,6.1000000000000005,0.148 +2013,4,4,12,30,926,140,1000,5,22,1010,33.6,338,5.9,0.148 +2013,4,4,13,30,926,134,969,5,23,1010,31.32,339.90000000000003,5.6000000000000005,0.148 +2013,4,4,14,30,908,125,867,5,24,1010,29.45,341.90000000000003,5.300000000000001,0.148 +2013,4,4,15,30,863,114,700,5,24,1010,29.490000000000002,344.5,5,0.148 +2013,4,4,16,30,772,99,484,5,23,1010,31.39,347.5,4.5,0.148 +2013,4,4,17,30,585,75,244,5,21,1010,35.83,352.90000000000003,3.3000000000000003,0.148 +2013,4,4,18,30,154,22,32,6,18,1010,48.34,8.1,2.4000000000000004,0.148 +2013,4,4,19,30,0,0,0,7,16,1010,57.81,30.5,2.5,0.148 +2013,4,4,20,30,0,0,0,8,16,1010,64.24,46.5,3,0.148 +2013,4,4,21,30,0,0,0,8,15,1020,71.76,49.900000000000006,3.6,0.148 +2013,4,4,22,30,0,0,0,9,14,1020,78.21000000000001,46,4,0.148 +2013,4,4,23,30,0,0,0,9,13,1020,78.79,43.900000000000006,4.1000000000000005,0.148 +2013,4,5,0,30,0,0,0,9,12,1020,83.73,42.800000000000004,4,0.148 +2013,4,5,1,30,0,0,0,9,11,1020,88.22,44.800000000000004,3.7,0.148 +2013,4,5,2,30,0,0,0,8,11,1020,92.59,44.5,3.3000000000000003,0.148 +2013,4,5,3,30,0,0,0,8,10,1020,91.25,39.7,3.1,0.148 +2013,4,5,4,30,0,0,0,8,9,1020,96.56,33.1,2.9000000000000004,0.148 +2013,4,5,5,30,0,0,0,8,9,1020,95.42,28.1,2.9000000000000004,0.148 +2013,4,5,6,30,105,17,21,8,11,1020,88.05,28.6,3.4000000000000004,0.148 +2013,4,5,7,30,559,75,225,7,13,1020,69.59,33,3.6,0.148 +2013,4,5,8,30,749,104,465,6,15,1020,58.74,36.9,3.3000000000000003,0.148 +2013,4,5,9,30,848,121,685,6,18,1020,51.620000000000005,42.2,2.9000000000000004,0.148 +2013,4,5,10,30,898,132,858,6,20,1020,42.660000000000004,48.900000000000006,2.5,0.148 +2013,4,5,11,30,917,143,967,6,21,1020,39.76,56.6,2.1,0.148 +2013,4,5,12,30,581,352,893,6,22,1020,37.14,65.8,2,0.148 +2013,4,5,13,30,611,319,872,6,23,1020,35.18,75.4,2.1,0.148 +2013,4,5,14,30,854,158,857,6,24,1010,33.34,85.30000000000001,2.5,0.148 +2013,4,5,15,30,701,165,643,6,23,1010,35.2,92.4,3.1,0.148 +2013,4,5,16,30,466,168,401,6,22,1010,37.19,96.7,3.7,0.148 +2013,4,5,17,30,457,81,214,7,20,1010,45.910000000000004,101.10000000000001,3.9000000000000004,0.148 +2013,4,5,18,30,73,23,28,8,17,1010,57.64,107.9,4,0.148 +2013,4,5,19,30,0,0,0,10,15,1010,72.19,112.4,4.1000000000000005,0.148 +2013,4,5,20,30,0,0,0,11,15,1010,77.26,115.80000000000001,3.9000000000000004,0.148 +2013,4,5,21,30,0,0,0,11,15,1010,80.7,124.2,3.6,0.148 +2013,4,5,22,30,0,0,0,12,15,1010,83.81,132.3,3.5,0.148 +2013,4,5,23,30,0,0,0,12,15,1010,87.04,141.70000000000002,3.4000000000000004,0.148 +2013,4,6,0,30,0,0,0,13,16,1010,90.26,148.3,3.3000000000000003,0.148 +2013,4,6,1,30,0,0,0,13,15,1010,93.3,153,3.2,0.148 +2013,4,6,2,30,0,0,0,14,15,1010,95.92,155.4,3.1,0.148 +2013,4,6,3,30,0,0,0,14,16,1010,97.98,156,3,0.148 +2013,4,6,4,30,0,0,0,14,16,1010,93.2,157.20000000000002,3,0.148 +2013,4,6,5,30,0,0,0,15,16,1010,94.14,158.9,3.6,0.148 +2013,4,6,6,30,0,8,8,15,18,1010,83.63,155.4,4.800000000000001,0.148 +2013,4,6,7,30,157,104,147,15,20,1010,73.12,152.5,6.2,0.148 +2013,4,6,8,30,406,174,371,14,21,1010,65.56,154,6.9,0.148 +2013,4,6,9,30,693,172,636,14,23,1010,61.02,151.5,6.5,0.148 +2013,4,6,10,30,760,187,803,14,24,1010,54.06,154.5,5.800000000000001,0.148 +2013,4,6,11,30,799,191,912,14,25,1010,50.79,161.20000000000002,5.300000000000001,0.148 +2013,4,6,12,30,792,208,947,14,26,1010,47.660000000000004,163.5,5.1000000000000005,0.148 +2013,4,6,13,30,795,197,918,13,27,1010,44.32,161.3,4.9,0.148 +2013,4,6,14,30,778,181,820,13,27,1010,43.35,155.4,5,0.148 +2013,4,6,15,30,726,163,659,13,26,1010,45.06,149,5.1000000000000005,0.148 +2013,4,6,16,30,625,138,452,13,25,1010,47.67,143.8,5.4,0.148 +2013,4,6,17,30,433,99,225,13,23,1010,54.96,139.70000000000002,5.6000000000000005,0.148 +2013,4,6,18,30,67,25,30,14,21,1010,66.16,135.1,5.6000000000000005,0.167 +2013,4,6,19,30,0,0,0,15,19,1010,81.82000000000001,133.4,5.2,0.167 +2013,4,6,20,30,0,0,0,16,19,1010,86.48,135.3,4.800000000000001,0.167 +2013,4,6,21,30,0,0,0,17,19,1010,94.16,140.20000000000002,4.4,0.167 +2013,4,6,22,30,0,0,0,17,18,1010,95.12,144.70000000000002,4.1000000000000005,0.167 +2013,4,6,23,30,0,0,0,17,18,1010,95.84,148,4.1000000000000005,0.167 +2013,4,7,0,30,0,0,0,17,18,1010,96.4,150.6,4.2,0.167 +2013,4,7,1,30,0,0,0,17,18,1010,96.84,153,4.1000000000000005,0.167 +2013,4,7,2,30,0,0,0,17,17,1010,100,155,3.9000000000000004,0.167 +2013,4,7,3,30,0,0,0,17,17,1010,100,154.4,3.5,0.167 +2013,4,7,4,30,0,0,0,17,17,1010,100,151.1,3.5,0.167 +2013,4,7,5,30,0,0,0,17,17,1010,100,150.3,3.7,0.167 +2013,4,7,6,30,58,19,21,17,19,1010,99.67,151.4,4.6000000000000005,0.167 +2013,4,7,7,30,461,87,215,17,21,1010,81.86,155.5,5.7,0.167 +2013,4,7,8,30,660,122,445,17,23,1010,69.97,158.9,6.1000000000000005,0.167 +2013,4,7,9,30,768,140,657,16,25,1010,60.15,157.4,6.1000000000000005,0.167 +2013,4,7,10,30,186,403,555,16,26,1010,55.52,154.3,6.1000000000000005,0.167 +2013,4,7,11,30,65,426,485,16,27,1010,51.52,150.5,6.1000000000000005,0.167 +2013,4,7,12,30,244,462,691,16,28,1010,48.28,146.3,6.1000000000000005,0.167 +2013,4,7,13,30,814,187,927,16,28,1000,48.38,142.3,6.1000000000000005,0.167 +2013,4,7,14,30,779,181,823,16,27,1000,51.730000000000004,138.6,6.1000000000000005,0.167 +2013,4,7,15,30,640,191,630,16,26,1000,55.38,136.4,6.1000000000000005,0.167 +2013,4,7,16,30,604,145,450,16,25,1000,59.65,134.20000000000002,6.2,0.167 +2013,4,7,17,30,311,101,192,16,23,1000,68.77,133.6,6.1000000000000005,0.167 +2013,4,7,18,30,23,24,26,17,21,1000,79.88,134.5,5.6000000000000005,0.167 +2013,4,7,19,30,0,0,0,18,21,1000,88.73,134.9,5.4,0.167 +2013,4,7,20,30,0,0,0,18,20,1010,90.67,140.6,5.5,0.167 +2013,4,7,21,30,0,0,0,18,20,1010,91.28,146.6,5.4,0.167 +2013,4,7,22,30,0,0,0,18,20,1000,91.37,153.20000000000002,5.5,0.167 +2013,4,7,23,30,0,0,0,18,20,1000,91.7,159.20000000000002,5.7,0.167 +2013,4,8,0,30,0,0,0,18,21,1000,92.44,163.8,5.9,0.167 +2013,4,8,1,30,0,0,0,18,20,1000,93.22,165.70000000000002,5.800000000000001,0.167 +2013,4,8,2,30,0,0,0,19,20,1000,94.22,165,5.300000000000001,0.167 +2013,4,8,3,30,0,0,0,19,20,1000,95.60000000000001,159.9,4.7,0.167 +2013,4,8,4,30,0,0,0,19,20,1000,96.44,153.60000000000002,4.2,0.167 +2013,4,8,5,30,0,0,0,19,20,1000,96.76,150.20000000000002,3.6,0.167 +2013,4,8,6,30,16,15,16,19,20,1000,96.86,148,3.8000000000000003,0.167 +2013,4,8,7,30,0,86,86,19,22,1000,85.67,148.9,4.9,0.167 +2013,4,8,8,30,0,114,114,19,24,1000,75.25,155.20000000000002,6,0.167 +2013,4,8,9,30,61,296,337,19,26,1000,70.05,157.5,6.5,0.167 +2013,4,8,10,30,8,211,218,19,27,1000,62.01,158.3,6.7,0.167 +2013,4,8,11,30,14,281,294,19,28,1000,58.43,158.3,6.6000000000000005,0.167 +2013,4,8,12,30,13,268,281,19,29,1000,54.95,157.70000000000002,6.5,0.167 +2013,4,8,13,30,34,369,401,18,29,1000,54.550000000000004,154.9,6.5,0.167 +2013,4,8,14,30,666,242,791,18,29,1000,54.22,148.9,6.7,0.167 +2013,4,8,15,30,537,253,622,18,28,1000,57.81,141.8,7,0.167 +2013,4,8,16,30,413,212,421,19,26,1000,66.4,135.4,7.1000000000000005,0.167 +2013,4,8,17,30,236,137,207,19,24,1000,76.77,131.9,6.9,0.167 +2013,4,8,18,30,18,22,23,20,22,1000,88.72,131,6.2,0.167 +2013,4,8,19,30,0,0,0,20,21,1000,96.55,129.8,5.7,0.167 +2013,4,8,20,30,0,0,0,20,21,1000,97.98,130.4,5.800000000000001,0.167 +2013,4,8,21,30,0,0,0,20,21,1000,98.64,135.20000000000002,6,0.167 +2013,4,8,22,30,0,0,0,20,21,1000,98.9,142.9,6,0.167 +2013,4,8,23,30,0,0,0,20,21,1000,98.8,148.70000000000002,6,0.167 +2013,4,9,0,30,0,0,0,20,21,1000,98.51,151.6,6.1000000000000005,0.167 +2013,4,9,1,30,0,0,0,20,21,1000,98.51,150.5,6,0.167 +2013,4,9,2,30,0,0,0,20,21,1000,98.59,146.3,5.800000000000001,0.167 +2013,4,9,3,30,0,0,0,20,21,1000,100,144.4,5.6000000000000005,0.167 +2013,4,9,4,30,0,0,0,20,21,1000,100,144.3,5.300000000000001,0.167 +2013,4,9,5,30,0,0,0,20,21,1000,100,146.5,4.9,0.167 +2013,4,9,6,30,16,16,17,20,21,1000,98.3,150.3,5.2,0.167 +2013,4,9,7,30,0,94,94,20,23,1000,86.86,156.20000000000002,6.300000000000001,0.167 +2013,4,9,8,30,537,166,433,20,26,1000,71.63,167,6.9,0.167 +2013,4,9,9,30,679,185,647,20,28,1000,62.95,174.4,6.7,0.167 +2013,4,9,10,30,761,193,816,20,31,1000,52.17,177.10000000000002,6.300000000000001,0.167 +2013,4,9,11,30,802,195,925,19,33,1000,44.89,175.4,5.800000000000001,0.167 +2013,4,9,12,30,817,194,962,18,34,1000,40.63,168.3,5.5,0.167 +2013,4,9,13,30,800,195,925,18,34,1000,39.480000000000004,158.4,5.6000000000000005,0.167 +2013,4,9,14,30,763,190,820,18,33,1000,41.980000000000004,148.4,6,0.167 +2013,4,9,15,30,636,206,644,18,32,1000,45.79,141.5,6.6000000000000005,0.167 +2013,4,9,16,30,514,177,439,19,29,1000,57.07,136.9,7.1000000000000005,0.167 +2013,4,9,17,30,314,123,217,20,26,1000,72.65,135.70000000000002,7.300000000000001,0.167 +2013,4,9,18,30,27,23,25,21,24,1000,91.86,136.20000000000002,7.1000000000000005,0.167 +2013,4,9,19,30,0,0,0,21,23,1000,99.64,137.4,7,0.167 +2013,4,9,20,30,0,0,0,21,22,1000,99.86,140.70000000000002,7.2,0.167 +2013,4,9,21,30,0,0,0,21,22,1000,99.7,144,7.4,0.167 +2013,4,9,22,30,0,0,0,21,22,1000,99.42,145.5,7.4,0.167 +2013,4,9,23,30,0,0,0,21,22,1000,99.06,147.6,7.2,0.167 +2013,4,10,0,30,0,0,0,21,22,1000,98.79,149.1,7,0.167 +2013,4,10,1,30,0,0,0,21,22,1000,98.60000000000001,147.3,6.9,0.167 +2013,4,10,2,30,0,0,0,21,22,1000,98.4,145.6,6.800000000000001,0.167 +2013,4,10,3,30,0,0,0,21,22,1000,98.15,146.8,6.5,0.167 +2013,4,10,4,30,0,0,0,21,22,1000,97.9,150.20000000000002,6,0.167 +2013,4,10,5,30,0,0,0,21,22,1000,97.74000000000001,158.20000000000002,5.6000000000000005,0.167 +2013,4,10,6,30,0,9,9,21,22,1000,97.71000000000001,171,5.5,0.167 +2013,4,10,7,30,0,61,61,21,24,1000,86.72,180.60000000000002,5.7,0.167 +2013,4,10,8,30,0,107,107,20,27,1000,69.73,192.4,5.7,0.167 +2013,4,10,9,30,0,94,94,19,29,1000,56,208.10000000000002,5.1000000000000005,0.167 +2013,4,10,10,30,0,139,139,17,31,1000,43.13,227,4,0.167 +2013,4,10,11,30,21,330,350,15,32,1000,37,249.8,3.2,0.167 +2013,4,10,12,30,342,434,757,15,33,1000,34.730000000000004,272.40000000000003,2.9000000000000004,0.167 +2013,4,10,13,30,779,209,921,15,32,1000,38.050000000000004,297.3,3,0.167 +2013,4,10,14,30,19,293,309,16,30,1000,44.26,323.6,3.7,0.167 +2013,4,10,15,30,90,318,380,16,27,1000,52.660000000000004,347.8,5,0.167 +2013,4,10,16,30,22,190,201,15,24,1000,59.63,2.8000000000000003,6.6000000000000005,0.167 +2013,4,10,17,30,341,121,222,14,21,1000,65.2,6.1000000000000005,7.5,0.167 +2013,4,10,18,30,47,26,30,12,19,1000,65.45,6.6000000000000005,7.800000000000001,0.167 +2013,4,10,19,30,0,0,0,10,17,1000,66.62,4.7,7.7,0.167 +2013,4,10,20,30,0,0,0,9,15,1000,71.69,9.8,7.6000000000000005,0.167 +2013,4,10,21,30,0,0,0,9,14,1000,74.68,14.3,7.2,0.167 +2013,4,10,22,30,0,0,0,9,13,1000,77.29,11.200000000000001,6.9,0.167 +2013,4,10,23,30,0,0,0,8,13,1010,74.02,2.7,6.9,0.167 +2013,4,11,0,30,0,0,0,7,12,1010,75.91,358.3,7.1000000000000005,0.167 +2013,4,11,1,30,0,0,0,7,12,1010,74.64,357.70000000000005,7.300000000000001,0.167 +2013,4,11,2,30,0,0,0,7,12,1010,79.3,359.3,7.2,0.167 +2013,4,11,3,30,0,0,0,7,11,1010,78.12,2.1,7.1000000000000005,0.167 +2013,4,11,4,30,0,0,0,6,11,1010,75.60000000000001,7.2,6.7,0.167 +2013,4,11,5,30,0,0,0,6,11,1010,73.12,13.200000000000001,6.2,0.167 +2013,4,11,6,30,63,25,29,5,11,1010,70.56,16.6,5.9,0.167 +2013,4,11,7,30,441,99,228,4,13,1010,58.01,19.8,5.7,0.167 +2013,4,11,8,30,650,134,461,4,15,1010,48.28,17.1,5.5,0.167 +2013,4,11,9,30,778,147,681,4,17,1010,42.38,7.4,5.300000000000001,0.167 +2013,4,11,10,30,853,153,857,4,19,1010,38.78,4.9,4.7,0.167 +2013,4,11,11,30,895,154,972,5,21,1010,35.74,7.2,3.9000000000000004,0.167 +2013,4,11,12,30,909,155,1014,5,23,1010,34.33,5.6000000000000005,3.1,0.167 +2013,4,11,13,30,911,148,983,5,24,1000,32.31,0.9,2.3000000000000003,0.167 +2013,4,11,14,30,890,139,878,6,24,1000,31.38,359.6,1.8,0.167 +2013,4,11,15,30,791,151,698,6,25,1000,31.8,18,1.7000000000000002,0.167 +2013,4,11,16,30,701,126,485,5,24,1000,31.04,40.800000000000004,1.8,0.167 +2013,4,11,17,30,524,91,248,5,22,1000,34.88,65.5,2,0.167 +2013,4,11,18,30,132,28,38,8,19,1000,55.26,92.7,2.6,0.167 +2013,4,11,19,30,0,0,0,9,17,1000,63.74,108.2,3.3000000000000003,0.167 +2013,4,11,20,30,0,0,0,9,16,1000,66.84,115,3.3000000000000003,0.167 +2013,4,11,21,30,0,0,0,10,15,1010,76.25,116.60000000000001,2.8000000000000003,0.167 +2013,4,11,22,30,0,0,0,11,14,1010,85.46000000000001,117.10000000000001,2.3000000000000003,0.167 +2013,4,11,23,30,0,0,0,12,14,1010,87.99,120.80000000000001,2.1,0.167 +2013,4,12,0,30,0,0,0,12,14,1010,89.97,128.20000000000002,1.9000000000000001,0.167 +2013,4,12,1,30,0,0,0,12,14,1010,91.57000000000001,139.20000000000002,1.7000000000000002,0.167 +2013,4,12,2,30,0,0,0,12,14,1010,92.81,151.5,1.5,0.167 +2013,4,12,3,30,0,0,0,13,14,1010,93.8,156.4,1.4000000000000001,0.167 +2013,4,12,4,30,0,0,0,13,14,1010,94.74,153.5,1.2000000000000002,0.167 +2013,4,12,5,30,0,0,0,13,15,1010,95.71000000000001,140.20000000000002,1.1,0.167 +2013,4,12,6,30,107,26,34,13,16,1010,85.51,109.30000000000001,1.5,0.167 +2013,4,12,7,30,503,90,239,13,18,1010,74.96000000000001,92.5,2.4000000000000004,0.167 +2013,4,12,8,30,692,123,473,12,21,1010,59.51,93.10000000000001,3.2,0.167 +2013,4,12,9,30,602,204,619,12,23,1010,50.97,89.80000000000001,3.6,0.167 +2013,4,12,10,30,849,153,856,11,25,1010,43.51,89.7,3.9000000000000004,0.167 +2013,4,12,11,30,473,379,813,10,26,1010,38.46,92.9,4.3,0.167 +2013,4,12,12,30,876,168,998,9,27,1010,34.07,96.9,4.800000000000001,0.167 +2013,4,12,13,30,862,168,960,9,26,1010,35.39,100,5.300000000000001,0.167 +2013,4,12,14,30,827,164,852,9,25,1010,37.87,102.4,5.6000000000000005,0.167 +2013,4,12,15,30,635,195,636,9,24,1010,40.96,104.80000000000001,5.7,0.167 +2013,4,12,16,30,670,130,474,10,23,1010,45.71,106.30000000000001,5.6000000000000005,0.167 +2013,4,12,17,30,482,82,228,11,21,1010,56.38,107.5,5.300000000000001,0.167 +2013,4,12,18,30,103,29,36,13,19,1010,70.87,110.10000000000001,4.4,0.167 +2013,4,12,19,30,0,0,0,15,18,1010,83.43,113,3.4000000000000004,0.167 +2013,4,12,20,30,0,0,0,16,18,1010,94.33,117.10000000000001,2.9000000000000004,0.167 +2013,4,12,21,30,0,0,0,16,17,1010,97.05,123.7,2.7,0.167 +2013,4,12,22,30,0,0,0,16,17,1010,98.02,131.1,2.5,0.167 +2013,4,12,23,30,0,0,0,16,17,1010,98.39,135.20000000000002,2.5,0.167 +2013,4,13,0,30,0,0,0,16,16,1010,100,136.20000000000002,2.4000000000000004,0.167 +2013,4,13,1,30,0,0,0,16,16,1010,100,136.1,2.3000000000000003,0.167 +2013,4,13,2,30,0,0,0,16,16,1010,100,134.5,2.1,0.167 +2013,4,13,3,30,0,0,0,16,16,1010,100,128.9,2.2,0.167 +2013,4,13,4,30,0,0,0,16,16,1010,100,118.80000000000001,2.4000000000000004,0.167 +2013,4,13,5,30,0,0,0,16,16,1010,100,112.9,2.6,0.167 +2013,4,13,6,30,79,28,33,17,18,1010,94.17,111.2,3.6,0.167 +2013,4,13,7,30,429,102,230,16,21,1010,76.56,112.60000000000001,4.800000000000001,0.167 +2013,4,13,8,30,620,141,458,15,23,1010,61.83,118.7,5.300000000000001,0.167 +2013,4,13,9,30,727,164,667,14,24,1010,54.7,118.60000000000001,5.5,0.167 +2013,4,13,10,30,782,181,831,13,25,1010,49.01,117.10000000000001,5.6000000000000005,0.167 +2013,4,13,11,30,803,195,933,13,26,1010,44.72,116.60000000000001,5.800000000000001,0.167 +2013,4,13,12,30,790,213,963,12,27,1000,41.49,116,5.800000000000001,0.167 +2013,4,13,13,30,771,216,926,12,27,1000,44.02,114.80000000000001,5.7,0.167 +2013,4,13,14,30,735,210,822,13,26,1000,44.58,112.60000000000001,5.6000000000000005,0.167 +2013,4,13,15,30,279,315,509,13,25,1000,47.85,110.7,5.4,0.167 +2013,4,13,16,30,0,145,145,13,24,1000,51.93,109,5.1000000000000005,0.167 +2013,4,13,17,30,392,112,232,14,22,1000,60.79,107.2,4.6000000000000005,0.167 +2013,4,13,18,30,68,30,35,14,20,1000,72.67,104,3.8000000000000003,0.167 +2013,4,13,19,30,0,0,0,16,19,1000,83.09,96.80000000000001,3.3000000000000003,0.167 +2013,4,13,20,30,0,0,0,16,19,1000,87.46000000000001,90.5,3,0.167 +2013,4,13,21,30,0,0,0,17,18,1000,95.79,88.30000000000001,2.5,0.167 +2013,4,13,22,30,0,0,0,17,18,1000,97.45,90.60000000000001,2,0.167 +2013,4,13,23,30,0,0,0,17,18,1000,100,98.80000000000001,1.8,0.167 +2013,4,14,0,30,0,0,0,17,17,1000,100,106.60000000000001,1.6,0.167 +2013,4,14,1,30,0,0,0,17,17,1000,100,110.4,1.4000000000000001,0.167 +2013,4,14,2,30,0,0,0,17,17,1000,100,112.10000000000001,1.4000000000000001,0.167 +2013,4,14,3,30,0,0,0,17,17,1000,100,115.7,1.4000000000000001,0.167 +2013,4,14,4,30,0,0,0,17,17,1000,100,120.60000000000001,1.4000000000000001,0.167 +2013,4,14,5,30,0,0,0,17,17,1000,100,127.4,1.2000000000000002,0.167 +2013,4,14,6,30,71,29,35,18,19,1000,99.25,139.9,1.7000000000000002,0.167 +2013,4,14,7,30,423,103,231,18,22,1000,82.3,169,2.7,0.167 +2013,4,14,8,30,610,143,456,18,25,1000,69.33,196.4,3.3000000000000003,0.167 +2013,4,14,9,30,717,166,664,19,27,1000,62.27,201.70000000000002,3.4000000000000004,0.167 +2013,4,14,10,30,788,175,831,19,29,1000,55.1,194.4,3.3000000000000003,0.167 +2013,4,14,11,30,51,419,466,18,31,1000,48.06,184.3,3.1,0.167 +2013,4,14,12,30,836,180,976,18,32,1000,43.85,173,3,0.167 +2013,4,14,13,30,831,175,941,17,33,1000,39.85,160.3,3.2,0.167 +2013,4,14,14,30,803,167,837,17,32,1000,41.01,148.9,3.6,0.167 +2013,4,14,15,30,722,165,668,17,31,1000,43.15,140.6,4.2,0.167 +2013,4,14,16,30,626,139,462,17,30,1000,46.410000000000004,134.1,4.9,0.167 +2013,4,14,17,30,451,99,237,18,27,1000,58.49,129.9,5.6000000000000005,0.167 +2013,4,14,18,30,105,30,39,19,24,1000,76.3,130.1,5.9,0.17200000000000001 +2013,4,14,19,30,0,0,0,20,22,1000,91.48,133.70000000000002,5.6000000000000005,0.17200000000000001 +2013,4,14,20,30,0,0,0,21,22,1000,94.17,141.8,5.300000000000001,0.17200000000000001 +2013,4,14,21,30,0,0,0,21,21,1000,100,149.70000000000002,5.1000000000000005,0.17200000000000001 +2013,4,14,22,30,0,0,0,21,21,1000,100,154,5,0.17200000000000001 +2013,4,14,23,30,0,0,0,21,21,1000,100,156.8,5,0.17200000000000001 +2013,4,15,0,30,0,0,0,21,21,1000,100,159.9,4.9,0.17200000000000001 +2013,4,15,1,30,0,0,0,21,21,1000,100,164.60000000000002,4.800000000000001,0.17200000000000001 +2013,4,15,2,30,0,0,0,20,21,1000,100,169,4.5,0.17200000000000001 +2013,4,15,3,30,0,0,0,20,21,1000,100,167.9,4.5,0.17200000000000001 +2013,4,15,4,30,0,0,0,21,21,1000,100,166.70000000000002,4.9,0.17200000000000001 +2013,4,15,5,30,0,0,0,21,21,1000,100,165.9,5.1000000000000005,0.17200000000000001 +2013,4,15,6,30,0,18,18,21,22,1000,96.14,163.9,5.4,0.17200000000000001 +2013,4,15,7,30,190,117,175,21,24,1000,84.19,162.20000000000002,5.7,0.17200000000000001 +2013,4,15,8,30,273,214,355,20,25,1000,75.77,162.20000000000002,5.800000000000001,0.17200000000000001 +2013,4,15,9,30,327,305,533,19,27,1000,64.84,160.3,5.6000000000000005,0.17200000000000001 +2013,4,15,10,30,497,320,735,19,28,1000,58.74,159.5,5.5,0.17200000000000001 +2013,4,15,11,30,147,472,608,18,29,1000,52.85,158.5,5.300000000000001,0.17200000000000001 +2013,4,15,12,30,788,221,972,17,30,1000,47.79,155.3,5.1000000000000005,0.17200000000000001 +2013,4,15,13,30,787,212,939,17,31,1000,46.02,151.6,5.1000000000000005,0.17200000000000001 +2013,4,15,14,30,765,197,837,16,31,1000,42.45,147.3,5.2,0.17200000000000001 +2013,4,15,15,30,711,177,674,16,30,1000,44.93,143.6,5.2,0.17200000000000001 +2013,4,15,16,30,618,147,467,17,28,1000,51.94,138.6,5.2,0.17200000000000001 +2013,4,15,17,30,448,102,240,18,26,1000,62.13,131.20000000000002,5.1000000000000005,0.17200000000000001 +2013,4,15,18,30,112,30,39,19,24,1000,76.65,123.80000000000001,4.7,0.17200000000000001 +2013,4,15,19,30,0,0,0,21,22,1000,94.26,117.2,4.3,0.17200000000000001 +2013,4,15,20,30,0,0,0,21,22,1000,97.67,115.80000000000001,4.2,0.17200000000000001 +2013,4,15,21,30,0,0,0,21,22,1000,98.8,120.4,4.1000000000000005,0.17200000000000001 +2013,4,15,22,30,0,0,0,21,22,1000,99.44,129,4,0.17200000000000001 +2013,4,15,23,30,0,0,0,21,21,1000,100,136.6,4,0.17200000000000001 +2013,4,16,0,30,0,0,0,21,21,1000,100,142.20000000000002,4.1000000000000005,0.17200000000000001 +2013,4,16,1,30,0,0,0,21,21,1000,100,145.9,4.3,0.17200000000000001 +2013,4,16,2,30,0,0,0,21,21,1000,100,148.6,4.3,0.17200000000000001 +2013,4,16,3,30,0,0,0,21,21,1000,100,147.3,4.1000000000000005,0.17200000000000001 +2013,4,16,4,30,0,0,0,21,21,1000,100,141.6,4,0.17200000000000001 +2013,4,16,5,30,0,0,0,21,21,1000,100,142.3,4.1000000000000005,0.17200000000000001 +2013,4,16,6,30,0,15,15,22,22,1000,100,138,4.6000000000000005,0.17200000000000001 +2013,4,16,7,30,0,33,33,22,24,1000,88.65,135,5.5,0.17200000000000001 +2013,4,16,8,30,348,202,383,21,25,1000,81.62,137.4,5.800000000000001,0.17200000000000001 +2013,4,16,9,30,248,323,497,21,26,1000,80.38,134.20000000000002,5.9,0.17200000000000001 +2013,4,16,10,30,295,398,646,21,26,1000,75.02,131,5.9,0.17200000000000001 +2013,4,16,11,30,112,465,569,21,27,1000,69.95,131.1,5.7,0.17200000000000001 +2013,4,16,12,30,228,488,706,20,28,1000,65.03,139.20000000000002,5.4,0.17200000000000001 +2013,4,16,13,30,27,362,387,20,27,1000,68.46000000000001,136.9,5.5,0.17200000000000001 +2013,4,16,14,30,21,307,325,20,26,1000,73.65,126.10000000000001,6,0.17200000000000001 +2013,4,16,15,30,36,284,310,21,25,1000,79.96000000000001,123.10000000000001,6.2,0.17200000000000001 +2013,4,16,16,30,0,124,124,21,24,1000,86.62,122.80000000000001,6.300000000000001,0.17200000000000001 +2013,4,16,17,30,0,80,80,21,23,1000,93.84,116.80000000000001,6.1000000000000005,0.17200000000000001 +2013,4,16,18,30,0,10,10,22,23,1000,95.62,115.80000000000001,5.7,0.17200000000000001 +2013,4,16,19,30,0,0,0,22,23,1000,100,119,4.7,0.17200000000000001 +2013,4,16,20,30,0,0,0,22,23,1000,100,122.7,3.7,0.17200000000000001 +2013,4,16,21,30,0,0,0,22,23,1000,100,129.8,3.6,0.17200000000000001 +2013,4,16,22,30,0,0,0,22,23,1000,100,133.5,3.8000000000000003,0.17200000000000001 +2013,4,16,23,30,0,0,0,22,23,1000,100,139.4,3.9000000000000004,0.17200000000000001 +2013,4,17,0,30,0,0,0,22,22,1000,100,144.3,3.8000000000000003,0.17200000000000001 +2013,4,17,1,30,0,0,0,22,22,1000,100,145.8,3.8000000000000003,0.17200000000000001 +2013,4,17,2,30,0,0,0,22,22,1000,100,144.3,3.8000000000000003,0.17200000000000001 +2013,4,17,3,30,0,0,0,22,22,1000,100,140,3.9000000000000004,0.17200000000000001 +2013,4,17,4,30,0,0,0,22,22,1000,100,133.6,4.1000000000000005,0.17200000000000001 +2013,4,17,5,30,0,0,0,22,22,1000,100,126.7,4.4,0.17200000000000001 +2013,4,17,6,30,36,25,28,22,23,1000,95.41,122,5,0.17200000000000001 +2013,4,17,7,30,257,135,215,22,25,1000,84.85000000000001,125,5.800000000000001,0.17200000000000001 +2013,4,17,8,30,5,168,171,21,26,1000,78.52,136.70000000000002,6.300000000000001,0.17200000000000001 +2013,4,17,9,30,3,177,179,21,28,1000,68.15,144.5,6.4,0.17200000000000001 +2013,4,17,10,30,18,294,310,21,29,1000,63.81,148.4,6.4,0.17200000000000001 +2013,4,17,11,30,134,472,596,21,30,1000,60.32,148.9,6.5,0.17200000000000001 +2013,4,17,12,30,418,419,819,21,31,1000,57.11,148.70000000000002,6.4,0.17200000000000001 +2013,4,17,13,30,401,408,780,21,31,1000,56.99,149.3,6.300000000000001,0.17200000000000001 +2013,4,17,14,30,333,388,669,21,31,1000,56.61,146.8,6.4,0.17200000000000001 +2013,4,17,15,30,539,254,633,21,30,1000,59.95,143.5,6.7,0.17200000000000001 +2013,4,17,16,30,297,213,367,21,29,1000,68.37,140.9,6.9,0.17200000000000001 +2013,4,17,17,30,147,122,168,22,27,1000,74.36,138.9,6.7,0.17200000000000001 +2013,4,17,18,30,0,25,25,22,25,1000,86.2,136.70000000000002,6.4,0.17200000000000001 +2013,4,17,19,30,0,0,0,22,24,1000,99.44,134.5,6.4,0.17200000000000001 +2013,4,17,20,30,0,0,0,23,23,1000,100,138.20000000000002,6.5,0.17200000000000001 +2013,4,17,21,30,0,0,0,22,23,1000,99.68,144.20000000000002,6.4,0.17200000000000001 +2013,4,17,22,30,0,0,0,22,23,1000,98.77,147.6,6.1000000000000005,0.17200000000000001 +2013,4,17,23,30,0,0,0,22,23,1000,97.93,147.5,6,0.17200000000000001 +2013,4,18,0,30,0,0,0,22,23,1000,97.25,145.8,5.9,0.17200000000000001 +2013,4,18,1,30,0,0,0,22,23,1000,96.77,144.4,6,0.17200000000000001 +2013,4,18,2,30,0,0,0,22,23,1000,96.47,142.5,6.300000000000001,0.17200000000000001 +2013,4,18,3,30,0,0,0,22,23,1000,100,140.3,6.4,0.17200000000000001 +2013,4,18,4,30,0,0,0,22,23,1000,100,140.20000000000002,5.9,0.17200000000000001 +2013,4,18,5,30,0,0,0,22,23,1000,100,146.1,5.4,0.17200000000000001 +2013,4,18,6,30,0,10,10,22,23,1000,95.98,153.8,5.1000000000000005,0.17200000000000001 +2013,4,18,7,30,0,86,86,22,24,1000,90.91,158.9,5,0.17200000000000001 +2013,4,18,8,30,0,137,137,22,26,1000,80.62,173.4,4.9,0.17200000000000001 +2013,4,18,9,30,0,160,160,22,28,1000,69.97,195.4,4.2,0.17200000000000001 +2013,4,18,10,30,71,395,455,21,31,1000,59.800000000000004,217.8,3,0.17200000000000001 +2013,4,18,11,30,22,345,366,20,31,1000,53.980000000000004,259.1,3,0.17200000000000001 +2013,4,18,12,30,9,203,212,19,30,1000,57,316.90000000000003,4.9,0.17200000000000001 +2013,4,18,13,30,71,445,511,16,27,1000,57.2,344,7.7,0.17200000000000001 +2013,4,18,14,30,223,415,602,12,24,1000,47.11,357.1,9.200000000000001,0.17200000000000001 +2013,4,18,15,30,296,315,523,7,22,1000,39.17,1.7000000000000002,9,0.17200000000000001 +2013,4,18,16,30,486,171,425,4,21,1000,34.94,1.9000000000000001,8.4,0.17200000000000001 +2013,4,18,17,30,264,114,196,3,20,1010,33.21,4.9,7.9,0.17200000000000001 +2013,4,18,18,30,134,32,44,2,19,1010,33.42,8.700000000000001,7.2,0.17200000000000001 +2013,4,18,19,30,0,0,0,2,18,1010,38.96,15.100000000000001,6.6000000000000005,0.17200000000000001 +2013,4,18,20,30,0,0,0,3,17,1010,41.35,20.6,6.4,0.17200000000000001 +2013,4,18,21,30,0,0,0,4,16,1010,46.82,25.3,6.7,0.17200000000000001 +2013,4,18,22,30,0,0,0,4,16,1010,50.71,27.5,7.1000000000000005,0.17200000000000001 +2013,4,18,23,30,0,0,0,4,15,1010,47.94,26.700000000000003,7.5,0.17200000000000001 +2013,4,19,0,30,0,0,0,2,14,1010,47.29,23.700000000000003,7.6000000000000005,0.17200000000000001 +2013,4,19,1,30,0,0,0,2,14,1010,45.57,21.8,7.4,0.17200000000000001 +2013,4,19,2,30,0,0,0,2,13,1010,47.64,21.3,7.2,0.17200000000000001 +2013,4,19,3,30,0,0,0,1,13,1020,46.85,20.700000000000003,7.1000000000000005,0.17200000000000001 +2013,4,19,4,30,0,0,0,1,12,1020,49.230000000000004,18.400000000000002,7.1000000000000005,0.17200000000000001 +2013,4,19,5,30,0,0,0,1,12,1020,48.76,15.8,7,0.17200000000000001 +2013,4,19,6,30,0,3,3,1,12,1020,48.32,13.600000000000001,7,0.17200000000000001 +2013,4,19,7,30,0,9,9,0,14,1020,39.230000000000004,14.9,7.1000000000000005,0.17200000000000001 +2013,4,19,8,30,0,158,158,-1,16,1020,29.93,19.8,7,0.17200000000000001 +2013,4,19,9,30,5,196,200,-3,18,1020,23.740000000000002,23.8,6.6000000000000005,0.17200000000000001 +2013,4,19,10,30,40,358,392,-3,20,1020,19.92,25.5,6,0.17200000000000001 +2013,4,19,11,30,462,386,817,-4,22,1020,18.3,25.700000000000003,5.4,0.17200000000000001 +2013,4,19,12,30,898,165,1027,-4,23,1020,15.84,24.3,4.9,0.17200000000000001 +2013,4,19,13,30,895,159,992,-4,24,1020,14.5,21.8,4.4,0.17200000000000001 +2013,4,19,14,30,875,149,886,-5,24,1020,14.16,19.1,4,0.17200000000000001 +2013,4,19,15,30,821,139,717,-5,24,1020,13.98,18.900000000000002,3.5,0.17200000000000001 +2013,4,19,16,30,745,116,506,-5,23,1010,14.73,21.3,3,0.17200000000000001 +2013,4,19,17,30,593,84,270,-5,21,1010,16.67,29.400000000000002,2.2,0.17200000000000001 +2013,4,19,18,30,232,32,53,-1,18,1020,27.21,54.300000000000004,1.6,0.17200000000000001 +2013,4,19,19,30,0,0,0,1,16,1020,36.730000000000004,89.4,1.7000000000000002,0.17200000000000001 +2013,4,19,20,30,0,0,0,2,15,1020,42.78,111.9,1.8,0.17200000000000001 +2013,4,19,21,30,0,0,0,3,14,1020,50.25,126.9,1.7000000000000002,0.17200000000000001 +2013,4,19,22,30,0,0,0,4,14,1020,58.07,133,1.6,0.17200000000000001 +2013,4,19,23,30,0,0,0,5,13,1020,61.27,131.20000000000002,1.5,0.17200000000000001 +2013,4,20,0,30,0,0,0,5,13,1020,62.2,121.80000000000001,1.4000000000000001,0.17200000000000001 +2013,4,20,1,30,0,0,0,5,13,1020,62.06,109.7,1.4000000000000001,0.17200000000000001 +2013,4,20,2,30,0,0,0,5,12,1020,66.22,103,1.5,0.17200000000000001 +2013,4,20,3,30,0,0,0,5,12,1020,65.71000000000001,96.5,1.7000000000000002,0.17200000000000001 +2013,4,20,4,30,0,0,0,5,11,1020,69.41,88.80000000000001,1.8,0.17200000000000001 +2013,4,20,5,30,0,0,0,5,11,1020,69.49,79.5,1.9000000000000001,0.17200000000000001 +2013,4,20,6,30,287,34,62,5,14,1020,58.120000000000005,75.3,2.7,0.17200000000000001 +2013,4,20,7,30,660,76,288,4,17,1020,44.06,77.2,3.6,0.17200000000000001 +2013,4,20,8,30,813,98,530,2,20,1020,31.92,80.10000000000001,3.7,0.17200000000000001 +2013,4,20,9,30,890,113,745,1,21,1020,27.67,83.7,3.6,0.17200000000000001 +2013,4,20,10,30,931,123,911,0,23,1020,24.88,89.2,3.7,0.17200000000000001 +2013,4,20,11,30,948,130,1015,1,24,1020,23.490000000000002,96.80000000000001,4,0.17200000000000001 +2013,4,20,12,30,938,141,1043,1,24,1010,23.1,105,4.3,0.17200000000000001 +2013,4,20,13,30,924,142,1002,2,24,1010,24.72,110.80000000000001,4.5,0.17200000000000001 +2013,4,20,14,30,892,138,891,3,24,1010,28.22,115.60000000000001,4.5,0.17200000000000001 +2013,4,20,15,30,841,128,721,4,23,1010,32.19,119.9,4.6000000000000005,0.17200000000000001 +2013,4,20,16,30,753,111,506,5,22,1010,36.71,122,4.7,0.17200000000000001 +2013,4,20,17,30,590,83,269,6,20,1010,42.13,122.4,4.5,0.17200000000000001 +2013,4,20,18,30,220,33,54,8,18,1010,52.5,118.30000000000001,4,0.17200000000000001 +2013,4,20,19,30,0,0,0,9,17,1010,62.550000000000004,115.60000000000001,3.7,0.17200000000000001 +2013,4,20,20,30,0,0,0,11,17,1010,68.33,115.30000000000001,3.7,0.17200000000000001 +2013,4,20,21,30,0,0,0,11,17,1010,71.74,117.60000000000001,3.6,0.17200000000000001 +2013,4,20,22,30,0,0,0,12,17,1010,74.33,122,3.6,0.17200000000000001 +2013,4,20,23,30,0,0,0,12,17,1010,76.72,127.80000000000001,3.7,0.17200000000000001 +2013,4,21,0,30,0,0,0,13,17,1010,79.04,132.3,3.8000000000000003,0.17200000000000001 +2013,4,21,1,30,0,0,0,13,17,1010,81.47,135.9,3.8000000000000003,0.17200000000000001 +2013,4,21,2,30,0,0,0,14,16,1010,89.72,140,3.6,0.17200000000000001 +2013,4,21,3,30,0,0,0,14,16,1010,98.2,142.6,3,0.17200000000000001 +2013,4,21,4,30,0,0,0,14,15,1010,99.94,142.70000000000002,2.3000000000000003,0.17200000000000001 +2013,4,21,5,30,0,0,0,15,16,1010,94.42,139.8,1.8,0.17200000000000001 +2013,4,21,6,30,10,33,34,15,18,1010,83.08,137.1,2.3000000000000003,0.17200000000000001 +2013,4,21,7,30,437,115,257,14,20,1010,70.28,140.3,3.4000000000000004,0.17200000000000001 +2013,4,21,8,30,518,165,442,13,22,1010,59.25,142.3,3.8000000000000003,0.17200000000000001 +2013,4,21,9,30,533,248,628,13,24,1010,51.38,140.70000000000002,3.9000000000000004,0.17200000000000001 +2013,4,21,10,30,794,184,858,13,25,1010,47.76,138.8,3.8000000000000003,0.17200000000000001 +2013,4,21,11,30,825,190,961,13,26,1010,44.99,137.1,3.6,0.17200000000000001 +2013,4,21,12,30,812,206,989,13,27,1010,42.39,133.5,3.6,0.17200000000000001 +2013,4,21,13,30,804,201,951,13,28,1010,40.03,128.9,3.7,0.17200000000000001 +2013,4,21,14,30,780,187,847,13,27,1010,42.71,121.80000000000001,3.9000000000000004,0.17200000000000001 +2013,4,21,15,30,722,172,682,13,26,1010,46.13,115,4.3,0.17200000000000001 +2013,4,21,16,30,622,147,475,14,25,1010,50.5,109,4.800000000000001,0.17200000000000001 +2013,4,21,17,30,438,108,248,14,23,1010,59.77,102.60000000000001,5.1000000000000005,0.17200000000000001 +2013,4,21,18,30,111,36,46,15,21,1010,72.43,98.9,5,0.17200000000000001 +2013,4,21,19,30,0,0,0,17,20,1010,82.94,97.5,4.800000000000001,0.17200000000000001 +2013,4,21,20,30,0,0,0,17,19,1010,92.05,98.7,4.4,0.17200000000000001 +2013,4,21,21,30,0,0,0,17,19,1010,93.64,102.2,4,0.17200000000000001 +2013,4,21,22,30,0,0,0,18,19,1010,94.25,107.5,3.9000000000000004,0.17200000000000001 +2013,4,21,23,30,0,0,0,18,19,1010,94.23,110.7,3.9000000000000004,0.17200000000000001 +2013,4,22,0,30,0,0,0,17,19,1010,93.76,111.60000000000001,3.7,0.17200000000000001 +2013,4,22,1,30,0,0,0,17,19,1010,93.28,108.80000000000001,3.4000000000000004,0.17200000000000001 +2013,4,22,2,30,0,0,0,17,19,1010,92.45,107.60000000000001,3.1,0.17200000000000001 +2013,4,22,3,30,0,0,0,17,19,1010,91.91,109,2.8000000000000003,0.17200000000000001 +2013,4,22,4,30,0,0,0,17,18,1010,97.7,110.9,2.6,0.17200000000000001 +2013,4,22,5,30,0,0,0,17,18,1010,97.73,112.60000000000001,2.8000000000000003,0.17200000000000001 +2013,4,22,6,30,173,40,58,17,20,1010,86.68,115.10000000000001,3.3000000000000003,0.17200000000000001 +2013,4,22,7,30,515,97,266,17,22,1010,75.26,120.7,3.6,0.17200000000000001 +2013,4,22,8,30,676,130,493,17,25,1010,65.42,131.4,3.3000000000000003,0.17200000000000001 +2013,4,22,9,30,763,152,698,17,26,1010,57.910000000000004,138.20000000000002,3.1,0.17200000000000001 +2013,4,22,10,30,815,164,859,16,27,1010,54.08,141,3.1,0.17200000000000001 +2013,4,22,11,30,845,169,961,16,28,1010,50.49,141.1,3.3000000000000003,0.17200000000000001 +2013,4,22,12,30,834,184,989,16,29,1010,47.2,140.3,3.7,0.17200000000000001 +2013,4,22,13,30,824,181,952,16,30,1010,44.39,138.5,4.1000000000000005,0.17200000000000001 +2013,4,22,14,30,791,176,846,16,29,1010,47.34,136.70000000000002,4.4,0.17200000000000001 +2013,4,22,15,30,739,160,683,16,28,1010,50.64,135,4.7,0.17200000000000001 +2013,4,22,16,30,646,136,477,17,27,1010,54.44,132.9,5.1000000000000005,0.17200000000000001 +2013,4,22,17,30,478,99,252,17,25,1010,62.620000000000005,131.4,5.4,0.17200000000000001 +2013,4,22,18,30,146,36,50,17,23,1010,72.59,131.20000000000002,5.300000000000001,0.178 +2013,4,22,19,30,0,0,0,18,21,1010,84.81,131.4,5,0.178 +2013,4,22,20,30,0,0,0,18,21,1010,93.24,133.9,4.800000000000001,0.178 +2013,4,22,21,30,0,0,0,19,20,1010,95.44,139.5,4.6000000000000005,0.178 +2013,4,22,22,30,0,0,0,19,20,1010,96.97,146.4,4.5,0.178 +2013,4,22,23,30,0,0,0,19,20,1010,98.37,151,4.4,0.178 +2013,4,23,0,30,0,0,0,19,20,1010,99.3,153.70000000000002,4.2,0.178 +2013,4,23,1,30,0,0,0,19,20,1010,99.74000000000001,154.20000000000002,4.2,0.178 +2013,4,23,2,30,0,0,0,20,20,1010,100,152.5,4.1000000000000005,0.178 +2013,4,23,3,30,0,0,0,19,20,1010,100,148.70000000000002,3.9000000000000004,0.178 +2013,4,23,4,30,0,0,0,19,20,1010,100,142.70000000000002,4,0.178 +2013,4,23,5,30,0,0,0,20,20,1010,100,139.70000000000002,4.4,0.178 +2013,4,23,6,30,162,40,58,20,21,1010,95.52,136.20000000000002,5.2,0.178 +2013,4,23,7,30,0,93,93,20,23,1010,84.59,138,6.1000000000000005,0.178 +2013,4,23,8,30,15,190,198,20,25,1010,74.55,142.20000000000002,6.6000000000000005,0.178 +2013,4,23,9,30,86,329,391,19,26,1010,69.19,144.6,6.7,0.178 +2013,4,23,10,30,11,236,246,19,27,1010,64.06,144.70000000000002,6.6000000000000005,0.178 +2013,4,23,11,30,141,479,611,19,28,1010,59.59,143.8,6.4,0.178 +2013,4,23,12,30,22,358,380,19,28,1010,59.09,141.9,6.1000000000000005,0.178 +2013,4,23,13,30,79,453,527,19,27,1000,62.97,137.9,6,0.178 +2013,4,23,14,30,3,165,168,19,27,1000,68.03,134.20000000000002,5.9,0.178 +2013,4,23,15,30,34,284,309,19,26,1000,73.57000000000001,130.9,5.800000000000001,0.178 +2013,4,23,16,30,0,140,140,20,25,1000,79.51,128.70000000000002,5.6000000000000005,0.178 +2013,4,23,17,30,0,29,29,20,23,1000,86.2,125.2,5.4,0.178 +2013,4,23,18,30,0,7,7,20,23,1010,93.85000000000001,122.60000000000001,4.9,0.178 +2013,4,23,19,30,0,0,0,21,22,1010,95.94,120.7,4.4,0.178 +2013,4,23,20,30,0,0,0,21,22,1010,97.36,121.7,4.1000000000000005,0.178 +2013,4,23,21,30,0,0,0,21,22,1010,98.27,128.3,3.9000000000000004,0.178 +2013,4,23,22,30,0,0,0,21,22,1010,98.84,137.20000000000002,3.5,0.178 +2013,4,23,23,30,0,0,0,21,22,1010,99.06,140.70000000000002,3,0.178 +2013,4,24,0,30,0,0,0,21,21,1010,100,140,2.3000000000000003,0.178 +2013,4,24,1,30,0,0,0,21,21,1010,100,131.6,1.6,0.178 +2013,4,24,2,30,0,0,0,20,20,1010,100,95.7,2,0.178 +2013,4,24,3,30,0,0,0,18,18,1010,100,42.900000000000006,4.3,0.178 +2013,4,24,4,30,0,0,0,15,15,1010,100,22.6,6.7,0.178 +2013,4,24,5,30,0,0,0,12,13,1010,97.08,16.5,8,0.178 +2013,4,24,6,30,0,11,11,9,12,1010,82.10000000000001,16,8.1,0.178 +2013,4,24,7,30,0,68,68,7,13,1010,69.44,16.400000000000002,7.6000000000000005,0.178 +2013,4,24,8,30,0,132,132,7,15,1020,59.92,18.2,7,0.178 +2013,4,24,9,30,0,149,149,7,16,1020,56.34,20,6.4,0.178 +2013,4,24,10,30,15,276,289,7,17,1020,52.88,21.6,5.9,0.178 +2013,4,24,11,30,5,171,176,7,18,1020,50.06,22.5,5.300000000000001,0.178 +2013,4,24,12,30,1,142,143,7,18,1010,51.49,22.900000000000002,4.7,0.178 +2013,4,24,13,30,5,167,172,8,18,1010,53.82,23.700000000000003,4.3,0.178 +2013,4,24,14,30,10,234,243,9,18,1010,56,24,4.1000000000000005,0.178 +2013,4,24,15,30,54,306,345,9,18,1010,57.28,24.5,4,0.178 +2013,4,24,16,30,0,148,148,9,18,1010,58.21,26.700000000000003,3.9000000000000004,0.178 +2013,4,24,17,30,372,122,242,9,17,1010,63.14,33,3.9000000000000004,0.178 +2013,4,24,18,30,96,37,47,10,16,1020,69.22,42.7,3.8000000000000003,0.178 +2013,4,24,19,30,0,0,0,10,16,1020,72.17,49,3.5,0.178 +2013,4,24,20,30,0,0,0,11,16,1020,74.91,47.2,3.2,0.178 +2013,4,24,21,30,0,0,0,11,16,1020,77,40.6,2.9000000000000004,0.178 +2013,4,24,22,30,0,0,0,12,16,1020,78.34,30.200000000000003,2.7,0.178 +2013,4,24,23,30,0,0,0,12,16,1020,78.60000000000001,20.6,2.7,0.178 +2013,4,25,0,30,0,0,0,12,16,1020,77.93,14.8,2.8000000000000003,0.178 +2013,4,25,1,30,0,0,0,11,15,1020,81.54,13.5,2.9000000000000004,0.178 +2013,4,25,2,30,0,0,0,11,15,1020,79.4,11.8,3.1,0.178 +2013,4,25,3,30,0,0,0,10,15,1020,76.54,11.5,3.3000000000000003,0.178 +2013,4,25,4,30,0,0,0,10,16,1020,73.43,13.4,3.6,0.178 +2013,4,25,5,30,0,0,0,10,16,1020,72.52,15.3,4,0.178 +2013,4,25,6,30,98,45,56,10,16,1020,68.9,17.900000000000002,4.6000000000000005,0.178 +2013,4,25,7,30,0,24,24,10,17,1020,66.77,23.6,5.2,0.178 +2013,4,25,8,30,0,66,66,11,19,1020,61.43,30.900000000000002,5.5,0.178 +2013,4,25,9,30,0,115,115,11,20,1020,59.94,37,5.5,0.178 +2013,4,25,10,30,7,200,206,12,21,1020,61.99,43.1,5.4,0.178 +2013,4,25,11,30,7,192,200,13,21,1020,60.34,48.7,5.1000000000000005,0.178 +2013,4,25,12,30,9,208,217,13,20,1020,66.36,52.7,4.800000000000001,0.178 +2013,4,25,13,30,0,71,71,14,20,1020,68.54,52.6,4.4,0.178 +2013,4,25,14,30,14,269,281,14,20,1020,70.5,50.400000000000006,4.2,0.178 +2013,4,25,15,30,2,172,173,14,20,1020,72.16,49,4.5,0.178 +2013,4,25,16,30,0,100,100,15,20,1020,78.59,51,4.7,0.178 +2013,4,25,17,30,0,105,105,15,19,1020,80.63,53.800000000000004,4.5,0.178 +2013,4,25,18,30,95,39,49,16,18,1020,88.52,51.2,4.1000000000000005,0.178 +2013,4,25,19,30,0,0,0,16,18,1020,92.15,49.800000000000004,3.9000000000000004,0.178 +2013,4,25,20,30,0,0,0,17,18,1020,96.11,59.7,3.7,0.178 +2013,4,25,21,30,0,0,0,18,18,1020,100,77.30000000000001,3.5,0.178 +2013,4,25,22,30,0,0,0,18,19,1020,99.45,99.80000000000001,3.9000000000000004,0.178 +2013,4,25,23,30,0,0,0,19,20,1010,100,123.7,4.3,0.178 +2013,4,26,0,30,0,0,0,20,20,1010,100,140.20000000000002,4.5,0.178 +2013,4,26,1,30,0,0,0,20,20,1010,100,149,4.1000000000000005,0.178 +2013,4,26,2,30,0,0,0,20,20,1010,100,149.9,3.5,0.178 +2013,4,26,3,30,0,0,0,19,19,1010,100,150.8,2.9000000000000004,0.178 +2013,4,26,4,30,0,0,0,19,19,1010,100,152.6,2.5,0.178 +2013,4,26,5,30,0,0,0,19,19,1010,100,152.6,2.4000000000000004,0.178 +2013,4,26,6,30,226,41,68,20,21,1010,96.91,147.6,3,0.178 +2013,4,26,7,30,548,89,276,21,22,1010,96.75,144.6,3.8000000000000003,0.178 +2013,4,26,8,30,0,146,146,21,24,1010,86.14,147.5,4.5,0.178 +2013,4,26,9,30,20,263,277,21,26,1010,74.21000000000001,150,5.1000000000000005,0.178 +2013,4,26,10,30,38,361,394,20,28,1010,64.91,154,5.5,0.178 +2013,4,26,11,30,12,256,268,20,29,1010,60.27,153.4,5.7,0.178 +2013,4,26,12,30,9,203,212,20,30,1010,59.32,149.70000000000002,5.9,0.178 +2013,4,26,13,30,23,352,374,20,29,1010,58.54,145.1,6.1000000000000005,0.178 +2013,4,26,14,30,43,366,403,19,28,1010,61.79,142,6.4,0.178 +2013,4,26,15,30,685,179,668,20,27,1010,65.78,139.5,6.4,0.178 +2013,4,26,16,30,586,154,467,20,26,1010,70.43,137.9,6.4,0.178 +2013,4,26,17,30,424,110,248,20,25,1010,75.73,136.70000000000002,6.1000000000000005,0.178 +2013,4,26,18,30,128,39,52,20,23,1010,87.06,135.20000000000002,5.4,0.178 +2013,4,26,19,30,0,0,0,21,22,1010,95.28,131,4.7,0.178 +2013,4,26,20,30,0,0,0,21,22,1010,96.68,128.3,4.2,0.178 +2013,4,26,21,30,0,0,0,21,22,1010,100,131.3,3.9000000000000004,0.178 +2013,4,26,22,30,0,0,0,21,21,1010,100,134.5,3.7,0.178 +2013,4,26,23,30,0,0,0,21,21,1010,100,138,3.4000000000000004,0.178 +2013,4,27,0,30,0,0,0,21,21,1010,100,141.4,3.2,0.178 +2013,4,27,1,30,0,0,0,21,21,1010,100,142.8,2.9000000000000004,0.178 +2013,4,27,2,30,0,0,0,20,20,1010,100,142.20000000000002,2.5,0.178 +2013,4,27,3,30,0,0,0,20,20,1010,100,141.9,2.3000000000000003,0.178 +2013,4,27,4,30,0,0,0,20,20,1010,100,142.4,2.2,0.178 +2013,4,27,5,30,0,0,0,20,20,1010,100,141.70000000000002,2.6,0.178 +2013,4,27,6,30,107,47,60,21,22,1010,95.58,141.1,3.4000000000000004,0.178 +2013,4,27,7,30,0,87,87,21,24,1010,91.4,139.9,4,0.178 +2013,4,27,8,30,0,143,143,21,25,1010,80.84,143.3,4.3,0.178 +2013,4,27,9,30,11,228,237,21,26,1010,75.16,143.8,4.5,0.178 +2013,4,27,10,30,13,251,263,21,27,1010,70.8,139.5,4.800000000000001,0.178 +2013,4,27,11,30,9,206,215,21,28,1010,66.93,136.5,5.2,0.178 +2013,4,27,12,30,26,376,402,21,27,1010,70.8,133.1,5.4,0.178 +2013,4,27,13,30,107,470,571,21,27,1010,70.3,131.8,5.5,0.178 +2013,4,27,14,30,154,423,555,20,26,1010,73.75,129.1,5.6000000000000005,0.178 +2013,4,27,15,30,60,315,358,20,25,1010,77.25,124.10000000000001,5.300000000000001,0.178 +2013,4,27,16,30,407,195,413,20,24,1010,81.07000000000001,121.2,4.4,0.178 +2013,4,27,17,30,191,150,213,20,22,1010,92.15,119.60000000000001,3.8000000000000003,0.178 +2013,4,27,18,30,32,37,41,20,22,1010,93.83,114.2,4.1000000000000005,0.178 +2013,4,27,19,30,0,0,0,21,21,1010,100,117.30000000000001,4.5,0.178 +2013,4,27,20,30,0,0,0,21,21,1010,100,118.80000000000001,4.2,0.178 +2013,4,27,21,30,0,0,0,21,21,1010,100,110.5,4.1000000000000005,0.178 +2013,4,27,22,30,0,0,0,21,21,1010,100,107.9,4.2,0.178 +2013,4,27,23,30,0,0,0,21,21,1010,100,113.4,3.5,0.178 +2013,4,28,0,30,0,0,0,21,21,1010,100,110.30000000000001,2.5,0.178 +2013,4,28,1,30,0,0,0,21,21,1010,100,77.9,3,0.178 +2013,4,28,2,30,0,0,0,21,21,1010,100,74.2,3.8000000000000003,0.178 +2013,4,28,3,30,0,0,0,20,20,1010,100,73.9,4,0.178 +2013,4,28,4,30,0,0,0,20,20,1010,100,69.8,4.1000000000000005,0.178 +2013,4,28,5,30,0,0,0,19,20,1010,96.76,69,4.1000000000000005,0.178 +2013,4,28,6,30,9,40,42,19,20,1010,95.64,75.10000000000001,4.2,0.178 +2013,4,28,7,30,0,81,81,19,21,1010,90.2,85.5,4.4,0.178 +2013,4,28,8,30,0,101,101,19,22,1010,84.13,100,4.5,0.178 +2013,4,28,9,30,0,136,136,19,24,1010,75.26,113,4.2,0.178 +2013,4,28,10,30,0,118,118,19,25,1010,72.57000000000001,120.4,3.9000000000000004,0.178 +2013,4,28,11,30,7,185,192,20,25,1010,74.37,124.30000000000001,3.7,0.178 +2013,4,28,12,30,27,385,412,20,25,1010,75.77,124.80000000000001,3.5,0.178 +2013,4,28,13,30,159,481,631,20,25,1010,81.83,120.9,3.2,0.178 +2013,4,28,14,30,8,213,220,20,24,1010,82.93,112.5,2.8000000000000003,0.178 +2013,4,28,15,30,97,331,401,20,24,1010,83.10000000000001,97.9,2.7,0.178 +2013,4,28,16,30,288,221,376,20,23,1010,87.79,93.10000000000001,2.8000000000000003,0.178 +2013,4,28,17,30,0,107,107,20,22,1010,93,93.80000000000001,2.5,0.178 +2013,4,28,18,30,0,28,28,20,21,1010,99.94,99.80000000000001,2.3000000000000003,0.178 +2013,4,28,19,30,0,0,0,20,21,1010,99.95,109.80000000000001,2.3000000000000003,0.178 +2013,4,28,20,30,0,0,0,20,20,1010,100,117.4,2,0.178 +2013,4,28,21,30,0,0,0,20,20,1010,100,121.2,1.7000000000000002,0.178 +2013,4,28,22,30,0,0,0,20,20,1010,100,129.1,1.5,0.178 +2013,4,28,23,30,0,0,0,20,20,1010,100,131.1,1.4000000000000001,0.178 +2013,4,29,0,30,0,0,0,20,20,1010,100,125.2,1.2000000000000002,0.178 +2013,4,29,1,30,0,0,0,20,20,1010,100,116.5,1,0.178 +2013,4,29,2,30,0,0,0,19,19,1010,100,113.4,1,0.178 +2013,4,29,3,30,0,0,0,19,19,1010,100,112.60000000000001,1,0.178 +2013,4,29,4,30,0,0,0,19,19,1010,100,106.80000000000001,1,0.178 +2013,4,29,5,30,0,0,0,19,19,1010,100,100.30000000000001,1.1,0.178 +2013,4,29,6,30,184,47,70,20,21,1010,100,98.7,1.3,0.178 +2013,4,29,7,30,485,106,275,20,22,1010,92.28,103,1.4000000000000001,0.178 +2013,4,29,8,30,645,138,496,20,24,1010,79.73,108.5,1.5,0.178 +2013,4,29,9,30,731,161,694,19,25,1010,70.44,119.80000000000001,1.9000000000000001,0.178 +2013,4,29,10,30,14,273,286,18,26,1010,63.36,127.60000000000001,2.3000000000000003,0.178 +2013,4,29,11,30,21,323,344,18,27,1010,59.35,128.5,2.6,0.178 +2013,4,29,12,30,726,249,957,18,26,1010,64.31,129.4,2.7,0.178 +2013,4,29,13,30,152,481,625,19,25,1000,70.62,129.6,2.7,0.178 +2013,4,29,14,30,5,180,186,19,24,1000,77.44,124.4,2.8000000000000003,0.178 +2013,4,29,15,30,7,208,214,20,23,1000,83.76,116,2.8000000000000003,0.178 +2013,4,29,16,30,473,180,435,20,23,1000,89.81,105.30000000000001,2.9000000000000004,0.178 +2013,4,29,17,30,33,123,134,20,22,1000,90.89,98.9,2.8000000000000003,0.178 +2013,4,29,18,30,0,25,25,20,21,1000,99.71000000000001,93.7,2.5,0.178 +2013,4,29,19,30,0,0,0,21,21,1000,100,88.2,2.4000000000000004,0.178 +2013,4,29,20,30,0,0,0,21,21,1000,100,87.2,2.4000000000000004,0.178 +2013,4,29,21,30,0,0,0,21,21,1000,100,94.30000000000001,2.5,0.178 +2013,4,29,22,30,0,0,0,21,21,1000,100,107.4,2.6,0.178 +2013,4,29,23,30,0,0,0,21,21,1000,100,116.5,2.5,0.178 +2013,4,30,0,30,0,0,0,20,21,1000,100,126.9,2.4000000000000004,0.178 +2013,4,30,1,30,0,0,0,20,20,1000,100,141.5,2.3000000000000003,0.178 +2013,4,30,2,30,0,0,0,20,20,1000,100,159.4,2.1,0.178 +2013,4,30,3,30,0,0,0,20,20,1000,100,178,2,0.178 +2013,4,30,4,30,0,0,0,19,19,1000,100,191.9,1.9000000000000001,0.178 +2013,4,30,5,30,0,0,0,19,19,1000,100,200.10000000000002,1.8,0.178 +2013,4,30,6,30,164,50,71,20,21,1000,98.54,201.5,2,0.178 +2013,4,30,7,30,466,111,275,21,23,1000,90.29,197,2.2,0.178 +2013,4,30,8,30,633,144,496,20,25,1000,77.79,188.70000000000002,2.2,0.178 +2013,4,30,9,30,720,168,696,19,26,1000,68.97,177.20000000000002,2.2,0.178 +2013,4,30,10,30,90,417,495,19,27,1000,63.93,165.5,2.4000000000000004,0.178 +2013,4,30,11,30,780,207,948,19,28,1000,60.06,154.3,2.7,0.178 +2013,4,30,12,30,817,191,988,19,28,1000,59.96,145.4,3,0.178 +2013,4,30,13,30,794,198,948,19,28,1000,59.660000000000004,138.3,3.1,0.178 +2013,4,30,14,30,756,196,843,19,28,1000,59.54,131.1,3.2,0.178 +2013,4,30,15,30,720,169,686,19,27,1000,63.43,125.4,3.3000000000000003,0.178 +2013,4,30,16,30,631,143,484,19,26,1000,67.63,119.9,3.4000000000000004,0.178 +2013,4,30,17,30,481,102,262,19,25,1000,72.82000000000001,114.10000000000001,3.6,0.178 +2013,4,30,18,30,180,40,60,20,23,1000,85.16,109.4,3.6,0.183 +2013,4,30,19,30,0,0,0,21,22,1000,100,106.9,3.4000000000000004,0.183 +2013,4,30,20,30,0,0,0,21,21,1000,100,106.30000000000001,3,0.183 +2013,4,30,21,30,0,0,0,21,21,1000,100,110.2,2.7,0.183 +2013,4,30,22,30,0,0,0,20,20,1000,100,118.30000000000001,2.4000000000000004,0.183 +2013,4,30,23,30,0,0,0,20,20,1000,100,127.5,2.2,0.183 +2013,5,1,0,30,0,0,0,19,19,1000,100,135.4,2,0.183 +2013,5,1,1,30,0,0,0,19,19,1000,100,142.3,1.8,0.183 +2013,5,1,2,30,0,0,0,19,19,1000,100,147.4,1.7000000000000002,0.183 +2013,5,1,3,30,0,0,0,19,19,1000,100,147.5,1.6,0.183 +2013,5,1,4,30,0,0,0,19,19,1000,100,141.9,1.6,0.183 +2013,5,1,5,30,0,0,0,19,19,1000,100,134.8,1.6,0.183 +2013,5,1,6,30,216,48,77,21,21,1000,100,128.4,2.3000000000000003,0.183 +2013,5,1,7,30,496,108,283,21,24,1000,86,128.6,2.8000000000000003,0.183 +2013,5,1,8,30,636,147,502,21,25,1000,79.44,131.3,2.8000000000000003,0.183 +2013,5,1,9,30,720,171,700,21,26,1000,74.13,129.1,2.8000000000000003,0.183 +2013,5,1,10,30,764,190,853,20,27,1000,69.37,126.60000000000001,2.7,0.183 +2013,5,1,11,30,780,205,947,20,28,1000,65.41,123.80000000000001,2.5,0.183 +2013,5,1,12,30,787,208,977,20,29,1000,61.980000000000004,120.9,2.3000000000000003,0.183 +2013,5,1,13,30,777,204,939,21,29,1000,62.15,115.9,2.3000000000000003,0.183 +2013,5,1,14,30,751,192,836,21,28,1000,65.92,108.2,2.4000000000000004,0.183 +2013,5,1,15,30,703,173,678,20,28,1000,65.57000000000001,102,2.6,0.183 +2013,5,1,16,30,617,145,479,20,27,1000,69.26,97.2,3,0.183 +2013,5,1,17,30,463,105,260,20,25,1000,78.47,95.80000000000001,3.4000000000000004,0.183 +2013,5,1,18,30,165,42,60,21,24,1000,90.23,97.10000000000001,3.6,0.183 +2013,5,1,19,30,0,0,0,21,22,1000,97.92,97.2,3.5,0.183 +2013,5,1,20,30,0,0,0,21,22,1010,100,95.2,3.2,0.183 +2013,5,1,21,30,0,0,0,21,21,1010,100,92.4,2.8000000000000003,0.183 +2013,5,1,22,30,0,0,0,21,21,1010,100,91.60000000000001,2.4000000000000004,0.183 +2013,5,1,23,30,0,0,0,20,20,1010,100,93.80000000000001,2.1,0.183 +2013,5,2,0,30,0,0,0,20,20,1010,100,98.9,1.9000000000000001,0.183 +2013,5,2,1,30,0,0,0,19,20,1010,100,102.9,1.7000000000000002,0.183 +2013,5,2,2,30,0,0,0,19,20,1010,100,104.10000000000001,1.5,0.183 +2013,5,2,3,30,0,0,0,20,20,1010,100,104.9,1.2000000000000002,0.183 +2013,5,2,4,30,0,0,0,20,20,1010,100,112.4,0.8,0.183 +2013,5,2,5,30,0,0,0,20,20,1010,100,136.4,0.4,0.183 +2013,5,2,6,30,209,49,78,21,21,1010,100,291.5,1.1,0.183 +2013,5,2,7,30,91,141,174,21,23,1010,89.2,321.6,2.4000000000000004,0.183 +2013,5,2,8,30,0,151,151,20,24,1010,79.98,333.90000000000003,3.6,0.183 +2013,5,2,9,30,233,343,515,19,25,1010,70.98,341.5,4.5,0.183 +2013,5,2,10,30,335,400,692,18,26,1010,65.07000000000001,347.5,5.300000000000001,0.183 +2013,5,2,11,30,457,401,837,18,25,1010,66.94,354.3,6.1000000000000005,0.183 +2013,5,2,12,30,761,231,975,17,25,1010,63.980000000000004,358.5,6.9,0.183 +2013,5,2,13,30,756,225,941,16,25,1010,60.02,0.4,7.2,0.183 +2013,5,2,14,30,757,195,844,15,25,1010,55.79,360,7,0.183 +2013,5,2,15,30,27,277,297,14,25,1010,55.480000000000004,357.70000000000005,6.7,0.183 +2013,5,2,16,30,12,190,197,13,24,1010,56.2,355.5,6.6000000000000005,0.183 +2013,5,2,17,30,383,126,255,13,22,1010,57.4,354.20000000000005,6.7,0.183 +2013,5,2,18,30,117,44,58,12,20,1010,65.43,353.3,7,0.183 +2013,5,2,19,30,0,0,0,11,17,1020,68.02,352.20000000000005,7.6000000000000005,0.183 +2013,5,2,20,30,0,0,0,9,15,1020,67.85,351.6,8.1,0.183 +2013,5,2,21,30,0,0,0,7,13,1020,68.2,350.90000000000003,8.200000000000001,0.183 +2013,5,2,22,30,0,0,0,6,12,1020,67.31,350,7.9,0.183 +2013,5,2,23,30,0,0,0,5,12,1020,65.21000000000001,348.8,7.4,0.183 +2013,5,3,0,30,0,0,0,5,12,1020,64.78,346,7,0.183 +2013,5,3,1,30,0,0,0,5,12,1020,64.66,342,7,0.183 +2013,5,3,2,30,0,0,0,5,12,1020,62.6,339.8,7.300000000000001,0.183 +2013,5,3,3,30,0,0,0,4,11,1020,62.39,340.5,7.6000000000000005,0.183 +2013,5,3,4,30,0,0,0,3,11,1020,57.88,341.8,7.800000000000001,0.183 +2013,5,3,5,30,0,0,0,2,11,1020,58.480000000000004,341.8,7.800000000000001,0.183 +2013,5,3,6,30,298,49,90,1,11,1020,52.54,341.40000000000003,8.1,0.183 +2013,5,3,7,30,653,89,323,0,12,1020,45.52,342,8.4,0.183 +2013,5,3,8,30,813,110,567,0,14,1020,35.84,342.70000000000005,8.4,0.183 +2013,5,3,9,30,889,126,781,-1,16,1020,29.5,342.90000000000003,8.200000000000001,0.183 +2013,5,3,10,30,931,137,947,-2,18,1020,25.28,343.6,7.800000000000001,0.183 +2013,5,3,11,30,955,141,1051,-2,19,1020,23.57,344.3,7.300000000000001,0.183 +2013,5,3,12,30,948,151,1079,-2,20,1020,22.05,345,6.800000000000001,0.183 +2013,5,3,13,30,948,142,1041,-2,21,1020,20.76,345.40000000000003,6.2,0.183 +2013,5,3,14,30,931,131,932,-2,22,1010,19.67,346.5,5.6000000000000005,0.183 +2013,5,3,15,30,879,124,759,-2,22,1010,19.81,348.8,5,0.183 +2013,5,3,16,30,799,108,542,-2,21,1010,21.240000000000002,349.8,4.3,0.183 +2013,5,3,17,30,648,83,302,-1,19,1010,24.72,351.5,3.1,0.183 +2013,5,3,18,30,312,40,77,4,16,1010,45.63,356.70000000000005,2,0.183 +2013,5,3,19,30,0,0,0,5,15,1010,53.26,5.4,1.8,0.183 +2013,5,3,20,30,0,0,0,5,14,1010,56.33,15.600000000000001,1.7000000000000002,0.183 +2013,5,3,21,30,0,0,0,5,14,1010,55.480000000000004,29.900000000000002,1.6,0.183 +2013,5,3,22,30,0,0,0,5,14,1010,54.89,46.1,1.6,0.183 +2013,5,3,23,30,0,0,0,5,13,1010,58.36,61.5,1.5,0.183 +2013,5,4,0,30,0,0,0,5,13,1010,58.38,73.8,1.4000000000000001,0.183 +2013,5,4,1,30,0,0,0,4,13,1010,58.13,89.60000000000001,1.2000000000000002,0.183 +2013,5,4,2,30,0,0,0,5,13,1010,58.52,109.5,1.1,0.183 +2013,5,4,3,30,0,0,0,5,12,1010,63.07,135.9,1.2000000000000002,0.183 +2013,5,4,4,30,0,0,0,5,12,1010,68.42,160.3,1.4000000000000001,0.183 +2013,5,4,5,30,0,0,0,5,12,1010,70.16,178.10000000000002,1.6,0.183 +2013,5,4,6,30,388,44,99,7,14,1010,64.29,191.70000000000002,2.2,0.183 +2013,5,4,7,30,689,80,328,6,17,1010,51.15,200.8,3.1,0.183 +2013,5,4,8,30,821,101,564,3,20,1010,34.730000000000004,198.70000000000002,3.5,0.183 +2013,5,4,9,30,885,118,772,2,23,1010,27.580000000000002,197.60000000000002,3.4000000000000004,0.183 +2013,5,4,10,30,922,129,933,2,24,1010,24.19,193.10000000000002,3.2,0.183 +2013,5,4,11,30,939,136,1032,2,25,1010,23.01,185.9,2.9000000000000004,0.183 +2013,5,4,12,30,931,146,1059,2,26,1010,22.45,175.20000000000002,2.7,0.183 +2013,5,4,13,30,905,155,1013,3,27,1010,22.79,164.10000000000002,2.6,0.183 +2013,5,4,14,30,841,170,894,4,26,1010,24.63,151.6,2.9000000000000004,0.183 +2013,5,4,15,30,533,240,626,3,25,1010,25.69,142.8,3.5,0.183 +2013,5,4,16,30,92,235,286,4,24,1010,28.16,143.1,4,0.183 +2013,5,4,17,30,377,110,238,5,22,1010,35.12,143.5,4.1000000000000005,0.183 +2013,5,4,18,30,0,1,1,8,19,1010,50.67,142.9,3.8000000000000003,0.183 +2013,5,4,19,30,0,0,0,10,18,1010,59.81,145.4,3.8000000000000003,0.183 +2013,5,4,20,30,0,0,0,10,18,1010,67.18,150.5,3.9000000000000004,0.183 +2013,5,4,21,30,0,0,0,11,17,1010,70.43,157.10000000000002,3.8000000000000003,0.183 +2013,5,4,22,30,0,0,0,12,17,1010,78.06,165.3,3.5,0.183 +2013,5,4,23,30,0,0,0,12,16,1010,85.7,174,3.2,0.183 +2013,5,5,0,30,0,0,0,12,15,1010,86.79,181.4,2.9000000000000004,0.183 +2013,5,5,1,30,0,0,0,12,14,1010,93.07000000000001,186.4,2.7,0.183 +2013,5,5,2,30,0,0,0,12,14,1010,93.15,189.5,2.4000000000000004,0.183 +2013,5,5,3,30,0,0,0,12,13,1010,99.9,191.9,2.1,0.183 +2013,5,5,4,30,0,0,0,13,13,1010,100,194.9,1.8,0.183 +2013,5,5,5,30,0,0,0,13,14,1010,96.25,199.4,1.3,0.183 +2013,5,5,6,30,261,51,89,13,16,1010,87.26,218.9,0.9,0.183 +2013,5,5,7,30,564,101,306,13,18,1010,74.4,309.90000000000003,1.1,0.183 +2013,5,5,8,30,715,130,534,11,21,1010,56.410000000000004,323.1,1.7000000000000002,0.183 +2013,5,5,9,30,801,147,740,11,24,1010,44.22,355.1,2.3000000000000003,0.183 +2013,5,5,10,30,850,158,899,10,25,1010,39.94,13.700000000000001,2.6,0.183 +2013,5,5,11,30,877,162,1000,10,26,1010,37.42,24,2.5,0.183 +2013,5,5,12,30,879,168,1030,10,27,1010,34.480000000000004,33.5,2.4000000000000004,0.183 +2013,5,5,13,30,878,161,994,9,28,1010,31.38,43.7,2.3000000000000003,0.183 +2013,5,5,14,30,862,148,891,8,29,1010,30.25,53.900000000000006,2.2,0.183 +2013,5,5,15,30,824,132,729,8,28,1010,29.32,63.5,2.2,0.183 +2013,5,5,16,30,748,112,522,8,27,1010,30.25,73.3,2.2,0.183 +2013,5,5,17,30,606,85,292,8,25,1010,36.79,87.5,2.4000000000000004,0.183 +2013,5,5,18,30,295,40,76,12,21,1010,57.56,110.4,2.8000000000000003,0.183 +2013,5,5,19,30,0,0,0,12,19,1010,71.87,126.2,3.2,0.183 +2013,5,5,20,30,0,0,0,13,17,1010,80.32000000000001,138.3,3,0.183 +2013,5,5,21,30,0,0,0,14,17,1010,85.84,144.6,2.5,0.183 +2013,5,5,22,30,0,0,0,15,16,1010,95.49,148.4,2.1,0.183 +2013,5,5,23,30,0,0,0,15,16,1010,97.43,153,1.9000000000000001,0.183 +2013,5,6,0,30,0,0,0,15,16,1010,99.05,155,1.8,0.183 +2013,5,6,1,30,0,0,0,15,16,1010,100,150.8,1.8,0.183 +2013,5,6,2,30,0,0,0,15,15,1010,100,143.5,1.8,0.183 +2013,5,6,3,30,0,0,0,15,15,1010,100,140,1.8,0.183 +2013,5,6,4,30,0,0,0,15,15,1010,100,138.6,1.7000000000000002,0.183 +2013,5,6,5,30,0,0,0,16,16,1010,100,136.70000000000002,1.6,0.183 +2013,5,6,6,30,279,51,92,16,18,1010,92,133.3,1.9000000000000001,0.183 +2013,5,6,7,30,567,99,306,16,21,1010,73.35000000000001,133.8,2.5,0.183 +2013,5,6,8,30,712,126,531,14,23,1010,60.120000000000005,129.9,2.7,0.183 +2013,5,6,9,30,790,145,731,13,25,1010,53.39,123.30000000000001,2.9000000000000004,0.183 +2013,5,6,10,30,562,305,797,13,26,1010,45.47,117.80000000000001,3,0.183 +2013,5,6,11,30,532,383,892,13,27,1010,42.230000000000004,114.30000000000001,3.1,0.183 +2013,5,6,12,30,325,476,796,12,28,1010,41.38,112.9,3.3000000000000003,0.183 +2013,5,6,13,30,175,484,650,12,28,1010,38.480000000000004,112.30000000000001,3.5,0.183 +2013,5,6,14,30,154,427,561,12,27,1010,40.5,111.7,3.6,0.183 +2013,5,6,15,30,132,341,437,12,26,1010,42.660000000000004,110.60000000000001,3.7,0.183 +2013,5,6,16,30,508,172,450,12,25,1010,44.85,109.80000000000001,3.7,0.183 +2013,5,6,17,30,456,113,269,12,24,1010,50.88,109.60000000000001,3.6,0.183 +2013,5,6,18,30,180,46,68,13,21,1010,60.96,112.4,3.1,0.183 +2013,5,6,19,30,0,0,0,14,19,1010,75.11,120.30000000000001,2.7,0.183 +2013,5,6,20,30,0,0,0,15,18,1010,84.12,131,2.6,0.183 +2013,5,6,21,30,0,0,0,15,18,1010,86.71000000000001,140.3,2.4000000000000004,0.183 +2013,5,6,22,30,0,0,0,15,18,1010,92.98,147,2.4000000000000004,0.183 +2013,5,6,23,30,0,0,0,15,17,1010,93.11,149.9,2.3000000000000003,0.183 +2013,5,7,0,30,0,0,0,15,17,1010,93.16,152.3,2.2,0.183 +2013,5,7,1,30,0,0,0,15,17,1010,93.54,154.70000000000002,2.1,0.183 +2013,5,7,2,30,0,0,0,16,17,1010,100,156.10000000000002,2,0.183 +2013,5,7,3,30,0,0,0,16,16,1010,100,154.9,1.8,0.183 +2013,5,7,4,30,0,0,0,16,16,1010,100,148.70000000000002,1.8,0.183 +2013,5,7,5,30,0,0,0,16,17,1010,99.45,140.1,1.7000000000000002,0.183 +2013,5,7,6,30,267,53,93,17,19,1010,90.47,130.70000000000002,2.2,0.183 +2013,5,7,7,30,543,105,304,16,22,1010,73.28,126.5,2.7,0.183 +2013,5,7,8,30,673,139,523,16,24,1010,62.17,128.4,2.7,0.183 +2013,5,7,9,30,740,166,716,15,25,1010,57.27,130.20000000000002,2.7,0.183 +2013,5,7,10,30,762,195,862,15,26,1010,53.59,133.1,2.7,0.183 +2013,5,7,11,30,757,224,949,15,26,1010,53.7,136.20000000000002,2.7,0.183 +2013,5,7,12,30,787,209,983,16,25,1010,57.44,140,2.9000000000000004,0.183 +2013,5,7,13,30,767,212,941,16,25,1010,58.45,137.5,3.2,0.183 +2013,5,7,14,30,733,205,838,16,24,1010,63.300000000000004,129.8,3.7,0.183 +2013,5,7,15,30,737,156,692,16,24,1010,64.39,122.2,4.3,0.183 +2013,5,7,16,30,675,125,496,17,24,1010,65.09,123.80000000000001,4.6000000000000005,0.183 +2013,5,7,17,30,533,94,277,17,23,1010,69.54,129.1,4.3,0.183 +2013,5,7,18,30,234,44,73,17,22,1010,79.74,131.1,3.6,0.183 +2013,5,7,19,30,0,0,0,17,20,1010,88.06,130.5,3.2,0.183 +2013,5,7,20,30,0,0,0,18,20,1010,90.21000000000001,135.1,3.4000000000000004,0.183 +2013,5,7,21,30,0,0,0,18,20,1010,91.65,143.5,3.7,0.183 +2013,5,7,22,30,0,0,0,18,20,1010,92.56,151.3,3.9000000000000004,0.183 +2013,5,7,23,30,0,0,0,18,20,1010,93.3,156.10000000000002,3.9000000000000004,0.183 +2013,5,8,0,30,0,0,0,18,20,1010,93.86,160.10000000000002,3.9000000000000004,0.183 +2013,5,8,1,30,0,0,0,19,19,1010,100,162.4,3.8000000000000003,0.183 +2013,5,8,2,30,0,0,0,19,19,1010,100,162.9,3.6,0.183 +2013,5,8,3,30,0,0,0,19,19,1010,100,161.3,3.2,0.183 +2013,5,8,4,30,0,0,0,19,19,1010,100,159.60000000000002,3,0.183 +2013,5,8,5,30,0,0,0,19,19,1010,100,158.4,3.3000000000000003,0.183 +2013,5,8,6,30,197,57,87,19,21,1010,90.83,158.3,4.2,0.183 +2013,5,8,7,30,449,124,289,19,23,1010,78.93,162.10000000000002,5,0.183 +2013,5,8,8,30,581,171,503,18,25,1010,68.37,164.9,5.300000000000001,0.183 +2013,5,8,9,30,664,202,697,18,26,1010,64.07000000000001,160.9,5.300000000000001,0.183 +2013,5,8,10,30,707,227,847,18,27,1010,60.06,154.5,5.5,0.183 +2013,5,8,11,30,729,242,941,18,28,1010,56.44,149.3,5.6000000000000005,0.183 +2013,5,8,12,30,769,222,979,18,29,1010,53.33,145.20000000000002,5.800000000000001,0.183 +2013,5,8,13,30,730,238,934,18,28,1010,57.17,141.8,5.9,0.183 +2013,5,8,14,30,678,240,826,19,28,1010,58.160000000000004,138.4,6,0.183 +2013,5,8,15,30,620,219,670,19,27,1010,62.46,136.5,6.1000000000000005,0.183 +2013,5,8,16,30,516,188,472,19,26,1010,67.12,135.70000000000002,6,0.183 +2013,5,8,17,30,442,102,255,19,24,1010,76.94,133.4,5.800000000000001,0.183 +2013,5,8,18,30,105,51,64,20,23,1010,83.62,130.20000000000002,5.300000000000001,0.187 +2013,5,8,19,30,0,0,0,20,22,1010,91.57000000000001,127.10000000000001,4.9,0.187 +2013,5,8,20,30,0,0,0,20,22,1010,94,129.1,4.9,0.187 +2013,5,8,21,30,0,0,0,21,22,1010,95.62,134.9,5,0.187 +2013,5,8,22,30,0,0,0,21,22,1010,96.58,139.6,4.800000000000001,0.187 +2013,5,8,23,30,0,0,0,21,22,1010,97.22,141.70000000000002,4.5,0.187 +2013,5,9,0,30,0,0,0,21,22,1010,97.74000000000001,145.70000000000002,4.3,0.187 +2013,5,9,1,30,0,0,0,21,22,1010,98.22,148.70000000000002,4,0.187 +2013,5,9,2,30,0,0,0,21,22,1010,100,149.9,3.7,0.187 +2013,5,9,3,30,0,0,0,21,22,1010,100,147.5,3.5,0.187 +2013,5,9,4,30,0,0,0,21,22,1010,100,143.9,3.3000000000000003,0.187 +2013,5,9,5,30,0,0,0,22,22,1010,100,141.70000000000002,3.5,0.187 +2013,5,9,6,30,23,51,55,22,22,1010,100,142.6,4.1000000000000005,0.187 +2013,5,9,7,30,168,147,210,22,24,1010,96.11,145,5,0.187 +2013,5,9,8,30,54,236,267,22,25,1010,88.88,151.1,5.6000000000000005,0.187 +2013,5,9,9,30,16,255,267,21,25,1010,81.85000000000001,153,5.800000000000001,0.187 +2013,5,9,10,30,33,358,388,21,26,1010,76.54,154,5.7,0.187 +2013,5,9,11,30,34,398,430,21,27,1010,71.83,155.70000000000002,5.6000000000000005,0.187 +2013,5,9,12,30,39,425,464,21,28,1010,67.19,157.5,5.4,0.187 +2013,5,9,13,30,142,484,620,21,29,1010,62.89,155.9,5.1000000000000005,0.187 +2013,5,9,14,30,117,424,525,21,29,1000,62.940000000000005,149.6,5,0.187 +2013,5,9,15,30,83,332,393,21,28,1000,67.2,143.3,4.9,0.187 +2013,5,9,16,30,202,240,351,21,27,1000,72.49,135.1,5.1000000000000005,0.187 +2013,5,9,17,30,121,138,180,22,26,1000,83.69,125.60000000000001,5.6000000000000005,0.187 +2013,5,9,18,30,0,35,35,22,24,1000,91.52,120.7,5.300000000000001,0.187 +2013,5,9,19,30,0,0,0,22,23,1000,99.53,120,4.6000000000000005,0.187 +2013,5,9,20,30,0,0,0,23,23,1010,100,115.60000000000001,4.3,0.187 +2013,5,9,21,30,0,0,0,23,23,1010,100,117.2,3.9000000000000004,0.187 +2013,5,9,22,30,0,0,0,23,23,1010,100,122.7,3.3000000000000003,0.187 +2013,5,9,23,30,0,0,0,22,23,1010,100,130.1,2.9000000000000004,0.187 +2013,5,10,0,30,0,0,0,22,23,1010,100,134.9,2.9000000000000004,0.187 +2013,5,10,1,30,0,0,0,22,22,1010,100,136.70000000000002,3,0.187 +2013,5,10,2,30,0,0,0,22,22,1000,100,138.20000000000002,3,0.187 +2013,5,10,3,30,0,0,0,22,22,1000,100,138.9,2.7,0.187 +2013,5,10,4,30,0,0,0,22,22,1010,100,140,2.5,0.187 +2013,5,10,5,30,0,0,0,22,22,1010,100,137.9,2.6,0.187 +2013,5,10,6,30,64,55,65,23,23,1010,100,135.1,2.8000000000000003,0.187 +2013,5,10,7,30,0,102,102,23,25,1010,89.13,136.9,3,0.187 +2013,5,10,8,30,0,119,119,22,26,1010,80.52,146.20000000000002,2.9000000000000004,0.187 +2013,5,10,9,30,0,82,82,21,27,1010,72.79,143.4,2.9000000000000004,0.187 +2013,5,10,10,30,148,446,576,21,28,1010,68.73,127.9,2.9000000000000004,0.187 +2013,5,10,11,30,15,289,304,21,29,1010,65.63,116.30000000000001,2.9000000000000004,0.187 +2013,5,10,12,30,201,479,677,22,29,1010,66.42,105.60000000000001,3.1,0.187 +2013,5,10,13,30,664,277,910,22,30,1000,66.57000000000001,97.4,3.4000000000000004,0.187 +2013,5,10,14,30,90,415,493,21,29,1000,65.87,91.2,3.5,0.187 +2013,5,10,15,30,577,236,657,21,28,1000,68.23,86.80000000000001,3.6,0.187 +2013,5,10,16,30,510,186,468,21,27,1000,70.57000000000001,83.4,3.6,0.187 +2013,5,10,17,30,389,125,261,20,26,1000,73.27,81,3.4000000000000004,0.187 +2013,5,10,18,30,155,48,68,20,24,1010,82.36,81.4,2.9000000000000004,0.187 +2013,5,10,19,30,0,0,0,21,22,1010,95.78,83.80000000000001,2.5,0.187 +2013,5,10,20,30,0,0,0,21,21,1010,100,85.60000000000001,2.2,0.187 +2013,5,10,21,30,0,0,0,21,21,1010,100,81.60000000000001,1.8,0.187 +2013,5,10,22,30,0,0,0,21,21,1010,100,56.6,2.2,0.187 +2013,5,10,23,30,0,0,0,21,21,1010,100,25.200000000000003,3.3000000000000003,0.187 +2013,5,11,0,30,0,0,0,21,21,1010,100,23.1,4,0.187 +2013,5,11,1,30,0,0,0,21,21,1010,100,33.2,3.8000000000000003,0.187 +2013,5,11,2,30,0,0,0,21,21,1010,100,45.800000000000004,2.4000000000000004,0.187 +2013,5,11,3,30,0,0,0,21,21,1010,100,65.9,1.2000000000000002,0.187 +2013,5,11,4,30,0,0,0,21,21,1010,100,81.80000000000001,1.1,0.187 +2013,5,11,5,30,0,0,0,21,21,1010,100,54.7,2.1,0.187 +2013,5,11,6,30,0,16,16,21,21,1010,100,37.5,3.7,0.187 +2013,5,11,7,30,193,147,220,21,22,1010,96.55,15.9,5,0.187 +2013,5,11,8,30,248,263,406,21,24,1010,83.35000000000001,10.9,5.800000000000001,0.187 +2013,5,11,9,30,595,237,682,20,25,1010,74.96000000000001,15.9,5.7,0.187 +2013,5,11,10,30,662,252,835,19,27,1010,64.43,23.700000000000003,5.2,0.187 +2013,5,11,11,30,707,253,933,19,28,1010,59.06,35.800000000000004,4.6000000000000005,0.187 +2013,5,11,12,30,791,201,981,19,29,1010,55.08,50.1,4.1000000000000005,0.187 +2013,5,11,13,30,770,205,941,18,29,1010,54.83,56.2,3.5,0.187 +2013,5,11,14,30,715,213,833,18,29,1010,57.75,55.2,3.2,0.187 +2013,5,11,15,30,489,290,647,18,28,1010,57.76,55.7,3,0.187 +2013,5,11,16,30,408,232,459,19,27,1010,62,55.7,2.9000000000000004,0.187 +2013,5,11,17,30,289,152,254,19,26,1010,68.25,60.2,2.5,0.187 +2013,5,11,18,30,96,52,64,20,24,1010,80.74,67.3,2.1,0.187 +2013,5,11,19,30,0,0,0,20,23,1010,86.43,71,2.1,0.187 +2013,5,11,20,30,0,0,0,20,22,1010,91.43,74,2.5,0.187 +2013,5,11,21,30,0,0,0,20,22,1010,90.66,74.2,2.7,0.187 +2013,5,11,22,30,0,0,0,20,21,1010,95.51,69.8,2.3000000000000003,0.187 +2013,5,11,23,30,0,0,0,20,21,1010,94.47,60.5,1.6,0.187 +2013,5,12,0,30,0,0,0,19,20,1010,99.42,57.900000000000006,1.2000000000000002,0.187 +2013,5,12,1,30,0,0,0,19,20,1010,97.88,40.6,1.2000000000000002,0.187 +2013,5,12,2,30,0,0,0,19,20,1010,94.81,34,1.5,0.187 +2013,5,12,3,30,0,0,0,18,19,1010,97.71000000000001,44.2,1.6,0.187 +2013,5,12,4,30,0,0,0,18,19,1010,95.16,46.800000000000004,1.8,0.187 +2013,5,12,5,30,0,0,0,17,19,1010,92.54,48.300000000000004,2.3000000000000003,0.187 +2013,5,12,6,30,0,20,20,17,20,1010,84.67,44,2.9000000000000004,0.187 +2013,5,12,7,30,0,9,9,16,22,1010,71.31,45.7,3.3000000000000003,0.187 +2013,5,12,8,30,0,21,21,16,23,1010,65.09,46.1,3.4000000000000004,0.187 +2013,5,12,9,30,0,108,108,16,24,1010,64.15,43.7,3.6,0.187 +2013,5,12,10,30,26,340,364,17,25,1010,63.36,41.900000000000006,3.8000000000000003,0.187 +2013,5,12,11,30,12,250,262,18,25,1010,65.41,45.6,4,0.187 +2013,5,12,12,30,16,304,320,18,25,1010,66.83,52.400000000000006,4.3,0.187 +2013,5,12,13,30,143,484,621,18,25,1010,68.09,58.800000000000004,4.5,0.187 +2013,5,12,14,30,329,399,685,18,25,1010,68.51,62.400000000000006,4.6000000000000005,0.187 +2013,5,12,15,30,2,169,170,18,25,1010,67.8,66.4,4.800000000000001,0.187 +2013,5,12,16,30,0,105,105,18,24,1010,70.27,71.8,4.7,0.187 +2013,5,12,17,30,456,113,274,17,23,1010,72.78,75.9,4.1000000000000005,0.187 +2013,5,12,18,30,171,50,73,18,22,1010,79.15,79.9,3.1,0.187 +2013,5,12,19,30,0,0,0,18,20,1010,92.81,84.30000000000001,2.5,0.187 +2013,5,12,20,30,0,0,0,18,20,1010,93.04,85.10000000000001,2.3000000000000003,0.187 +2013,5,12,21,30,0,0,0,18,20,1020,98.19,83.30000000000001,2.3000000000000003,0.187 +2013,5,12,22,30,0,0,0,18,19,1020,96.42,81.80000000000001,2.4000000000000004,0.187 +2013,5,12,23,30,0,0,0,18,19,1010,94.28,74.60000000000001,2.1,0.187 +2013,5,13,0,30,0,0,0,17,19,1020,92.8,76.5,1.7000000000000002,0.187 +2013,5,13,1,30,0,0,0,17,19,1020,91.23,90.4,1.6,0.187 +2013,5,13,2,30,0,0,0,17,18,1020,93.9,89.7,1.6,0.187 +2013,5,13,3,30,0,0,0,16,18,1020,91.51,75.10000000000001,1.5,0.187 +2013,5,13,4,30,0,0,0,16,18,1020,91.21000000000001,56.400000000000006,1.6,0.187 +2013,5,13,5,30,0,0,0,16,18,1020,91.85000000000001,42,2,0.187 +2013,5,13,6,30,145,55,78,17,20,1020,84.62,37.7,2.9000000000000004,0.187 +2013,5,13,7,30,565,100,313,17,22,1020,73.7,42.800000000000004,3.8000000000000003,0.187 +2013,5,13,8,30,708,124,534,16,24,1020,61.410000000000004,56,4.1000000000000005,0.187 +2013,5,13,9,30,786,141,731,15,25,1020,55.34,67.10000000000001,3.8000000000000003,0.187 +2013,5,13,10,30,814,162,880,15,26,1020,51,71.60000000000001,3.3000000000000003,0.187 +2013,5,13,11,30,826,177,972,15,27,1020,47.84,78.4,3.4000000000000004,0.187 +2013,5,13,12,30,810,196,996,14,28,1020,44.95,88.7,3.8000000000000003,0.187 +2013,5,13,13,30,807,189,960,14,28,1020,44.910000000000004,95.5,4.3,0.187 +2013,5,13,14,30,789,173,859,15,27,1020,48,100.9,4.6000000000000005,0.187 +2013,5,13,15,30,668,196,685,15,26,1020,51.39,103.5,4.4,0.187 +2013,5,13,16,30,241,237,371,15,25,1020,55.25,103.10000000000001,3.9000000000000004,0.187 +2013,5,13,17,30,106,140,177,15,24,1020,60.04,106.7,3.2,0.187 +2013,5,13,18,30,0,32,32,16,22,1020,71.33,112.5,2.5,0.187 +2013,5,13,19,30,0,0,0,17,21,1020,81.58,114.2,2.3000000000000003,0.187 +2013,5,13,20,30,0,0,0,18,21,1020,89.8,114.2,2.4000000000000004,0.187 +2013,5,13,21,30,0,0,0,18,20,1020,91.28,111.80000000000001,2.6,0.187 +2013,5,13,22,30,0,0,0,18,20,1020,91.34,110.30000000000001,2.7,0.187 +2013,5,13,23,30,0,0,0,18,20,1020,91.35000000000001,114.4,2.5,0.187 +2013,5,14,0,30,0,0,0,18,19,1020,97.7,124.7,2.2,0.187 +2013,5,14,1,30,0,0,0,18,19,1020,98.13,139.5,1.9000000000000001,0.187 +2013,5,14,2,30,0,0,0,18,19,1020,98.05,152.1,1.7000000000000002,0.187 +2013,5,14,3,30,0,0,0,18,19,1020,98.83,151.5,1.7000000000000002,0.187 +2013,5,14,4,30,0,0,0,18,19,1010,99.75,144.20000000000002,1.7000000000000002,0.187 +2013,5,14,5,30,0,0,0,19,20,1020,94.60000000000001,138.9,1.9000000000000001,0.187 +2013,5,14,6,30,0,21,21,19,22,1020,86.77,134.5,2.7,0.187 +2013,5,14,7,30,382,143,288,19,23,1020,79.87,139.20000000000002,3.5,0.187 +2013,5,14,8,30,520,195,497,19,25,1020,70.29,147,3.8000000000000003,0.187 +2013,5,14,9,30,201,354,505,19,26,1020,67.26,149.5,3.9000000000000004,0.187 +2013,5,14,10,30,106,429,523,19,27,1020,64.14,147.9,4,0.187 +2013,5,14,11,30,262,477,730,19,28,1020,61.25,146.70000000000002,4.1000000000000005,0.187 +2013,5,14,12,30,670,286,948,19,28,1010,61.64,145.6,4.3,0.187 +2013,5,14,13,30,653,286,910,20,28,1010,62.04,144.1,4.5,0.187 +2013,5,14,14,30,622,270,811,20,27,1010,66.25,142.1,4.9,0.187 +2013,5,14,15,30,604,223,666,20,27,1010,66.64,139.70000000000002,5.1000000000000005,0.187 +2013,5,14,16,30,507,189,473,20,26,1010,70.99,140.1,5.2,0.187 +2013,5,14,17,30,354,137,263,20,25,1010,76.06,140.6,5.1000000000000005,0.187 +2013,5,14,18,30,116,53,69,20,23,1010,87.67,138.9,4.800000000000001,0.187 +2013,5,14,19,30,0,0,0,21,23,1010,90.24,137.3,4.7,0.187 +2013,5,14,20,30,0,0,0,21,23,1010,97.51,137.6,4.800000000000001,0.187 +2013,5,14,21,30,0,0,0,21,22,1010,98.03,140.5,4.800000000000001,0.187 +2013,5,14,22,30,0,0,0,21,22,1010,97.72,145.6,4.6000000000000005,0.187 +2013,5,14,23,30,0,0,0,21,22,1010,97.47,152.8,4.4,0.187 +2013,5,15,0,30,0,0,0,21,22,1010,97.81,158.70000000000002,4.2,0.187 +2013,5,15,1,30,0,0,0,21,22,1010,98.62,161.20000000000002,4.2,0.187 +2013,5,15,2,30,0,0,0,21,22,1010,99.49000000000001,159.9,4.2,0.187 +2013,5,15,3,30,0,0,0,21,22,1010,99.97,156.9,4.2,0.187 +2013,5,15,4,30,0,0,0,22,22,1010,100,152.1,4.1000000000000005,0.187 +2013,5,15,5,30,0,0,0,22,22,1010,100,147.4,4.1000000000000005,0.187 +2013,5,15,6,30,27,56,60,22,22,1010,100,146.70000000000002,4.6000000000000005,0.187 +2013,5,15,7,30,0,46,46,22,24,1010,89.83,149.5,5.4,0.187 +2013,5,15,8,30,270,245,402,21,26,1010,82.3,154.5,6.2,0.187 +2013,5,15,9,30,84,344,407,21,27,1010,71.99,158,6.6000000000000005,0.187 +2013,5,15,10,30,4,164,168,21,28,1010,67.18,159.9,6.800000000000001,0.187 +2013,5,15,11,30,10,218,228,21,29,1010,62.81,160.70000000000002,6.7,0.187 +2013,5,15,12,30,13,255,268,21,29,1010,62.22,160.9,6.6000000000000005,0.187 +2013,5,15,13,30,75,458,530,20,29,1010,61.870000000000005,160.8,6.5,0.187 +2013,5,15,14,30,177,432,586,20,29,1010,61.730000000000004,159.8,6.5,0.187 +2013,5,15,15,30,491,287,648,20,28,1010,65.64,156,6.6000000000000005,0.187 +2013,5,15,16,30,399,236,460,21,27,1010,70.65,150.6,6.800000000000001,0.187 +2013,5,15,17,30,257,163,255,21,26,1010,81,147.5,6.800000000000001,0.187 +2013,5,15,18,30,65,56,66,21,24,1010,87.41,146.1,6.4,0.187 +2013,5,15,19,30,0,0,0,22,23,1010,94.47,145.1,6,0.187 +2013,5,15,20,30,0,0,0,22,23,1010,95.64,146.8,5.9,0.187 +2013,5,15,21,30,0,0,0,22,23,1010,95.61,149.4,5.9,0.187 +2013,5,15,22,30,0,0,0,22,23,1010,95.08,153.20000000000002,5.9,0.187 +2013,5,15,23,30,0,0,0,22,23,1010,100,157.8,5.7,0.187 +2013,5,16,0,30,0,0,0,21,22,1010,99.57000000000001,161.10000000000002,5.5,0.187 +2013,5,16,1,30,0,0,0,21,22,1010,98.79,164.4,5.5,0.187 +2013,5,16,2,30,0,0,0,21,22,1010,97.52,168.20000000000002,5.4,0.187 +2013,5,16,3,30,0,0,0,21,22,1000,96.55,169.8,5,0.187 +2013,5,16,4,30,0,0,0,21,22,1000,96.52,168.9,4.6000000000000005,0.187 +2013,5,16,5,30,0,0,0,21,22,1000,97.25,167.20000000000002,4.7,0.187 +2013,5,16,6,30,211,64,99,21,23,1010,92.74,165.10000000000002,5.5,0.187 +2013,5,16,7,30,485,119,304,21,25,1010,81.89,169.5,6.4,0.187 +2013,5,16,8,30,650,145,523,21,27,1000,71.94,174.20000000000002,6.6000000000000005,0.187 +2013,5,16,9,30,741,161,719,21,29,1000,64.13,175.3,6.5,0.187 +2013,5,16,10,30,790,173,871,21,31,1000,60.69,174.3,6.2,0.187 +2013,5,16,11,30,814,181,965,21,32,1000,54.04,172.20000000000002,5.9,0.187 +2013,5,16,12,30,772,217,981,21,33,1000,50.6,168.5,5.5,0.187 +2013,5,16,13,30,755,217,940,21,33,1000,49.88,163.4,5.300000000000001,0.187 +2013,5,16,14,30,716,212,836,20,33,1000,49.34,156.70000000000002,5.300000000000001,0.187 +2013,5,16,15,30,655,196,678,20,32,1000,52.01,152,5.4,0.187 +2013,5,16,16,30,549,173,481,21,31,1000,55.59,148.1,5.7,0.187 +2013,5,16,17,30,378,132,267,21,28,1000,68.49,144.6,6,0.187 +2013,5,16,18,30,116,55,72,22,26,1000,80.65,143.8,6,0.19 +2013,5,16,19,30,0,0,0,22,24,1000,93.81,144.20000000000002,5.6000000000000005,0.19 +2013,5,16,20,30,0,0,0,23,24,1000,95.59,147.1,5.4,0.19 +2013,5,16,21,30,0,0,0,23,23,1000,100,151.20000000000002,5.4,0.19 +2013,5,16,22,30,0,0,0,23,23,1000,100,154.10000000000002,5.300000000000001,0.19 +2013,5,16,23,30,0,0,0,23,23,1000,100,156.70000000000002,5.1000000000000005,0.19 +2013,5,17,0,30,0,0,0,22,23,1000,99.93,158.10000000000002,4.9,0.19 +2013,5,17,1,30,0,0,0,22,23,1000,99.59,159.3,4.6000000000000005,0.19 +2013,5,17,2,30,0,0,0,22,23,1000,99.52,159.10000000000002,4.5,0.19 +2013,5,17,3,30,0,0,0,22,23,1000,99.74000000000001,157.20000000000002,4.3,0.19 +2013,5,17,4,30,0,0,0,22,22,1000,100,155,4.1000000000000005,0.19 +2013,5,17,5,30,0,0,0,22,22,1000,100,154.60000000000002,4.1000000000000005,0.19 +2013,5,17,6,30,167,67,95,23,24,1000,94.75,154.5,4.6000000000000005,0.19 +2013,5,17,7,30,425,135,298,22,26,1010,83.47,159.4,5.2,0.19 +2013,5,17,8,30,593,169,515,22,28,1010,70.99,163.8,5.4,0.19 +2013,5,17,9,30,688,191,710,21,29,1010,65.16,163.70000000000002,5.4,0.19 +2013,5,17,10,30,745,203,862,21,31,1010,58.04,161.60000000000002,5.4,0.19 +2013,5,17,11,30,776,209,958,21,32,1000,55.04,158.8,5.5,0.19 +2013,5,17,12,30,766,224,982,21,33,1000,51.980000000000004,156.3,5.5,0.19 +2013,5,17,13,30,755,221,945,21,33,1000,51.94,154,5.5,0.19 +2013,5,17,14,30,727,210,844,21,33,1000,52.27,151.9,5.6000000000000005,0.19 +2013,5,17,15,30,682,187,691,21,32,1000,55.22,150.3,5.5,0.19 +2013,5,17,16,30,605,157,497,21,31,1000,58.18,149.20000000000002,5.5,0.19 +2013,5,17,17,30,465,115,283,22,29,1000,66.03,145.3,5.5,0.19 +2013,5,17,18,30,197,54,82,22,27,1000,81.27,137.4,5.300000000000001,0.19 +2013,5,17,19,30,0,0,0,23,25,1010,95.59,132.8,4.800000000000001,0.19 +2013,5,17,20,30,0,0,0,23,24,1010,98.72,128.20000000000002,4.3,0.19 +2013,5,17,21,30,0,0,0,23,24,1010,99.85000000000001,128.6,4.2,0.19 +2013,5,17,22,30,0,0,0,24,24,1010,100,133.9,4.2,0.19 +2013,5,17,23,30,0,0,0,24,24,1010,100,141.20000000000002,4.3,0.19 +2013,5,18,0,30,0,0,0,24,24,1010,100,148.4,4.3,0.19 +2013,5,18,1,30,0,0,0,24,24,1010,100,154.4,4.4,0.19 +2013,5,18,2,30,0,0,0,24,24,1010,100,158.10000000000002,4.5,0.19 +2013,5,18,3,30,0,0,0,24,24,1010,100,157.20000000000002,4.5,0.19 +2013,5,18,4,30,0,0,0,23,24,1010,100,153.9,4.4,0.19 +2013,5,18,5,30,0,0,0,23,24,1010,100,150.9,4.6000000000000005,0.19 +2013,5,18,6,30,217,62,98,24,25,1010,95.78,148.1,5.4,0.19 +2013,5,18,7,30,468,121,301,23,27,1010,87.13,152,6.300000000000001,0.19 +2013,5,18,8,30,616,156,516,22,28,1010,69.93,155.20000000000002,6.9,0.19 +2013,5,18,9,30,697,181,707,20,30,1010,56.68,156.4,7.1000000000000005,0.19 +2013,5,18,10,30,733,204,853,19,31,1010,50.730000000000004,157.9,7.1000000000000005,0.19 +2013,5,18,11,30,456,411,852,19,32,1010,47.44,158.9,7,0.19 +2013,5,18,12,30,385,443,824,19,32,1010,47.88,158.9,6.9,0.19 +2013,5,18,13,30,491,401,872,19,32,1010,48.86,157.10000000000002,6.9,0.19 +2013,5,18,14,30,308,408,677,20,32,1000,50,155.10000000000002,6.800000000000001,0.19 +2013,5,18,15,30,539,243,641,20,31,1000,53.45,153.70000000000002,6.5,0.19 +2013,5,18,16,30,270,236,388,20,30,1000,57.54,152.20000000000002,6,0.19 +2013,5,18,17,30,187,141,209,21,28,1010,67.31,147,5.2,0.19 +2013,5,18,18,30,0,41,41,22,26,1010,80.81,138.20000000000002,4.800000000000001,0.19 +2013,5,18,19,30,0,0,0,23,25,1010,96.05,132.4,5,0.19 +2013,5,18,20,30,0,0,0,23,24,1000,98.71000000000001,130.20000000000002,5.5,0.19 +2013,5,18,21,30,0,0,0,23,24,1000,99.55,132.3,5.6000000000000005,0.19 +2013,5,18,22,30,0,0,0,23,24,1000,99.9,144.4,5.4,0.19 +2013,5,18,23,30,0,0,0,24,24,1000,100,158,5.300000000000001,0.19 +2013,5,19,0,30,0,0,0,24,24,1000,100,161.10000000000002,5.2,0.19 +2013,5,19,1,30,0,0,0,24,24,1000,100,156.10000000000002,5.2,0.19 +2013,5,19,2,30,0,0,0,24,24,1000,100,151.3,5.300000000000001,0.19 +2013,5,19,3,30,0,0,0,24,24,1000,100,147.8,5.2,0.19 +2013,5,19,4,30,0,0,0,24,24,1000,100,144.8,5.2,0.19 +2013,5,19,5,30,0,0,0,24,24,1000,100,144,5.300000000000001,0.19 +2013,5,19,6,30,221,63,100,24,25,1000,95.89,144.1,5.9,0.19 +2013,5,19,7,30,464,123,302,23,26,1000,88.55,150.1,6.800000000000001,0.19 +2013,5,19,8,30,596,165,513,23,28,1000,75.07000000000001,156.4,7.2,0.19 +2013,5,19,9,30,668,197,702,22,29,1000,68.79,159.70000000000002,7.300000000000001,0.19 +2013,5,19,10,30,708,221,848,22,30,1000,63.47,160.70000000000002,7.2,0.19 +2013,5,19,11,30,722,240,938,21,31,1000,58.34,160.60000000000002,7.1000000000000005,0.19 +2013,5,19,12,30,661,293,949,21,32,1000,57.08,158.70000000000002,6.800000000000001,0.19 +2013,5,19,13,30,625,306,906,21,32,1000,53.27,156.5,6.6000000000000005,0.19 +2013,5,19,14,30,570,304,802,21,31,1000,56.11,153.8,6.4,0.19 +2013,5,19,15,30,559,247,660,21,30,1000,59.45,151.4,6.4,0.19 +2013,5,19,16,30,472,205,471,21,29,1000,63.24,148.9,6.300000000000001,0.19 +2013,5,19,17,30,346,140,266,21,28,1000,68.21000000000001,144.5,6.1000000000000005,0.19 +2013,5,19,18,30,133,56,75,22,26,1000,80.18,138.6,5.5,0.19 +2013,5,19,19,30,0,0,0,23,24,1000,96,132.6,5,0.19 +2013,5,19,20,30,0,0,0,23,24,1000,99.98,132.4,4.6000000000000005,0.19 +2013,5,19,21,30,0,0,0,24,24,1000,100,135.6,4.5,0.19 +2013,5,19,22,30,0,0,0,24,24,1000,100,138.70000000000002,4.5,0.19 +2013,5,19,23,30,0,0,0,24,24,1000,100,141.70000000000002,4.5,0.19 +2013,5,20,0,30,0,0,0,24,24,1000,100,144.5,4.5,0.19 +2013,5,20,1,30,0,0,0,24,24,1000,100,145.70000000000002,4.4,0.19 +2013,5,20,2,30,0,0,0,24,24,1000,100,145,4.4,0.19 +2013,5,20,3,30,0,0,0,23,24,1000,100,143.9,4.3,0.19 +2013,5,20,4,30,0,0,0,23,23,1000,100,141.9,4.3,0.19 +2013,5,20,5,30,0,0,0,23,23,1000,100,140.3,4.5,0.19 +2013,5,20,6,30,0,39,39,24,25,1000,95.98,141.5,5.300000000000001,0.19 +2013,5,20,7,30,9,132,136,23,27,1000,87.87,148.70000000000002,5.9,0.19 +2013,5,20,8,30,77,256,302,23,28,1000,74.92,153.70000000000002,6.1000000000000005,0.19 +2013,5,20,9,30,317,335,575,22,29,1000,68.88,154.4,6.1000000000000005,0.19 +2013,5,20,10,30,277,409,655,22,30,1000,63.77,152.9,6.1000000000000005,0.19 +2013,5,20,11,30,746,225,946,22,31,1000,59.35,150.1,6.1000000000000005,0.19 +2013,5,20,12,30,653,300,948,21,32,1000,55.28,146.70000000000002,6.1000000000000005,0.19 +2013,5,20,13,30,627,305,907,21,32,1000,55.07,143.1,6,0.19 +2013,5,20,14,30,587,293,807,21,31,1000,58.300000000000004,140.20000000000002,5.9,0.19 +2013,5,20,15,30,512,273,652,21,30,1000,61.19,138.1,5.800000000000001,0.19 +2013,5,20,16,30,430,221,465,21,29,1000,64.07000000000001,135.6,5.800000000000001,0.19 +2013,5,20,17,30,302,150,260,21,28,1000,68.52,131.8,5.6000000000000005,0.19 +2013,5,20,18,30,109,55,71,22,26,1000,80.56,126.30000000000001,5.1000000000000005,0.19 +2013,5,20,19,30,0,0,0,23,24,1000,97.05,120.9,4.3,0.19 +2013,5,20,20,30,0,0,0,24,24,1000,100,123.30000000000001,3.7,0.19 +2013,5,20,21,30,0,0,0,24,24,1000,100,136.20000000000002,3.7,0.19 +2013,5,20,22,30,0,0,0,24,24,1000,100,141.4,3.9000000000000004,0.19 +2013,5,20,23,30,0,0,0,24,24,1000,100,139.1,4.1000000000000005,0.19 +2013,5,21,0,30,0,0,0,24,24,1000,100,139.70000000000002,4.3,0.19 +2013,5,21,1,30,0,0,0,24,24,1000,100,142.3,4.5,0.19 +2013,5,21,2,30,0,0,0,24,24,1000,100,144,4.6000000000000005,0.19 +2013,5,21,3,30,0,0,0,24,24,1000,100,143.5,4.5,0.19 +2013,5,21,4,30,0,0,0,24,24,1000,100,143.3,4.5,0.19 +2013,5,21,5,30,0,0,0,24,24,1000,100,143.9,4.5,0.19 +2013,5,21,6,30,0,42,42,24,25,1000,97.01,142.3,5.1000000000000005,0.19 +2013,5,21,7,30,42,147,164,23,26,1000,88.31,146.6,5.9,0.19 +2013,5,21,8,30,25,219,234,23,28,1000,75.06,149.4,6.300000000000001,0.19 +2013,5,21,9,30,32,300,325,22,29,1000,69.67,151.3,6.4,0.19 +2013,5,21,10,30,53,395,443,22,30,1000,65.28,153,6.300000000000001,0.19 +2013,5,21,11,30,579,343,903,22,31,1000,60.980000000000004,153.5,6.1000000000000005,0.19 +2013,5,21,12,30,595,343,933,22,32,1000,57.21,153.20000000000002,5.800000000000001,0.19 +2013,5,21,13,30,102,477,576,22,32,1000,56.93,152.5,5.4,0.19 +2013,5,21,14,30,555,315,801,22,32,1000,56.870000000000005,152.3,5,0.19 +2013,5,21,15,30,527,265,656,22,32,1000,60.300000000000004,150.20000000000002,4.6000000000000005,0.19 +2013,5,21,16,30,379,237,452,22,31,1000,64.28,145.9,4.5,0.19 +2013,5,21,17,30,301,153,263,22,29,1000,69.07000000000001,139.8,4.3,0.19 +2013,5,21,18,30,96,59,73,23,28,1000,80.18,130.5,4.1000000000000005,0.19 +2013,5,21,19,30,0,0,0,24,26,1000,94.41,120.5,4,0.19 +2013,5,21,20,30,0,0,0,24,25,1000,98.11,114.4,3.8000000000000003,0.19 +2013,5,21,21,30,0,0,0,24,25,1000,99.36,116.60000000000001,3.6,0.19 +2013,5,21,22,30,0,0,0,24,25,1000,99.28,124.9,3.4000000000000004,0.19 +2013,5,21,23,30,0,0,0,24,25,1000,98.69,137,3.1,0.19 +2013,5,22,0,30,0,0,0,24,25,1000,100,146.1,2.6,0.19 +2013,5,22,1,30,0,0,0,24,24,1000,100,146.1,1.8,0.19 +2013,5,22,2,30,0,0,0,24,24,1000,100,140.3,1.2000000000000002,0.19 +2013,5,22,3,30,0,0,0,24,24,1000,100,123.2,1.1,0.19 +2013,5,22,4,30,0,0,0,24,24,1000,100,103.30000000000001,1.2000000000000002,0.19 +2013,5,22,5,30,0,0,0,24,24,1000,100,96.5,1.7000000000000002,0.19 +2013,5,22,6,30,83,71,85,24,25,1000,97.02,103.10000000000001,2.3000000000000003,0.19 +2013,5,22,7,30,265,178,281,24,27,1010,85.25,125,2.8000000000000003,0.19 +2013,5,22,8,30,392,254,485,23,29,1010,73.09,142.6,3.2,0.19 +2013,5,22,9,30,451,322,664,23,30,1010,67.91,149.4,3.5,0.19 +2013,5,22,10,30,492,369,805,23,31,1010,64.18,150.8,3.6,0.19 +2013,5,22,11,30,529,386,897,23,31,1010,63.99,151.5,3.7,0.19 +2013,5,22,12,30,579,359,934,23,32,1000,60.03,149.70000000000002,3.6,0.19 +2013,5,22,13,30,588,338,903,23,32,1000,59.47,146.20000000000002,3.5,0.19 +2013,5,22,14,30,580,303,811,22,31,1000,62.27,140,3.5,0.19 +2013,5,22,15,30,546,260,666,22,30,1000,65.44,133.5,3.4000000000000004,0.19 +2013,5,22,16,30,485,205,481,22,29,1000,69.22,127.9,3.4000000000000004,0.19 +2013,5,22,17,30,356,144,275,22,28,1000,73.37,123.7,3.3000000000000003,0.19 +2013,5,22,18,30,129,61,81,22,27,1000,82.99,119.4,3,0.19 +2013,5,22,19,30,0,0,0,23,25,1000,90.57000000000001,114,2.9000000000000004,0.19 +2013,5,22,20,30,0,0,0,23,25,1000,93.53,111.30000000000001,2.9000000000000004,0.19 +2013,5,22,21,30,0,0,0,24,24,1010,100,110.80000000000001,2.8000000000000003,0.19 +2013,5,22,22,30,0,0,0,24,24,1010,100,112.4,2.5,0.19 +2013,5,22,23,30,0,0,0,24,24,1010,100,121.10000000000001,2.3000000000000003,0.19 +2013,5,23,0,30,0,0,0,24,24,1010,100,132.8,2.1,0.19 +2013,5,23,1,30,0,0,0,24,24,1010,100,127,2,0.19 +2013,5,23,2,30,0,0,0,23,24,1010,100,118.5,2.1,0.19 +2013,5,23,3,30,0,0,0,23,23,1010,100,115.5,2.2,0.19 +2013,5,23,4,30,0,0,0,23,23,1010,100,115.2,2.3000000000000003,0.19 +2013,5,23,5,30,0,0,0,23,24,1010,100,116.5,2.8000000000000003,0.19 +2013,5,23,6,30,134,73,96,24,25,1010,97.45,118.9,3.6,0.19 +2013,5,23,7,30,133,157,209,23,27,1010,83.41,125.4,4.1000000000000005,0.19 +2013,5,23,8,30,474,220,499,23,28,1010,74.60000000000001,133.20000000000002,4.1000000000000005,0.19 +2013,5,23,9,30,553,263,683,23,29,1010,70.23,138.4,4,0.19 +2013,5,23,10,30,126,437,549,23,30,1010,66.23,139.3,4,0.19 +2013,5,23,11,30,79,467,544,22,31,1010,62.230000000000004,137.3,4.1000000000000005,0.19 +2013,5,23,12,30,82,471,553,22,32,1010,58.5,134.3,4.3,0.19 +2013,5,23,13,30,569,350,897,22,32,1010,58.43,131,4.5,0.19 +2013,5,23,14,30,526,338,799,22,31,1010,61.82,128.70000000000002,4.6000000000000005,0.19 +2013,5,23,15,30,427,326,644,22,30,1010,65.1,126.30000000000001,4.5,0.19 +2013,5,23,16,30,360,256,462,22,29,1010,68.45,121.9,4.5,0.19 +2013,5,23,17,30,249,169,261,22,28,1010,72.72,116.4,4.6000000000000005,0.19 +2013,5,23,18,30,83,60,73,22,26,1010,82.59,111.5,4.4,0.19 +2013,5,23,19,30,0,0,0,23,25,1010,90.94,110.2,4.1000000000000005,0.19 +2013,5,23,20,30,0,0,0,24,25,1010,94.78,113.60000000000001,3.9000000000000004,0.19 +2013,5,23,21,30,0,0,0,24,25,1010,96.82000000000001,118.7,3.8000000000000003,0.19 +2013,5,23,22,30,0,0,0,24,25,1010,97.62,123.10000000000001,3.6,0.19 +2013,5,23,23,30,0,0,0,24,25,1010,98.19,122.9,3.3000000000000003,0.19 +2013,5,24,0,30,0,0,0,24,25,1010,98.52,117.4,3.1,0.19 +2013,5,24,1,30,0,0,0,24,25,1010,99.04,112.7,3.3000000000000003,0.19 +2013,5,24,2,30,0,0,0,24,25,1010,99.11,122,3.5,0.19 +2013,5,24,3,30,0,0,0,24,25,1010,100,127,3.6,0.19 +2013,5,24,4,30,0,0,0,24,24,1010,100,127.7,3.5,0.19 +2013,5,24,5,30,0,0,0,24,24,1010,100,126,3.7,0.19 +2013,5,24,6,30,148,71,97,24,26,1010,99.03,127.10000000000001,4.5,0.19 +2013,5,24,7,30,54,151,172,24,27,1010,84.78,132.9,5.2,0.19 +2013,5,24,8,30,170,260,361,23,28,1010,75.28,138.1,5.4,0.19 +2013,5,24,9,30,109,355,438,22,29,1010,68.9,139.3,5.4,0.19 +2013,5,24,10,30,197,438,614,22,30,1010,64.09,137.9,5.4,0.19 +2013,5,24,11,30,290,471,752,22,30,1010,63.2,135.9,5.4,0.19 +2013,5,24,12,30,357,457,812,22,30,1010,62.43,134.5,5.300000000000001,0.19 +2013,5,24,13,30,446,406,836,21,30,1010,61.96,133.4,5.1000000000000005,0.19 +2013,5,24,14,30,141,432,557,21,30,1010,65.46000000000001,131.6,4.9,0.19 +2013,5,24,15,30,1,161,162,21,29,1010,65.87,129,4.6000000000000005,0.19 +2013,5,24,16,30,0,39,39,22,28,1010,71.09,125.2,4.5,0.19 +2013,5,24,17,30,0,55,55,22,27,1010,77.72,120.30000000000001,4.3,0.19 +2013,5,24,18,30,0,28,28,23,25,1010,91.33,113.7,4,0.191 +2013,5,24,19,30,0,0,0,24,24,1010,100,106.7,3.8000000000000003,0.191 +2013,5,24,20,30,0,0,0,24,24,1010,100,103.9,3.9000000000000004,0.191 +2013,5,24,21,30,0,0,0,24,24,1010,100,105.5,4.1000000000000005,0.191 +2013,5,24,22,30,0,0,0,24,24,1010,100,109.60000000000001,4.2,0.191 +2013,5,24,23,30,0,0,0,24,24,1010,100,114.4,4.3,0.191 +2013,5,25,0,30,0,0,0,24,24,1010,100,119.9,4.2,0.191 +2013,5,25,1,30,0,0,0,24,24,1010,100,125.2,4.1000000000000005,0.191 +2013,5,25,2,30,0,0,0,24,24,1010,100,130.9,3.9000000000000004,0.191 +2013,5,25,3,30,0,0,0,24,24,1010,100,134.4,3.6,0.191 +2013,5,25,4,30,0,0,0,24,24,1010,100,136.70000000000002,3.4000000000000004,0.191 +2013,5,25,5,30,0,0,0,24,24,1010,100,138.4,3.8000000000000003,0.191 +2013,5,25,6,30,235,58,99,24,24,1010,100,142.3,4.4,0.191 +2013,5,25,7,30,25,143,153,24,26,1010,98.61,138.4,4.9,0.191 +2013,5,25,8,30,0,139,139,24,27,1010,85.29,140.20000000000002,5.5,0.191 +2013,5,25,9,30,34,303,329,23,28,1010,76.17,142.70000000000002,5.7,0.191 +2013,5,25,10,30,6,179,184,23,29,1010,74.81,144,5.6000000000000005,0.191 +2013,5,25,11,30,75,463,536,23,29,1010,70.37,144.4,5.5,0.191 +2013,5,25,12,30,54,455,509,23,29,1010,70.21000000000001,143.1,5.5,0.191 +2013,5,25,13,30,108,479,583,22,29,1010,69.72,140.1,5.5,0.191 +2013,5,25,14,30,54,391,439,22,29,1010,69.27,137,5.6000000000000005,0.191 +2013,5,25,15,30,75,334,390,22,28,1010,72.95,134.9,5.5,0.191 +2013,5,25,16,30,253,242,387,22,27,1010,77.76,131.70000000000002,5.4,0.191 +2013,5,25,17,30,0,102,102,23,26,1010,83.64,128.70000000000002,5.2,0.191 +2013,5,25,18,30,0,45,45,23,25,1010,90.3,126.4,4.7,0.191 +2013,5,25,19,30,0,0,0,23,25,1010,92.09,125.9,4.3,0.191 +2013,5,25,20,30,0,0,0,23,24,1010,99.06,128.1,4.1000000000000005,0.191 +2013,5,25,21,30,0,0,0,23,24,1010,99.83,132.9,4,0.191 +2013,5,25,22,30,0,0,0,24,24,1010,100,139.5,3.9000000000000004,0.191 +2013,5,25,23,30,0,0,0,24,24,1010,100,145,4,0.191 +2013,5,26,0,30,0,0,0,23,24,1010,99.72,149.1,4,0.191 +2013,5,26,1,30,0,0,0,23,24,1010,99.29,153.1,4,0.191 +2013,5,26,2,30,0,0,0,23,24,1010,99.08,152.70000000000002,3.8000000000000003,0.191 +2013,5,26,3,30,0,0,0,23,24,1010,100,147.5,3.7,0.191 +2013,5,26,4,30,0,0,0,23,23,1010,100,144,3.8000000000000003,0.191 +2013,5,26,5,30,0,0,0,23,23,1010,100,141.8,3.9000000000000004,0.191 +2013,5,26,6,30,180,67,99,23,25,1010,93.16,139.20000000000002,4.5,0.191 +2013,5,26,7,30,494,109,303,23,26,1010,86.24,142,5,0.191 +2013,5,26,8,30,222,256,387,22,27,1010,77.72,143.4,5.1000000000000005,0.191 +2013,5,26,9,30,713,169,710,22,28,1010,70.74,143.1,5.1000000000000005,0.191 +2013,5,26,10,30,762,182,859,21,29,1010,68.98,143,5.300000000000001,0.191 +2013,5,26,11,30,526,335,845,21,29,1010,63.63,142.5,5.4,0.191 +2013,5,26,12,30,800,188,983,21,29,1010,62.67,140.20000000000002,5.4,0.191 +2013,5,26,13,30,461,407,851,20,28,1010,65.73,138,5.4,0.191 +2013,5,26,14,30,458,346,749,20,28,1010,65.41,136.4,5.5,0.191 +2013,5,26,15,30,568,226,650,20,28,1010,65.41,135.70000000000002,5.4,0.191 +2013,5,26,16,30,181,251,355,20,27,1010,69.25,135,5.300000000000001,0.191 +2013,5,26,17,30,460,108,280,21,26,1010,74.31,134.8,5,0.191 +2013,5,26,18,30,149,61,84,21,25,1010,81.48,134.3,4.4,0.191 +2013,5,26,19,30,0,0,0,22,24,1010,89.88,133.9,4,0.191 +2013,5,26,20,30,0,0,0,22,24,1010,92.07000000000001,135.70000000000002,3.9000000000000004,0.191 +2013,5,26,21,30,0,0,0,22,24,1010,93.11,139.1,4,0.191 +2013,5,26,22,30,0,0,0,22,24,1010,93.39,144.3,4.3,0.191 +2013,5,26,23,30,0,0,0,22,24,1010,93.65,149.5,4.5,0.191 +2013,5,27,0,30,0,0,0,22,24,1010,93.99,153.9,4.6000000000000005,0.191 +2013,5,27,1,30,0,0,0,23,24,1010,94.43,157,4.4,0.191 +2013,5,27,2,30,0,0,0,23,24,1010,95.33,157.3,4.2,0.191 +2013,5,27,3,30,0,0,0,23,24,1010,96.32000000000001,155.5,4.1000000000000005,0.191 +2013,5,27,4,30,0,0,0,23,24,1010,100,152.70000000000002,3.9000000000000004,0.191 +2013,5,27,5,30,0,0,0,23,24,1010,100,149.6,4.2,0.191 +2013,5,27,6,30,218,69,108,23,25,1010,92.82000000000001,146.9,5.1000000000000005,0.191 +2013,5,27,7,30,476,123,310,23,27,1010,80.08,152.4,6,0.191 +2013,5,27,8,30,615,157,520,22,28,1010,72.53,155.70000000000002,6.300000000000001,0.191 +2013,5,27,9,30,700,177,709,22,29,1010,67.35,155.20000000000002,6.300000000000001,0.191 +2013,5,27,10,30,246,431,650,22,30,1010,62.82,154.5,6.300000000000001,0.191 +2013,5,27,11,30,772,201,949,21,31,1010,58.61,153.5,6.300000000000001,0.191 +2013,5,27,12,30,799,189,984,21,32,1010,54.93,152.5,6.4,0.191 +2013,5,27,13,30,787,189,947,21,32,1010,54.56,151.6,6.5,0.191 +2013,5,27,14,30,753,186,848,21,31,1010,57.410000000000004,150.70000000000002,6.6000000000000005,0.191 +2013,5,27,15,30,592,234,676,21,30,1010,60.31,149.8,6.6000000000000005,0.191 +2013,5,27,16,30,523,191,491,21,29,1010,63.46,148.6,6.5,0.191 +2013,5,27,17,30,419,132,289,21,28,1010,67.58,145.8,6.300000000000001,0.191 +2013,5,27,18,30,192,63,94,21,26,1010,77.96000000000001,142.3,5.9,0.191 +2013,5,27,19,30,0,0,0,22,25,1010,86.53,139.4,5.6000000000000005,0.191 +2013,5,27,20,30,0,0,0,23,25,1010,90.04,139.6,5.6000000000000005,0.191 +2013,5,27,21,30,0,0,0,23,25,1010,91.47,141.4,5.6000000000000005,0.191 +2013,5,27,22,30,0,0,0,23,25,1010,97.22,143.8,5.6000000000000005,0.191 +2013,5,27,23,30,0,0,0,23,25,1010,96.92,145.3,5.6000000000000005,0.191 +2013,5,28,0,30,0,0,0,23,25,1010,96.39,146.8,5.7,0.191 +2013,5,28,1,30,0,0,0,23,25,1010,89.76,150,5.9,0.191 +2013,5,28,2,30,0,0,0,23,25,1010,88.78,151.6,6,0.191 +2013,5,28,3,30,0,0,0,22,25,1010,88.38,152.9,6.1000000000000005,0.191 +2013,5,28,4,30,0,0,0,22,25,1010,88.3,154.9,6,0.191 +2013,5,28,5,30,0,0,0,22,25,1010,87.86,156.5,6,0.191 +2013,5,28,6,30,207,72,110,22,26,1010,87.81,157.8,6.4,0.191 +2013,5,28,7,30,475,127,313,22,27,1010,76.10000000000001,161.20000000000002,7,0.191 +2013,5,28,8,30,86,255,306,21,28,1010,69.73,162.10000000000002,7,0.191 +2013,5,28,9,30,68,339,391,21,30,1010,61.32,161.4,6.6000000000000005,0.191 +2013,5,28,10,30,50,392,436,21,31,1010,57.79,158.20000000000002,6.4,0.191 +2013,5,28,11,30,762,211,949,21,32,1000,54.71,153.9,6.6000000000000005,0.191 +2013,5,28,12,30,744,232,972,21,32,1000,55.1,150.1,6.9,0.191 +2013,5,28,13,30,718,239,932,21,32,1000,55.370000000000005,146.70000000000002,7.4,0.191 +2013,5,28,14,30,680,234,833,22,31,1000,59.01,144.5,7.7,0.191 +2013,5,28,15,30,585,238,675,21,30,1000,62.21,143.1,7.9,0.191 +2013,5,28,16,30,525,190,492,21,29,1000,65.75,141.3,7.800000000000001,0.191 +2013,5,28,17,30,417,132,289,22,28,1000,70.76,139.5,7.6000000000000005,0.191 +2013,5,28,18,30,185,65,95,22,26,1000,81.60000000000001,137.5,7.2,0.191 +2013,5,28,19,30,0,0,0,23,25,1000,89.01,135.9,7,0.191 +2013,5,28,20,30,0,0,0,23,25,1000,90.60000000000001,135.8,7,0.191 +2013,5,28,21,30,0,0,0,23,25,1000,90.87,137.4,7,0.191 +2013,5,28,22,30,0,0,0,23,25,1000,90.53,140.3,6.800000000000001,0.191 +2013,5,28,23,30,0,0,0,23,25,1000,90.37,143.9,6.6000000000000005,0.191 +2013,5,29,0,30,0,0,0,23,25,1000,90.66,146.1,6.300000000000001,0.191 +2013,5,29,1,30,0,0,0,23,25,1000,91.13,148,6,0.191 +2013,5,29,2,30,0,0,0,23,25,1000,91.71000000000001,150.20000000000002,5.5,0.191 +2013,5,29,3,30,0,0,0,23,25,1000,92.17,150.9,5.1000000000000005,0.191 +2013,5,29,4,30,0,0,0,23,25,1000,91.99,150.4,4.800000000000001,0.191 +2013,5,29,5,30,0,0,0,23,25,1000,91.69,150.20000000000002,4.7,0.191 +2013,5,29,6,30,229,59,100,23,26,1000,91.91,151.6,5.300000000000001,0.191 +2013,5,29,7,30,6,131,134,23,27,1000,80.69,156,6.1000000000000005,0.191 +2013,5,29,8,30,0,159,160,22,28,1000,73.41,161.10000000000002,6.800000000000001,0.191 +2013,5,29,9,30,34,303,329,22,29,1000,68.15,161.4,7.2,0.191 +2013,5,29,10,30,118,436,541,22,30,1000,63.620000000000005,159.20000000000002,7.7,0.191 +2013,5,29,11,30,43,423,465,22,30,1000,63.08,155.10000000000002,8.1,0.191 +2013,5,29,12,30,43,437,480,22,30,1000,63.14,151.8,8.3,0.191 +2013,5,29,13,30,118,484,599,22,30,1000,67.31,149.20000000000002,8.200000000000001,0.191 +2013,5,29,14,30,272,421,661,22,30,1000,68.22,146,8,0.191 +2013,5,29,15,30,238,347,525,22,29,1000,68.58,144.20000000000002,7.800000000000001,0.191 +2013,5,29,16,30,120,253,322,22,29,1000,68.47,143.70000000000002,7.5,0.191 +2013,5,29,17,30,430,127,289,22,28,1000,73.15,141.6,7.1000000000000005,0.191 +2013,5,29,18,30,187,64,95,23,26,1000,84.95,138.4,6.5,0.191 +2013,5,29,19,30,0,0,0,23,26,1000,88.74,135.9,6.1000000000000005,0.191 +2013,5,29,20,30,0,0,0,24,26,1000,96.32000000000001,136.8,5.9,0.191 +2013,5,29,21,30,0,0,0,24,25,1000,96.75,139.8,5.800000000000001,0.191 +2013,5,29,22,30,0,0,0,24,25,1000,96.93,142.4,5.7,0.191 +2013,5,29,23,30,0,0,0,24,25,1000,97.03,144.8,5.7,0.191 +2013,5,30,0,30,0,0,0,24,25,1000,96.87,146.5,5.7,0.191 +2013,5,30,1,30,0,0,0,24,25,1000,96.54,147.8,5.6000000000000005,0.191 +2013,5,30,2,30,0,0,0,24,25,1000,96.23,148.1,5.5,0.191 +2013,5,30,3,30,0,0,0,24,25,1000,96.15,147.1,5.300000000000001,0.191 +2013,5,30,4,30,0,0,0,24,25,1000,96.57000000000001,145.9,5.300000000000001,0.191 +2013,5,30,5,30,0,0,0,24,25,1000,97.26,145.5,5.4,0.191 +2013,5,30,6,30,241,67,111,24,26,1000,92.39,146.8,5.800000000000001,0.191 +2013,5,30,7,30,153,158,219,24,28,1000,80.57000000000001,152.9,6.300000000000001,0.191 +2013,5,30,8,30,657,139,527,23,29,1000,72.95,157.9,6.4,0.191 +2013,5,30,9,30,736,157,717,23,30,1000,66.59,157.5,6.300000000000001,0.191 +2013,5,30,10,30,775,175,864,22,31,1000,61.85,154.70000000000002,6.1000000000000005,0.191 +2013,5,30,11,30,307,466,764,22,32,1000,58.160000000000004,151.4,5.800000000000001,0.191 +2013,5,30,12,30,806,185,987,22,33,1000,54.82,148.3,5.5,0.191 +2013,5,30,13,30,792,186,951,22,33,1000,54.5,144.6,5.2,0.191 +2013,5,30,14,30,759,183,852,22,32,1000,57.36,139.70000000000002,5.1000000000000005,0.191 +2013,5,30,15,30,696,176,698,22,31,1000,60.52,135.6,5.1000000000000005,0.191 +2013,5,30,16,30,612,153,507,22,30,1000,64.35,133,5.300000000000001,0.191 +2013,5,30,17,30,479,116,298,22,29,1000,69.27,131.4,5.300000000000001,0.191 +2013,5,30,18,30,235,61,100,23,27,1000,80.10000000000001,131.20000000000002,5.1000000000000005,0.191 +2013,5,30,19,30,0,0,0,24,26,1000,89,130.9,4.7,0.191 +2013,5,30,20,30,0,0,0,24,26,1000,92.97,133.20000000000002,4.5,0.191 +2013,5,30,21,30,0,0,0,25,25,1000,100,138.4,4.4,0.191 +2013,5,30,22,30,0,0,0,25,25,1000,100,144.6,4.3,0.191 +2013,5,30,23,30,0,0,0,25,25,1000,100,149.20000000000002,4,0.191 +2013,5,31,0,30,0,0,0,25,25,1000,100,150.70000000000002,3.8000000000000003,0.191 +2013,5,31,1,30,0,0,0,25,25,1000,100,150.20000000000002,3.8000000000000003,0.191 +2013,5,31,2,30,0,0,0,25,25,1000,100,149.5,3.8000000000000003,0.191 +2013,5,31,3,30,0,0,0,25,25,1000,100,149.20000000000002,3.9000000000000004,0.191 +2013,5,31,4,30,0,0,0,25,25,1000,100,150,3.8000000000000003,0.191 +2013,5,31,5,30,0,0,0,25,25,1000,100,151,4,0.191 +2013,5,31,6,30,275,64,114,25,27,1010,95.97,153.5,4.800000000000001,0.191 +2013,5,31,7,30,535,107,318,24,28,1010,82.62,162.4,5.5,0.191 +2013,5,31,8,30,63,248,286,24,30,1010,70.42,166,5.6000000000000005,0.191 +2013,5,31,9,30,70,340,393,23,31,1010,65.34,164.9,5.4,0.191 +2013,5,31,10,30,780,171,865,23,32,1000,61.2,162.10000000000002,5.2,0.191 +2013,5,31,11,30,800,181,957,23,33,1000,57.27,158,5.2,0.191 +2013,5,31,12,30,812,181,989,23,34,1000,53.61,153.70000000000002,5.2,0.191 +2013,5,31,13,30,798,182,953,23,34,1000,53.18,149.8,5.300000000000001,0.191 +2013,5,31,14,30,768,177,855,23,33,1000,56.08,146.20000000000002,5.300000000000001,0.191 +2013,5,31,15,30,720,164,704,23,32,1000,59.19,143,5.4,0.191 +2013,5,31,16,30,642,143,514,23,31,1000,62.63,140.5,5.5,0.191 +2013,5,31,17,30,513,109,304,23,30,1000,66.91,138.5,5.6000000000000005,0.191 +2013,5,31,18,30,272,58,104,23,28,1000,77.13,137,5.5,0.191 +2013,5,31,19,30,0,0,0,24,26,1000,91.29,135.9,5.1000000000000005,0.191 +2013,5,31,20,30,0,0,0,25,26,1000,95.68,138.1,5,0.191 +2013,5,31,21,30,0,0,0,25,26,1000,97.25,143.6,5,0.191 +2013,5,31,22,30,0,0,0,25,26,1000,100,149.4,4.9,0.191 +2013,5,31,23,30,0,0,0,25,25,1000,100,154.5,4.7,0.191 +2013,6,1,0,30,0,0,0,25,25,1000,100,158.5,4.7,0.191 +2013,6,1,1,30,0,0,0,25,25,1000,100,161.10000000000002,4.7,0.191 +2013,6,1,2,30,0,0,0,25,25,1000,100,162.20000000000002,4.7,0.191 +2013,6,1,3,30,0,0,0,25,25,1000,100,161.9,4.800000000000001,0.191 +2013,6,1,4,30,0,0,0,25,25,1000,100,161.5,5.1000000000000005,0.191 +2013,6,1,5,30,0,0,0,25,25,1000,100,161.3,5.300000000000001,0.191 +2013,6,1,6,30,0,14,14,25,27,1000,94.66,161.60000000000002,5.9,0.191 +2013,6,1,7,30,565,102,325,24,28,1000,80.57000000000001,165.8,6.4,0.191 +2013,6,1,8,30,697,126,538,23,30,1000,68.9,167.10000000000002,6.300000000000001,0.191 +2013,6,1,9,30,770,143,729,23,31,1000,63.51,166,5.800000000000001,0.191 +2013,6,1,10,30,810,157,877,22,33,1000,58.78,162.8,5.5,0.191 +2013,6,1,11,30,826,168,969,22,34,1000,54.88,157,5.300000000000001,0.191 +2013,6,1,12,30,833,170,999,22,34,1000,51.58,149.9,5.300000000000001,0.191 +2013,6,1,13,30,808,179,960,22,34,1000,51.620000000000005,142.8,5.5,0.191 +2013,6,1,14,30,771,179,860,22,33,1000,54.93,137.20000000000002,5.6000000000000005,0.191 +2013,6,1,15,30,738,157,711,22,32,1000,58.480000000000004,133.70000000000002,5.7,0.191 +2013,6,1,16,30,659,137,519,22,31,1000,62.22,130.5,5.6000000000000005,0.191 +2013,6,1,17,30,532,105,308,23,30,1000,66.68,127.9,5.5,0.191 +2013,6,1,18,30,280,59,106,23,28,1000,76.66,126,5.1000000000000005,0.192 +2013,6,1,19,30,0,0,0,24,26,1000,89.3,124.5,4.6000000000000005,0.192 +2013,6,1,20,30,0,0,0,24,26,1010,92.36,125.2,4.4,0.192 +2013,6,1,21,30,0,0,0,24,26,1010,93.34,129.3,4.3,0.192 +2013,6,1,22,30,0,0,0,24,26,1010,93.31,133.5,4,0.192 +2013,6,1,23,30,0,0,0,24,26,1010,93.4,137.20000000000002,3.7,0.192 +2013,6,2,0,30,0,0,0,24,26,1010,93.56,140,3.4000000000000004,0.192 +2013,6,2,1,30,0,0,0,24,25,1010,99.27,141.70000000000002,3,0.192 +2013,6,2,2,30,0,0,0,24,25,1010,99.21000000000001,143,2.6,0.192 +2013,6,2,3,30,0,0,0,24,25,1010,99.14,144.8,2.3000000000000003,0.192 +2013,6,2,4,30,0,0,0,24,25,1010,99.2,146.8,1.9000000000000001,0.192 +2013,6,2,5,30,0,0,0,24,25,1010,99.26,147.6,2.1,0.192 +2013,6,2,6,30,291,62,115,25,27,1010,89.02,144.9,2.4000000000000004,0.192 +2013,6,2,7,30,554,101,320,24,28,1010,82.07000000000001,142.1,2.2,0.192 +2013,6,2,8,30,699,120,533,24,30,1010,70.78,133.70000000000002,1.8,0.192 +2013,6,2,9,30,13,242,252,23,31,1010,64.51,114.4,1.7000000000000002,0.192 +2013,6,2,10,30,32,357,386,23,32,1010,59.44,93.4,1.7000000000000002,0.192 +2013,6,2,11,30,14,275,289,22,33,1010,55.42,81.60000000000001,1.8,0.192 +2013,6,2,12,30,372,448,819,22,34,1010,54.93,77.10000000000001,1.8,0.192 +2013,6,2,13,30,542,332,856,22,34,1010,51.64,75.9,1.7000000000000002,0.192 +2013,6,2,14,30,806,153,864,22,34,1010,51.49,77,1.7000000000000002,0.192 +2013,6,2,15,30,767,139,715,22,33,1010,54.06,78,1.9000000000000001,0.192 +2013,6,2,16,30,691,123,524,22,32,1000,56.81,80,2.3000000000000003,0.192 +2013,6,2,17,30,555,99,311,22,31,1010,60.550000000000004,85.5,2.7,0.192 +2013,6,2,18,30,306,56,108,23,29,1010,70.75,98.7,3,0.192 +2013,6,2,19,30,0,0,0,24,27,1010,83.72,114.80000000000001,3.4000000000000004,0.192 +2013,6,2,20,30,0,0,0,24,26,1010,89.91,123.80000000000001,3.2,0.192 +2013,6,2,21,30,0,0,0,24,25,1010,96.31,125.9,2.7,0.192 +2013,6,2,22,30,0,0,0,24,25,1010,96.93,125.2,2.1,0.192 +2013,6,2,23,30,0,0,0,24,25,1010,97.36,125.10000000000001,1.7000000000000002,0.192 +2013,6,3,0,30,0,0,0,24,24,1010,100,126.4,1.5,0.192 +2013,6,3,1,30,0,0,0,24,24,1010,100,127.4,1.3,0.192 +2013,6,3,2,30,0,0,0,24,24,1010,100,125.2,1.2000000000000002,0.192 +2013,6,3,3,30,0,0,0,24,24,1010,100,113.2,1,0.192 +2013,6,3,4,30,0,0,0,23,23,1010,100,70.2,1,0.192 +2013,6,3,5,30,0,0,0,24,24,1010,100,35.7,1.7000000000000002,0.192 +2013,6,3,6,30,338,59,121,24,25,1010,94.95,32.800000000000004,2.5,0.192 +2013,6,3,7,30,585,98,329,23,27,1010,79.83,40.800000000000004,2.7,0.192 +2013,6,3,8,30,533,176,492,22,29,1010,67.12,48.1,2.5,0.192 +2013,6,3,9,30,781,142,735,22,30,1010,62.47,58.300000000000004,2.2,0.192 +2013,6,3,10,30,830,148,887,22,31,1010,59.19,70,2.1,0.192 +2013,6,3,11,30,860,149,983,21,32,1010,55.160000000000004,79.80000000000001,2.4000000000000004,0.192 +2013,6,3,12,30,861,156,1013,21,33,1010,50.42,87.2,2.8000000000000003,0.192 +2013,6,3,13,30,858,151,980,20,34,1000,46.11,91.9,3.1,0.192 +2013,6,3,14,30,837,144,884,20,34,1000,44.84,95,3.2,0.192 +2013,6,3,15,30,737,165,720,19,33,1000,46.06,96.9,3.3000000000000003,0.192 +2013,6,3,16,30,662,143,528,19,32,1000,47.25,98.5,3.5,0.192 +2013,6,3,17,30,532,111,315,19,30,1000,52.160000000000004,100.60000000000001,3.6,0.192 +2013,6,3,18,30,288,61,110,19,27,1000,64.37,105.30000000000001,3.5,0.192 +2013,6,3,19,30,0,0,0,20,25,1000,78.36,112,3.3000000000000003,0.192 +2013,6,3,20,30,0,0,0,21,24,1010,88.10000000000001,117.9,3.2,0.192 +2013,6,3,21,30,0,0,0,22,24,1010,90.06,122.9,2.9000000000000004,0.192 +2013,6,3,22,30,0,0,0,22,23,1010,95.18,129.6,2.6,0.192 +2013,6,3,23,30,0,0,0,22,23,1010,94.12,138.1,2.4000000000000004,0.192 +2013,6,4,0,30,0,0,0,21,23,1010,93.16,147,2.2,0.192 +2013,6,4,1,30,0,0,0,21,22,1010,98.43,157.20000000000002,2.1,0.192 +2013,6,4,2,30,0,0,0,21,22,1010,98.39,169,2,0.192 +2013,6,4,3,30,0,0,0,21,22,1000,98.99000000000001,179.60000000000002,1.9000000000000001,0.192 +2013,6,4,4,30,0,0,0,21,21,1010,100,187.8,1.6,0.192 +2013,6,4,5,30,0,0,0,22,22,1010,100,192,1.5,0.192 +2013,6,4,6,30,236,60,103,22,24,1010,91.13,185.70000000000002,1.5,0.192 +2013,6,4,7,30,604,95,334,21,27,1010,73.82000000000001,160.5,1.6,0.192 +2013,6,4,8,30,736,116,551,21,29,1010,63.09,123.10000000000001,2,0.192 +2013,6,4,9,30,813,127,745,20,30,1010,57.32,108.9,2.5,0.192 +2013,6,4,10,30,855,135,896,20,32,1010,49.33,105.10000000000001,2.9000000000000004,0.192 +2013,6,4,11,30,878,140,991,19,33,1010,46.15,103.30000000000001,3,0.192 +2013,6,4,12,30,866,155,1018,19,34,1000,43.09,102,3.2,0.192 +2013,6,4,13,30,863,150,984,19,34,1000,42.74,101,3.5,0.192 +2013,6,4,14,30,845,141,888,19,34,1000,45.09,100,3.7,0.192 +2013,6,4,15,30,795,135,734,19,33,1000,44.88,98.60000000000001,3.9000000000000004,0.192 +2013,6,4,16,30,727,117,541,19,32,1000,47.02,98.7,4,0.192 +2013,6,4,17,30,607,92,326,19,30,1000,53.21,102.30000000000001,4.1000000000000005,0.192 +2013,6,4,18,30,365,53,117,20,27,1000,66.67,109.60000000000001,4,0.192 +2013,6,4,19,30,0,0,0,21,25,1000,81.07000000000001,117.80000000000001,3.8000000000000003,0.192 +2013,6,4,20,30,0,0,0,22,24,1010,91.35000000000001,124.7,3.7,0.192 +2013,6,4,21,30,0,0,0,22,24,1010,93.60000000000001,131.6,3.6,0.192 +2013,6,4,22,30,0,0,0,23,24,1010,94.25,140.3,3.6,0.192 +2013,6,4,23,30,0,0,0,23,24,1010,94.93,149.1,3.8000000000000003,0.192 +2013,6,5,0,30,0,0,0,23,24,1000,95.36,157.20000000000002,3.8000000000000003,0.192 +2013,6,5,1,30,0,0,0,23,24,1000,95.64,164.70000000000002,3.6,0.192 +2013,6,5,2,30,0,0,0,23,24,1000,95.79,171.9,3.3000000000000003,0.192 +2013,6,5,3,30,0,0,0,23,24,1000,100,177.9,2.9000000000000004,0.192 +2013,6,5,4,30,0,0,0,23,23,1000,100,182.4,2.5,0.192 +2013,6,5,5,30,0,0,0,22,24,1000,93.85000000000001,185.3,2.5,0.192 +2013,6,5,6,30,435,50,130,22,25,1010,87.94,186.60000000000002,2.8000000000000003,0.192 +2013,6,5,7,30,670,79,344,22,27,1010,74.41,181.5,2.5,0.192 +2013,6,5,8,30,789,95,562,21,29,1010,63.410000000000004,172.5,2,0.192 +2013,6,5,9,30,841,112,752,20,31,1010,54.25,150.8,1.9000000000000001,0.192 +2013,6,5,10,30,880,119,901,20,32,1010,50.01,123.7,2.2,0.192 +2013,6,5,11,30,899,123,995,20,33,1000,47.050000000000004,108.9,2.9000000000000004,0.192 +2013,6,5,12,30,892,132,1021,20,34,1000,44.31,105.2,3.6,0.192 +2013,6,5,13,30,883,130,985,20,34,1000,44.5,105.5,4.1000000000000005,0.192 +2013,6,5,14,30,861,125,887,20,33,1000,47.85,106.30000000000001,4.5,0.192 +2013,6,5,15,30,799,128,730,20,32,1000,51.53,106.4,4.6000000000000005,0.192 +2013,6,5,16,30,731,112,539,20,31,1000,55.2,106.30000000000001,4.5,0.192 +2013,6,5,17,30,613,88,325,21,30,1000,59.5,107.2,4.3,0.192 +2013,6,5,18,30,373,52,117,21,28,1000,69.29,110.10000000000001,3.8000000000000003,0.192 +2013,6,5,19,30,0,0,0,22,26,1000,82.94,114.2,3.3000000000000003,0.192 +2013,6,5,20,30,0,0,0,23,25,1000,92.8,119.80000000000001,3.1,0.192 +2013,6,5,21,30,0,0,0,24,25,1000,94.77,127.9,2.9000000000000004,0.192 +2013,6,5,22,30,0,0,0,24,25,1000,95.35000000000001,138,2.7,0.192 +2013,6,5,23,30,0,0,0,24,24,1000,100,148.6,2.7,0.192 +2013,6,6,0,30,0,0,0,24,24,1000,100,157.5,2.9000000000000004,0.192 +2013,6,6,1,30,0,0,0,24,24,1000,100,165.10000000000002,2.8000000000000003,0.192 +2013,6,6,2,30,0,0,0,24,24,1000,100,172.4,2.4000000000000004,0.192 +2013,6,6,3,30,0,0,0,23,24,1000,99.79,177.70000000000002,1.8,0.192 +2013,6,6,4,30,0,0,0,23,24,1000,99.59,182,1.2000000000000002,0.192 +2013,6,6,5,30,0,0,0,23,25,1000,92.91,178.20000000000002,0.8,0.192 +2013,6,6,6,30,352,57,121,23,26,1000,88.01,135.70000000000002,0.8,0.192 +2013,6,6,7,30,599,92,328,23,28,1000,75.27,89,1.4000000000000001,0.192 +2013,6,6,8,30,725,112,541,22,30,1000,65.56,78.10000000000001,2,0.192 +2013,6,6,9,30,792,128,730,22,31,1000,61.31,80.4,2.4000000000000004,0.192 +2013,6,6,10,30,831,138,877,22,32,1000,57.85,85.60000000000001,2.7,0.192 +2013,6,6,11,30,851,145,970,22,33,1000,54.67,91.9,2.8000000000000003,0.192 +2013,6,6,12,30,863,142,1002,22,34,1000,51.230000000000004,98.5,2.9000000000000004,0.192 +2013,6,6,13,30,853,142,967,22,35,1000,48.07,103.60000000000001,3,0.192 +2013,6,6,14,30,829,137,871,22,34,1000,50.46,106.9,3.1,0.192 +2013,6,6,15,30,781,131,720,22,34,1000,50.370000000000005,110,3,0.192 +2013,6,6,16,30,711,114,530,22,33,1000,53.47,111,3,0.192 +2013,6,6,17,30,584,92,318,22,32,1000,57.28,109.80000000000001,3.3000000000000003,0.192 +2013,6,6,18,30,341,54,114,23,30,1000,66.37,110.7,3.5,0.192 +2013,6,6,19,30,0,0,0,24,28,1000,79.48,115.2,3.6,0.192 +2013,6,6,20,30,0,0,0,24,27,1000,88.73,120.7,3.6,0.192 +2013,6,6,21,30,0,0,0,25,26,1000,95.87,125.30000000000001,3.4000000000000004,0.192 +2013,6,6,22,30,0,0,0,25,26,1000,95.48,130.3,3,0.192 +2013,6,6,23,30,0,0,0,25,26,1010,95.01,137,2.5,0.192 +2013,6,7,0,30,0,0,0,25,25,1010,100,143.70000000000002,2,0.192 +2013,6,7,1,30,0,0,0,24,25,1010,99.74000000000001,150.70000000000002,1.5,0.192 +2013,6,7,2,30,0,0,0,24,25,1010,98.71000000000001,161.20000000000002,1.1,0.192 +2013,6,7,3,30,0,0,0,24,25,1010,97.74000000000001,174.3,0.8,0.192 +2013,6,7,4,30,0,0,0,24,25,1010,96.93,173.60000000000002,0.6000000000000001,0.192 +2013,6,7,5,30,0,0,0,24,25,1010,95.83,128.1,0.7000000000000001,0.192 +2013,6,7,6,30,233,69,111,24,26,1010,90.25,70.3,1.2000000000000002,0.192 +2013,6,7,7,30,163,158,222,23,27,1010,83.32000000000001,66.60000000000001,1.8,0.192 +2013,6,7,8,30,627,148,519,23,28,1010,77.12,68.4,2.5,0.192 +2013,6,7,9,30,712,166,707,23,29,1010,71.28,67.10000000000001,3,0.192 +2013,6,7,10,30,762,177,854,23,30,1010,66.84,67.3,3.4000000000000004,0.192 +2013,6,7,11,30,786,185,947,23,31,1010,62.92,70.8,3.5,0.192 +2013,6,7,12,30,783,194,975,23,31,1010,62.85,76,3.5,0.192 +2013,6,7,13,30,291,469,751,23,31,1010,62.99,79.4,3.4000000000000004,0.192 +2013,6,7,14,30,37,368,401,23,30,1010,66.73,81.30000000000001,3.2,0.192 +2013,6,7,15,30,0,128,128,23,29,1010,70.43,82.9,3.2,0.192 +2013,6,7,16,30,0,65,65,23,28,1010,74.47,83.60000000000001,3.3000000000000003,0.192 +2013,6,7,17,30,43,147,164,23,27,1010,80.3,83.5,3.3000000000000003,0.192 +2013,6,7,18,30,0,51,51,23,26,1010,86.53,83.7,3.3000000000000003,0.192 +2013,6,7,19,30,0,0,0,23,25,1010,93.14,88.5,3.2,0.192 +2013,6,7,20,30,0,0,0,23,24,1010,98.71000000000001,93.60000000000001,3,0.192 +2013,6,7,21,30,0,0,0,23,24,1010,98.96000000000001,96.80000000000001,2.5,0.192 +2013,6,7,22,30,0,0,0,23,24,1010,99.39,101.10000000000001,2,0.192 +2013,6,7,23,30,0,0,0,23,24,1010,99.56,105.5,1.7000000000000002,0.192 +2013,6,8,0,30,0,0,0,23,24,1010,99.45,112.10000000000001,1.3,0.192 +2013,6,8,1,30,0,0,0,23,24,1010,99.24000000000001,117.7,1.1,0.192 +2013,6,8,2,30,0,0,0,23,24,1010,98.98,119.80000000000001,1,0.192 +2013,6,8,3,30,0,0,0,23,24,1010,98.76,124.2,1,0.192 +2013,6,8,4,30,0,0,0,23,24,1010,98.63,128,1.2000000000000002,0.192 +2013,6,8,5,30,0,0,0,23,24,1010,99.13,123.7,1.6,0.192 +2013,6,8,6,30,0,45,45,24,25,1010,100,128.9,2.2,0.192 +2013,6,8,7,30,385,130,282,24,25,1010,97.2,145.6,3,0.192 +2013,6,8,8,30,33,228,248,24,26,1010,90.29,159.70000000000002,3.6,0.192 +2013,6,8,9,30,95,350,423,23,27,1010,81.73,168,3.7,0.192 +2013,6,8,10,30,335,406,704,23,28,1010,78.89,166.5,3.5,0.192 +2013,6,8,11,30,495,403,883,22,28,1010,72.89,158,3.4000000000000004,0.192 +2013,6,8,12,30,243,500,742,22,29,1010,68.04,147.8,3.4000000000000004,0.192 +2013,6,8,13,30,803,174,951,22,29,1010,67.87,138.9,3.4000000000000004,0.192 +2013,6,8,14,30,781,165,858,22,29,1000,68.27,131.9,3.6,0.192 +2013,6,8,15,30,725,159,707,22,28,1000,73.23,127.9,4,0.192 +2013,6,8,16,30,13,198,205,23,27,1000,79.59,127.30000000000001,4.5,0.192 +2013,6,8,17,30,0,80,80,23,27,1000,86.99,128,4.6000000000000005,0.192 +2013,6,8,18,30,0,17,17,24,26,1000,89.47,127.30000000000001,4.2,0.192 +2013,6,8,19,30,0,0,0,24,25,1000,96.58,127.80000000000001,3.5,0.192 +2013,6,8,20,30,0,0,0,24,25,1000,97.07000000000001,130.9,3,0.192 +2013,6,8,21,30,0,0,0,24,25,1010,97.01,134.6,3,0.192 +2013,6,8,22,30,0,0,0,24,25,1010,96.65,141.3,3,0.192 +2013,6,8,23,30,0,0,0,24,25,1010,96.51,151.5,3.1,0.192 +2013,6,9,0,30,0,0,0,24,25,1010,100,160.5,3.1,0.192 +2013,6,9,1,30,0,0,0,24,25,1000,100,166.60000000000002,3,0.192 +2013,6,9,2,30,0,0,0,24,24,1000,100,169.8,2.9000000000000004,0.192 +2013,6,9,3,30,0,0,0,24,24,1000,100,169,2.8000000000000003,0.192 +2013,6,9,4,30,0,0,0,24,24,1000,100,165.5,2.5,0.192 +2013,6,9,5,30,0,0,0,24,24,1000,100,162.10000000000002,2.5,0.192 +2013,6,9,6,30,325,58,118,25,26,1000,100,158.20000000000002,2.8000000000000003,0.192 +2013,6,9,7,30,567,96,320,25,27,1010,89.9,155.10000000000002,3.2,0.192 +2013,6,9,8,30,691,120,529,24,28,1010,82.18,157.70000000000002,3.3000000000000003,0.192 +2013,6,9,9,30,764,136,716,24,29,1010,75.34,155.60000000000002,3.2,0.192 +2013,6,9,10,30,807,146,864,23,30,1010,69.93,151.70000000000002,3.2,0.192 +2013,6,9,11,30,830,152,958,23,30,1010,68.89,144.20000000000002,3.3000000000000003,0.192 +2013,6,9,12,30,62,467,529,23,31,1010,64.65,137.3,3.6,0.192 +2013,6,9,13,30,12,245,257,23,31,1000,64.2,133.1,4.1000000000000005,0.192 +2013,6,9,14,30,227,433,634,23,31,1000,67.62,132.6,4.3,0.192 +2013,6,9,15,30,239,350,531,23,30,1000,67.13,132,4.3,0.192 +2013,6,9,16,30,574,161,499,23,29,1000,70.60000000000001,129,4,0.192 +2013,6,9,17,30,82,155,188,23,28,1000,74.5,124,3.4000000000000004,0.192 +2013,6,9,18,30,153,64,92,23,27,1010,81.29,117.9,2.8000000000000003,0.193 +2013,6,9,19,30,0,0,0,24,26,1010,89.13,114.7,2.7,0.193 +2013,6,9,20,30,0,0,0,24,26,1010,90.28,117,2.9000000000000004,0.193 +2013,6,9,21,30,0,0,0,24,25,1010,96.03,121.60000000000001,2.7,0.193 +2013,6,9,22,30,0,0,0,24,25,1010,95.53,128,2.5,0.193 +2013,6,9,23,30,0,0,0,24,25,1010,95.22,133.9,2.4000000000000004,0.193 +2013,6,10,0,30,0,0,0,24,25,1010,95.3,139.20000000000002,2.2,0.193 +2013,6,10,1,30,0,0,0,24,24,1010,100,140.9,2,0.193 +2013,6,10,2,30,0,0,0,24,24,1010,100,141.9,1.9000000000000001,0.193 +2013,6,10,3,30,0,0,0,24,24,1010,100,140.70000000000002,1.6,0.193 +2013,6,10,4,30,0,0,0,24,24,1010,100,134.8,1.4000000000000001,0.193 +2013,6,10,5,30,0,0,0,24,24,1010,100,124.2,1.3,0.193 +2013,6,10,6,30,287,62,115,24,26,1010,93.86,109.30000000000001,1.7000000000000002,0.193 +2013,6,10,7,30,533,105,315,24,27,1010,88.06,103.30000000000001,2.1,0.193 +2013,6,10,8,30,664,131,523,24,29,1010,80.73,105.60000000000001,2.3000000000000003,0.193 +2013,6,10,9,30,738,149,710,23,30,1010,74.27,106.30000000000001,2.5,0.193 +2013,6,10,10,30,30,335,362,23,30,1010,69.33,105.30000000000001,2.7,0.193 +2013,6,10,11,30,215,487,696,23,31,1010,64.53,106,3,0.193 +2013,6,10,12,30,92,491,584,23,32,1010,63.96,107.2,3.4000000000000004,0.193 +2013,6,10,13,30,805,169,950,23,31,1010,63.660000000000004,108.2,3.8000000000000003,0.193 +2013,6,10,14,30,785,160,857,23,31,1010,63.230000000000004,109.30000000000001,4.1000000000000005,0.193 +2013,6,10,15,30,622,210,681,23,30,1010,66.55,111.10000000000001,4.2,0.193 +2013,6,10,16,30,352,230,438,23,29,1010,70.65,113.60000000000001,4.3,0.193 +2013,6,10,17,30,427,121,289,23,28,1010,75.73,116.2,4.1000000000000005,0.193 +2013,6,10,18,30,159,70,99,23,27,1010,82.21000000000001,119.30000000000001,3.7,0.193 +2013,6,10,19,30,0,0,0,24,26,1010,90.62,123.2,3,0.193 +2013,6,10,20,30,0,0,0,24,26,1010,93.3,127.5,2.6,0.193 +2013,6,10,21,30,0,0,0,24,25,1010,99.99000000000001,132.3,2.4000000000000004,0.193 +2013,6,10,22,30,0,0,0,24,25,1010,99.9,136.4,2.2,0.193 +2013,6,10,23,30,0,0,0,24,25,1010,99.58,141.4,2.1,0.193 +2013,6,11,0,30,0,0,0,24,25,1010,99.28,146.6,2.1,0.193 +2013,6,11,1,30,0,0,0,24,25,1010,99.16,151.3,2.2,0.193 +2013,6,11,2,30,0,0,0,24,25,1010,99.24000000000001,156.70000000000002,2.2,0.193 +2013,6,11,3,30,0,0,0,24,25,1010,100,160.10000000000002,2.2,0.193 +2013,6,11,4,30,0,0,0,24,24,1010,100,161.8,2.3000000000000003,0.193 +2013,6,11,5,30,0,0,0,24,25,1010,99.71000000000001,162.5,2.5,0.193 +2013,6,11,6,30,226,69,110,25,26,1010,94.87,161.5,3.2,0.193 +2013,6,11,7,30,162,157,221,24,27,1010,88.06,159.8,3.9000000000000004,0.193 +2013,6,11,8,30,44,236,263,24,28,1010,79.14,158.8,4.4,0.193 +2013,6,11,9,30,102,351,429,23,29,1010,72.67,156.3,4.6000000000000005,0.193 +2013,6,11,10,30,72,412,476,23,30,1010,67.52,154,4.6000000000000005,0.193 +2013,6,11,11,30,509,325,818,23,30,1010,66.43,150.9,4.5,0.193 +2013,6,11,12,30,191,507,699,22,30,1010,65.27,145.8,4.3,0.193 +2013,6,11,13,30,721,229,928,22,30,1010,63.71,139.6,4.2,0.193 +2013,6,11,14,30,714,206,840,21,30,1010,61.660000000000004,133.4,4.4,0.193 +2013,6,11,15,30,713,163,704,21,31,1010,56.02,130.4,4.5,0.193 +2013,6,11,16,30,652,136,521,20,30,1010,57.93,129.3,4.5,0.193 +2013,6,11,17,30,133,158,210,20,29,1010,62,129.6,4.2,0.193 +2013,6,11,18,30,46,65,74,22,28,1010,70,131.8,3.5,0.193 +2013,6,11,19,30,0,0,0,23,26,1010,85.72,134.8,3,0.193 +2013,6,11,20,30,0,0,0,24,26,1010,89.91,138.9,2.9000000000000004,0.193 +2013,6,11,21,30,0,0,0,24,26,1010,91.28,141.3,2.9000000000000004,0.193 +2013,6,11,22,30,0,0,0,24,25,1010,96.67,143.8,2.8000000000000003,0.193 +2013,6,11,23,30,0,0,0,24,25,1010,96.37,145.70000000000002,2.7,0.193 +2013,6,12,0,30,0,0,0,24,25,1010,96.2,144.8,2.5,0.193 +2013,6,12,1,30,0,0,0,24,25,1010,96.11,143.1,2.6,0.193 +2013,6,12,2,30,0,0,0,24,25,1010,95.83,141.9,2.7,0.193 +2013,6,12,3,30,0,0,0,24,25,1010,95.7,142.20000000000002,2.7,0.193 +2013,6,12,4,30,0,0,0,24,25,1010,95.93,143.70000000000002,2.7,0.193 +2013,6,12,5,30,0,0,0,24,25,1010,96.41,145.9,3.1,0.193 +2013,6,12,6,30,278,63,114,24,27,1010,87.08,149.70000000000002,3.9000000000000004,0.193 +2013,6,12,7,30,517,109,312,24,28,1010,81.19,154.10000000000002,4.5,0.193 +2013,6,12,8,30,189,258,370,24,29,1010,74.71000000000001,157.8,4.7,0.193 +2013,6,12,9,30,487,268,637,23,30,1010,68.81,158,4.6000000000000005,0.193 +2013,6,12,10,30,363,392,715,23,31,1010,63.120000000000005,156,4.5,0.193 +2013,6,12,11,30,469,408,864,22,31,1010,61.550000000000004,152.5,4.5,0.193 +2013,6,12,12,30,804,174,977,22,31,1010,60.4,148,4.5,0.193 +2013,6,12,13,30,798,171,945,22,31,1010,59.65,143.9,4.4,0.193 +2013,6,12,14,30,776,162,852,22,31,1010,59.08,139.8,4.4,0.193 +2013,6,12,15,30,642,201,689,22,31,1010,59.03,136.9,4.6000000000000005,0.193 +2013,6,12,16,30,354,231,440,22,30,1010,62.54,135.8,4.7,0.193 +2013,6,12,17,30,416,137,301,22,29,1010,66.66,134.8,4.7,0.193 +2013,6,12,18,30,184,73,107,22,28,1010,73.45,132.5,4.3,0.193 +2013,6,12,19,30,0,0,0,23,27,1010,83.19,130.9,3.8000000000000003,0.193 +2013,6,12,20,30,0,0,0,24,26,1010,92.08,132.1,3.6,0.193 +2013,6,12,21,30,0,0,0,24,26,1010,93.41,135.20000000000002,3.6,0.193 +2013,6,12,22,30,0,0,0,24,26,1010,92.98,139.5,3.6,0.193 +2013,6,12,23,30,0,0,0,24,26,1010,92.5,144,3.7,0.193 +2013,6,13,0,30,0,0,0,24,26,1010,97.81,148.1,3.7,0.193 +2013,6,13,1,30,0,0,0,24,25,1010,97.62,151.20000000000002,3.6,0.193 +2013,6,13,2,30,0,0,0,24,25,1010,97.41,154.60000000000002,3.5,0.193 +2013,6,13,3,30,0,0,0,24,25,1010,97.39,157.60000000000002,3,0.193 +2013,6,13,4,30,0,0,0,24,25,1010,97.71000000000001,157.9,2.6,0.193 +2013,6,13,5,30,0,0,0,24,25,1010,98.11,156.60000000000002,2.6,0.193 +2013,6,13,6,30,40,63,70,24,27,1010,88.69,153.20000000000002,3.2,0.193 +2013,6,13,7,30,0,126,126,24,28,1010,82.27,152.6,3.7,0.193 +2013,6,13,8,30,0,115,115,23,30,1010,74.42,153.20000000000002,3.8000000000000003,0.193 +2013,6,13,9,30,164,358,482,23,31,1010,65.08,147.9,3.9000000000000004,0.193 +2013,6,13,10,30,43,378,416,23,32,1010,61.01,141.5,4.1000000000000005,0.193 +2013,6,13,11,30,245,445,684,23,32,1010,60.480000000000004,137.20000000000002,4.3,0.193 +2013,6,13,12,30,762,205,965,23,32,1010,60.17,133.5,4.4,0.193 +2013,6,13,13,30,259,442,694,23,32,1010,63.51,130.5,4.3,0.193 +2013,6,13,14,30,23,327,348,23,31,1010,63.76,127.80000000000001,4.1000000000000005,0.193 +2013,6,13,15,30,0,142,142,23,30,1010,67.69,128,4.1000000000000005,0.193 +2013,6,13,16,30,0,126,126,23,30,1010,72.07000000000001,129.8,4,0.193 +2013,6,13,17,30,0,57,57,23,29,1010,77.63,131.1,3.8000000000000003,0.193 +2013,6,13,18,30,0,58,58,24,27,1010,85.64,131.6,3.3000000000000003,0.193 +2013,6,13,19,30,0,0,0,25,27,1010,94.28,132.6,3.1,0.193 +2013,6,13,20,30,0,0,0,25,26,1010,96.05,133.9,3.1,0.193 +2013,6,13,21,30,0,0,0,25,26,1010,96.25,135.6,3,0.193 +2013,6,13,22,30,0,0,0,25,26,1010,95.35000000000001,137.6,2.8000000000000003,0.193 +2013,6,13,23,30,0,0,0,25,25,1010,100,140,2.6,0.193 +2013,6,14,0,30,0,0,0,24,25,1010,99.55,141.9,2.5,0.193 +2013,6,14,1,30,0,0,0,24,25,1010,99.09,142.3,2.5,0.193 +2013,6,14,2,30,0,0,0,24,25,1010,98.82000000000001,142.9,2.6,0.193 +2013,6,14,3,30,0,0,0,24,25,1010,98.86,143.9,2.7,0.193 +2013,6,14,4,30,0,0,0,24,25,1010,99.18,145,2.6,0.193 +2013,6,14,5,30,0,0,0,24,25,1010,99.7,144.9,2.7,0.193 +2013,6,14,6,30,0,4,4,25,26,1010,95.63,143.5,2.9000000000000004,0.193 +2013,6,14,7,30,177,156,225,25,27,1010,91.14,140.1,3.4000000000000004,0.193 +2013,6,14,8,30,0,137,137,25,28,1010,89.16,137.8,4,0.193 +2013,6,14,9,30,353,322,590,24,29,1010,79.39,139.4,4.3,0.193 +2013,6,14,10,30,154,437,575,23,29,1010,71.57000000000001,140.3,4.5,0.193 +2013,6,14,11,30,276,473,741,22,30,1010,66.1,142.70000000000002,4.5,0.193 +2013,6,14,12,30,107,498,606,22,31,1010,61.690000000000005,145.6,4.4,0.193 +2013,6,14,13,30,478,408,872,22,31,1010,61.120000000000005,146.9,4.3,0.193 +2013,6,14,14,30,249,429,651,22,31,1010,60.93,146.8,4.1000000000000005,0.193 +2013,6,14,15,30,9,222,229,22,30,1010,64.82000000000001,143.4,3.9000000000000004,0.193 +2013,6,14,16,30,38,233,256,22,29,1010,69.73,137.8,3.8000000000000003,0.193 +2013,6,14,17,30,21,142,150,23,28,1010,76.3,131,3.8000000000000003,0.193 +2013,6,14,18,30,22,64,69,24,27,1010,84.89,125.30000000000001,3.6,0.193 +2013,6,14,19,30,0,0,0,24,27,1010,88.12,123.10000000000001,3.6,0.193 +2013,6,14,20,30,0,0,0,25,26,1010,95.55,123.60000000000001,3.6,0.193 +2013,6,14,21,30,0,0,0,25,26,1010,96.49000000000001,127.7,3.3000000000000003,0.193 +2013,6,14,22,30,0,0,0,25,26,1010,96.62,135,3,0.193 +2013,6,14,23,30,0,0,0,25,26,1010,96.44,144.6,2.7,0.193 +2013,6,15,0,30,0,0,0,25,26,1010,100,153.3,2.7,0.193 +2013,6,15,1,30,0,0,0,25,25,1010,100,159.10000000000002,2.7,0.193 +2013,6,15,2,30,0,0,0,24,25,1010,99.95,162.5,2.8000000000000003,0.193 +2013,6,15,3,30,0,0,0,24,25,1010,98.27,162.8,2.9000000000000004,0.193 +2013,6,15,4,30,0,0,0,24,25,1010,96.84,162.3,2.8000000000000003,0.193 +2013,6,15,5,30,0,0,0,24,25,1010,96.32000000000001,161.4,3,0.193 +2013,6,15,6,30,131,63,87,24,27,1010,85.94,158.3,3.8000000000000003,0.193 +2013,6,15,7,30,0,119,119,23,28,1010,78.83,158.10000000000002,4.5,0.193 +2013,6,15,8,30,669,130,524,23,30,1010,67.99,157.9,4.6000000000000005,0.193 +2013,6,15,9,30,752,143,713,23,31,1010,63.31,155.60000000000002,4.3,0.193 +2013,6,15,10,30,417,364,734,23,32,1010,59.06,151,4.1000000000000005,0.193 +2013,6,15,11,30,821,160,956,22,33,1010,54.96,144.20000000000002,4,0.193 +2013,6,15,12,30,842,152,992,22,34,1010,54.19,136.8,4.2,0.193 +2013,6,15,13,30,833,152,960,22,34,1010,50.84,131.4,4.5,0.193 +2013,6,15,14,30,805,149,866,22,33,1010,53.620000000000005,128.6,4.800000000000001,0.193 +2013,6,15,15,30,714,166,709,22,32,1010,56.68,127.30000000000001,5,0.193 +2013,6,15,16,30,643,143,525,22,31,1010,60.31,126.7,5.1000000000000005,0.193 +2013,6,15,17,30,520,111,318,22,30,1010,65.13,127.60000000000001,5.1000000000000005,0.193 +2013,6,15,18,30,277,66,118,23,29,1010,75.49,130.3,4.800000000000001,0.193 +2013,6,15,19,30,0,0,0,23,27,1010,83.42,133.9,4.2,0.193 +2013,6,15,20,30,0,0,0,24,27,1010,86.45,138.5,3.9000000000000004,0.193 +2013,6,15,21,30,0,0,0,24,26,1010,93.05,144.20000000000002,4,0.193 +2013,6,15,22,30,0,0,0,24,26,1010,93.09,150.70000000000002,4.1000000000000005,0.193 +2013,6,15,23,30,0,0,0,24,26,1010,92.21000000000001,156.10000000000002,4.3,0.193 +2013,6,16,0,30,0,0,0,24,26,1010,90.7,161,4.3,0.193 +2013,6,16,1,30,0,0,0,24,26,1010,89.39,163.10000000000002,4.1000000000000005,0.193 +2013,6,16,2,30,0,0,0,23,26,1010,88.21000000000001,164,3.9000000000000004,0.193 +2013,6,16,3,30,0,0,0,23,25,1010,92.78,164.8,3.7,0.193 +2013,6,16,4,30,0,0,0,23,25,1010,92.72,165.70000000000002,3.6,0.193 +2013,6,16,5,30,0,0,0,23,25,1010,93.18,166.5,3.8000000000000003,0.193 +2013,6,16,6,30,304,61,116,23,27,1010,83.55,166.70000000000002,4.5,0.193 +2013,6,16,7,30,538,105,316,23,29,1010,72.36,168.4,4.9,0.193 +2013,6,16,8,30,227,253,387,23,31,1010,63.870000000000005,168.10000000000002,4.800000000000001,0.193 +2013,6,16,9,30,739,152,712,23,32,1010,60.02,164.9,4.6000000000000005,0.193 +2013,6,16,10,30,771,172,856,23,33,1010,56.11,160.3,4.6000000000000005,0.193 +2013,6,16,11,30,783,189,948,22,34,1010,52.39,155.10000000000002,4.6000000000000005,0.193 +2013,6,16,12,30,792,191,981,22,35,1010,51.92,148.6,4.800000000000001,0.193 +2013,6,16,13,30,414,414,816,22,34,1010,51.86,142,5,0.193 +2013,6,16,14,30,422,345,721,22,34,1010,52.15,137.5,5.300000000000001,0.193 +2013,6,16,15,30,719,165,713,22,33,1010,55.32,135.70000000000002,5.4,0.193 +2013,6,16,16,30,120,261,333,22,32,1010,58.76,135.4,5.4,0.193 +2013,6,16,17,30,52,153,174,23,30,1010,66.45,135.8,5.5,0.193 +2013,6,16,18,30,23,65,70,23,29,1010,76.4,137.1,5.300000000000001,0.193 +2013,6,16,19,30,0,0,0,24,27,1010,83.97,139.6,5.1000000000000005,0.193 +2013,6,16,20,30,0,0,0,24,27,1010,86.35000000000001,144.4,5.1000000000000005,0.193 +2013,6,16,21,30,0,0,0,24,27,1010,86.79,149.9,5,0.193 +2013,6,16,22,30,0,0,0,24,27,1010,86.08,155,5,0.193 +2013,6,16,23,30,0,0,0,24,27,1010,90.33,159.70000000000002,4.9,0.193 +2013,6,17,0,30,0,0,0,24,26,1010,89.61,163.20000000000002,4.800000000000001,0.193 +2013,6,17,1,30,0,0,0,24,26,1010,88.97,165.4,4.6000000000000005,0.193 +2013,6,17,2,30,0,0,0,23,26,1010,88.54,166.9,4.4,0.193 +2013,6,17,3,30,0,0,0,23,26,1010,88.3,168.4,4.1000000000000005,0.193 +2013,6,17,4,30,0,0,0,23,26,1010,93.96000000000001,169.3,3.7,0.193 +2013,6,17,5,30,0,0,0,24,26,1010,95.21000000000001,168.20000000000002,3.7,0.193 +2013,6,17,6,30,288,63,115,24,27,1010,86.14,166,4.2,0.193 +2013,6,17,7,30,541,106,318,24,29,1010,75.14,167.60000000000002,4.6000000000000005,0.193 +2013,6,17,8,30,682,129,530,23,31,1010,65.41,168.5,4.5,0.193 +2013,6,17,9,30,759,145,720,23,32,1010,60.160000000000004,165.60000000000002,4.1000000000000005,0.193 +2013,6,17,10,30,802,157,868,22,33,1010,55.44,158,4.1000000000000005,0.193 +2013,6,17,11,30,824,164,963,22,34,1010,51.14,149.20000000000002,4.3,0.193 +2013,6,17,12,30,799,191,988,22,35,1010,47.42,142,4.6000000000000005,0.193 +2013,6,17,13,30,783,194,955,22,35,1010,47.27,137,4.9,0.193 +2013,6,17,14,30,752,190,860,22,34,1010,50.42,134.8,5.1000000000000005,0.193 +2013,6,17,15,30,693,183,712,22,33,1010,53.81,135.3,5.300000000000001,0.193 +2013,6,17,16,30,615,160,525,22,32,1010,57.74,137.4,5.4,0.193 +2013,6,17,17,30,485,125,318,22,30,1010,66.03,140.1,5.300000000000001,0.193 +2013,6,17,18,30,245,72,118,23,29,1010,72.02,143,5.1000000000000005,0.193 +2013,6,17,19,30,0,0,0,24,27,1010,83.81,145.70000000000002,4.800000000000001,0.193 +2013,6,17,20,30,0,0,0,24,27,1010,86.35000000000001,148.9,4.7,0.193 +2013,6,17,21,30,0,0,0,24,27,1010,87.46000000000001,153.4,4.7,0.193 +2013,6,17,22,30,0,0,0,24,26,1010,92.53,158.3,4.6000000000000005,0.193 +2013,6,17,23,30,0,0,0,24,26,1010,91.94,163.4,4.4,0.193 +2013,6,18,0,30,0,0,0,24,26,1010,91.05,168.3,4.2,0.193 +2013,6,18,1,30,0,0,0,24,26,1010,90.21000000000001,171.5,4,0.193 +2013,6,18,2,30,0,0,0,24,26,1010,89.48,174.4,3.5,0.193 +2013,6,18,3,30,0,0,0,24,25,1010,94.42,177.4,3,0.193 +2013,6,18,4,30,0,0,0,24,25,1010,94.54,177.5,2.7,0.193 +2013,6,18,5,30,0,0,0,24,25,1010,94.88,174.10000000000002,2.9000000000000004,0.193 +2013,6,18,6,30,318,59,117,24,27,1010,84.89,169.8,3.6,0.193 +2013,6,18,7,30,564,100,320,23,28,1010,77.66,170.3,4,0.193 +2013,6,18,8,30,694,123,531,23,30,1010,67.64,169.60000000000002,4.1000000000000005,0.193 +2013,6,18,9,30,770,138,721,23,32,1010,62.65,166.4,4.1000000000000005,0.193 +2013,6,18,10,30,812,149,869,22,33,1010,54.550000000000004,162.70000000000002,4.2,0.193 +2013,6,18,11,30,834,155,963,22,34,1010,50.120000000000005,158.60000000000002,4.2,0.193 +2013,6,18,12,30,800,188,986,21,34,1010,48.9,153.9,4.2,0.193 +2013,6,18,13,30,791,186,954,21,35,1010,45.46,148.6,4.2,0.193 +2013,6,18,14,30,765,179,862,21,34,1010,47.410000000000004,143.1,4.1000000000000005,0.193 +2013,6,18,15,30,711,171,714,21,34,1010,47.24,138.1,4.1000000000000005,0.193 +2013,6,18,16,30,638,148,529,21,33,1010,49.870000000000005,133.70000000000002,4.1000000000000005,0.193 +2013,6,18,17,30,508,117,321,21,31,1010,56.51,130.6,4.4,0.193 +2013,6,18,18,30,271,69,120,21,29,1010,65.8,129.5,4.5,0.193 +2013,6,18,19,30,0,0,0,23,27,1010,79.07000000000001,131.1,4.5,0.193 +2013,6,18,20,30,0,0,0,24,27,1010,84.11,136.3,4.5,0.193 +2013,6,18,21,30,0,0,0,24,26,1010,91.65,144,4.6000000000000005,0.193 +2013,6,18,22,30,0,0,0,24,26,1010,91.82000000000001,153.20000000000002,4.5,0.193 +2013,6,18,23,30,0,0,0,24,26,1010,91.12,162.8,4.3,0.193 +2013,6,19,0,30,0,0,0,24,25,1010,95.55,170.5,3.8000000000000003,0.193 +2013,6,19,1,30,0,0,0,24,25,1010,94.63,174.9,3.2,0.193 +2013,6,19,2,30,0,0,0,23,24,1010,99.9,176.5,2.9000000000000004,0.193 +2013,6,19,3,30,0,0,0,23,24,1010,99.93,176.8,2.9000000000000004,0.193 +2013,6,19,4,30,0,0,0,24,24,1010,100,178.3,3.3000000000000003,0.193 +2013,6,19,5,30,0,0,0,24,25,1010,95,180.10000000000002,3.7,0.193 +2013,6,19,6,30,238,68,111,24,27,1010,84.47,180,4.2,0.193 +2013,6,19,7,30,479,122,309,23,28,1010,76.37,177.70000000000002,4.4,0.193 +2013,6,19,8,30,621,154,518,22,30,1010,65.62,173.10000000000002,4.3,0.193 +2013,6,19,9,30,708,172,707,22,32,1010,56.74,166.9,4.1000000000000005,0.193 +2013,6,19,10,30,749,191,854,21,33,1010,52.230000000000004,159.3,4,0.193 +2013,6,19,11,30,768,204,947,21,34,1010,48.63,151.3,4.2,0.193 +2013,6,19,12,30,784,200,982,21,34,1010,48.28,144.9,4.6000000000000005,0.193 +2013,6,19,13,30,774,199,951,21,34,1010,48.300000000000004,140.70000000000002,5,0.193 +2013,6,19,14,30,751,189,859,21,34,1010,48.45,138.6,5.300000000000001,0.193 +2013,6,19,15,30,610,228,694,21,33,1010,51.42,137.5,5.4,0.193 +2013,6,19,16,30,528,195,510,21,32,1010,54.730000000000004,137.20000000000002,5.5,0.193 +2013,6,19,17,30,402,146,308,21,31,1010,62.03,137.8,5.4,0.193 +2013,6,19,18,30,193,76,113,22,29,1010,67.51,137.9,5.1000000000000005,0.193 +2013,6,19,19,30,0,0,0,23,27,1010,79.69,138,4.6000000000000005,0.193 +2013,6,19,20,30,0,0,0,23,27,1010,83.47,141.20000000000002,4.5,0.193 +2013,6,19,21,30,0,0,0,24,26,1010,90.28,147.4,4.3,0.193 +2013,6,19,22,30,0,0,0,24,26,1010,90.65,154.60000000000002,4.1000000000000005,0.193 +2013,6,19,23,30,0,0,0,24,26,1010,90.59,160.5,3.9000000000000004,0.193 +2013,6,20,0,30,0,0,0,24,25,1010,96.13,165.10000000000002,3.4000000000000004,0.193 +2013,6,20,1,30,0,0,0,24,25,1010,96.25,168.10000000000002,2.9000000000000004,0.193 +2013,6,20,2,30,0,0,0,24,25,1010,96.46000000000001,169,2.5,0.193 +2013,6,20,3,30,0,0,0,24,25,1010,100,168.70000000000002,2.2,0.193 +2013,6,20,4,30,0,0,0,24,24,1010,100,167.20000000000002,2,0.193 +2013,6,20,5,30,0,0,0,24,25,1010,96.86,163.60000000000002,2.5,0.193 +2013,6,20,6,30,173,74,105,24,27,1010,86.78,158.10000000000002,3.6,0.193 +2013,6,20,7,30,415,138,300,23,29,1010,74.35000000000001,154.70000000000002,4.5,0.193 +2013,6,20,8,30,565,176,507,23,31,1010,63.25,153.70000000000002,4.9,0.193 +2013,6,20,9,30,642,207,692,22,32,1010,56.980000000000004,151.8,5.1000000000000005,0.193 +2013,6,20,10,30,688,228,837,22,33,1010,52.74,148.8,5.2,0.193 +2013,6,20,11,30,716,239,932,21,34,1010,49.6,144.8,5.300000000000001,0.193 +2013,6,20,12,30,720,246,965,21,34,1010,49.52,140.6,5.5,0.193 +2013,6,20,13,30,719,237,937,21,34,1010,49.34,137.20000000000002,5.6000000000000005,0.193 +2013,6,20,14,30,703,221,848,21,34,1010,48.94,134.9,5.800000000000001,0.193 +2013,6,20,15,30,648,208,703,21,33,1010,51.11,133.70000000000002,5.9,0.193 +2013,6,20,16,30,571,178,519,21,32,1010,53.72,132.70000000000002,5.800000000000001,0.193 +2013,6,20,17,30,432,140,313,21,31,1010,60.9,131.5,5.5,0.193 +2013,6,20,18,30,180,80,114,22,29,1010,67.36,129.8,5,0.193 +2013,6,20,19,30,0,0,0,23,27,1010,81.22,128.20000000000002,4.4,0.193 +2013,6,20,20,30,0,0,0,24,27,1010,86.32000000000001,128.6,4.1000000000000005,0.193 +2013,6,20,21,30,0,0,0,24,27,1010,93.88,132.3,4,0.193 +2013,6,20,22,30,0,0,0,25,26,1010,94.51,138.20000000000002,4,0.193 +2013,6,20,23,30,0,0,0,25,26,1010,94.67,144.70000000000002,3.9000000000000004,0.193 +2013,6,21,0,30,0,0,0,25,26,1010,94.62,151.20000000000002,3.8000000000000003,0.193 +2013,6,21,1,30,0,0,0,25,26,1010,94.33,156.9,3.8000000000000003,0.193 +2013,6,21,2,30,0,0,0,24,25,1010,99.08,161.70000000000002,3.5,0.193 +2013,6,21,3,30,0,0,0,24,25,1010,98.43,165.8,3,0.193 +2013,6,21,4,30,0,0,0,24,25,1010,97.58,167.8,2.8000000000000003,0.193 +2013,6,21,5,30,0,0,0,24,26,1010,96.43,166.70000000000002,3.2,0.193 +2013,6,21,6,30,188,60,93,24,27,1010,84.39,164,4,0.193 +2013,6,21,7,30,368,152,296,23,29,1010,72.08,162.10000000000002,4.3,0.193 +2013,6,21,8,30,446,203,464,22,31,1010,65.17,159.4,4.4,0.193 +2013,6,21,9,30,543,246,655,21,32,1010,54.410000000000004,156.70000000000002,4.5,0.193 +2013,6,21,10,30,520,315,775,20,33,1010,48.53,152.8,4.5,0.193 +2013,6,21,11,30,497,398,879,20,34,1010,44.03,147.20000000000002,4.6000000000000005,0.193 +2013,6,21,12,30,759,223,980,19,35,1010,40.78,140.70000000000002,5,0.193 +2013,6,21,13,30,758,215,951,19,35,1010,43.08,135,5.300000000000001,0.193 +2013,6,21,14,30,739,201,860,20,34,1010,43.93,131.1,5.5,0.193 +2013,6,21,15,30,619,226,700,20,33,1010,47.6,129.3,5.6000000000000005,0.193 +2013,6,21,16,30,537,195,516,20,32,1010,51.95,128.5,5.6000000000000005,0.193 +2013,6,21,17,30,402,149,311,21,30,1010,60.88,128.5,5.5,0.193 +2013,6,21,18,30,178,81,115,22,29,1010,68.34,129.5,5.1000000000000005,0.193 +2013,6,21,19,30,0,0,0,23,27,1010,81.67,131.4,4.7,0.193 +2013,6,21,20,30,0,0,0,24,27,1010,85.79,135.20000000000002,4.4,0.193 +2013,6,21,21,30,0,0,0,24,27,1010,92.88,140.6,4.2,0.193 +2013,6,21,22,30,0,0,0,24,26,1010,93.16,146.3,4,0.193 +2013,6,21,23,30,0,0,0,24,26,1010,93.11,152.1,3.7,0.193 +2013,6,22,0,30,0,0,0,24,26,1010,92.84,156.20000000000002,3.5,0.193 +2013,6,22,1,30,0,0,0,24,26,1010,97.81,158.3,3.2,0.193 +2013,6,22,2,30,0,0,0,24,25,1010,97.22,158.5,3,0.193 +2013,6,22,3,30,0,0,0,24,25,1010,96.84,157.9,2.9000000000000004,0.193 +2013,6,22,4,30,0,0,0,24,25,1010,96.66,157.5,2.9000000000000004,0.193 +2013,6,22,5,30,0,0,0,24,25,1010,96.63,159.10000000000002,3.3000000000000003,0.193 +2013,6,22,6,30,170,60,90,24,27,1010,85.87,160.9,4.1000000000000005,0.193 +2013,6,22,7,30,202,151,229,23,29,1010,73.26,161.20000000000002,4.5,0.193 +2013,6,22,8,30,647,141,519,23,31,1010,62.550000000000004,159.8,4.5,0.193 +2013,6,22,9,30,730,158,709,22,32,1010,57.34,155.4,4.5,0.193 +2013,6,22,10,30,777,170,858,22,33,1010,52.9,150.3,4.6000000000000005,0.193 +2013,6,22,11,30,802,178,954,21,34,1010,48.83,145.6,4.800000000000001,0.193 +2013,6,22,12,30,771,210,979,21,35,1010,45.17,141.6,5,0.193 +2013,6,22,13,30,768,204,951,21,35,1010,44.28,138.5,5.1000000000000005,0.193 +2013,6,22,14,30,751,191,862,20,34,1010,46.27,136,5.4,0.193 +2013,6,22,15,30,728,165,722,20,33,1010,48.54,134,5.6000000000000005,0.193 +2013,6,22,16,30,655,144,536,20,32,1010,51.25,133,5.7,0.193 +2013,6,22,17,30,528,115,327,20,31,1010,55.15,132.70000000000002,5.7,0.193 +2013,6,22,18,30,285,69,124,21,29,1010,64.91,132.6,5.4,0.193 +2013,6,22,19,30,0,0,0,22,27,1010,78.44,134,4.9,0.193 +2013,6,22,20,30,0,0,0,23,27,1010,83.34,138,4.6000000000000005,0.193 +2013,6,22,21,30,0,0,0,24,26,1010,90.27,144.1,4.4,0.193 +2013,6,22,22,30,0,0,0,24,26,1010,90.43,150.4,4.1000000000000005,0.193 +2013,6,22,23,30,0,0,0,24,26,1010,90.29,156,4,0.193 +2013,6,23,0,30,0,0,0,24,26,1010,90.04,160.70000000000002,3.9000000000000004,0.193 +2013,6,23,1,30,0,0,0,24,25,1010,95.32000000000001,163.4,3.6,0.193 +2013,6,23,2,30,0,0,0,24,25,1010,95.28,164.70000000000002,3.4000000000000004,0.193 +2013,6,23,3,30,0,0,0,24,25,1010,95.16,166,3.3000000000000003,0.193 +2013,6,23,4,30,0,0,0,24,25,1010,94.47,166.9,3.2,0.193 +2013,6,23,5,30,0,0,0,23,25,1010,93.67,166.4,3.6,0.193 +2013,6,23,6,30,169,73,103,23,27,1010,81.38,164.3,4.4,0.193 +2013,6,23,7,30,268,156,260,22,29,1010,69.55,162,4.800000000000001,0.193 +2013,6,23,8,30,453,209,473,22,30,1010,63.18,159.20000000000002,5,0.193 +2013,6,23,9,30,528,250,648,21,32,1010,54.370000000000005,155.3,5.1000000000000005,0.193 +2013,6,23,10,30,489,340,773,21,33,1010,49.980000000000004,150.8,5.2,0.193 +2013,6,23,11,30,757,211,943,20,34,1010,46.31,146.4,5.4,0.193 +2013,6,23,12,30,535,401,935,20,34,1010,46.050000000000004,142.1,5.6000000000000005,0.193 +2013,6,23,13,30,725,235,939,20,34,1010,49.01,138.70000000000002,5.9,0.193 +2013,6,23,14,30,706,220,850,21,33,1010,49.74,136.6,6.1000000000000005,0.193 +2013,6,23,15,30,671,195,709,21,32,1010,53.07,136.1,6.300000000000001,0.193 +2013,6,23,16,30,606,164,527,21,31,1010,56.99,135.9,6.4,0.193 +2013,6,23,17,30,487,126,322,21,30,1010,61.78,135.8,6.2,0.193 +2013,6,23,18,30,253,73,122,22,28,1010,71.76,135.9,5.800000000000001,0.193 +2013,6,23,19,30,0,0,0,23,27,1010,79.60000000000001,137.3,5.300000000000001,0.193 +2013,6,23,20,30,0,0,0,23,27,1010,82.74,141.20000000000002,5,0.193 +2013,6,23,21,30,0,0,0,24,27,1010,89.18,147.3,4.800000000000001,0.193 +2013,6,23,22,30,0,0,0,24,26,1010,89.51,153.3,4.6000000000000005,0.193 +2013,6,23,23,30,0,0,0,24,26,1010,89.54,158,4.6000000000000005,0.193 +2013,6,24,0,30,0,0,0,24,26,1010,89.13,160.5,4.9,0.193 +2013,6,24,1,30,0,0,0,23,26,1010,88.23,160.9,5,0.193 +2013,6,24,2,30,0,0,0,23,26,1010,87.24,160.5,4.9,0.193 +2013,6,24,3,30,0,0,0,23,26,1010,86.75,159.9,4.7,0.193 +2013,6,24,4,30,0,0,0,23,26,1010,86.72,158.9,4.4,0.193 +2013,6,24,5,30,0,0,0,23,26,1010,87.10000000000001,157.70000000000002,4.5,0.193 +2013,6,24,6,30,222,67,106,23,28,1010,77.92,156.70000000000002,5,0.193 +2013,6,24,7,30,489,117,306,23,29,1010,72.14,157.20000000000002,5.5,0.193 +2013,6,24,8,30,643,142,517,23,31,1010,62.9,155.70000000000002,5.800000000000001,0.193 +2013,6,24,9,30,720,163,705,22,32,1010,57.910000000000004,153.9,6,0.193 +2013,6,24,10,30,761,181,853,22,33,1010,53.63,151.5,6.1000000000000005,0.193 +2013,6,24,11,30,790,186,951,22,34,1010,49.95,148.70000000000002,6.4,0.193 +2013,6,24,12,30,830,166,994,21,34,1010,49.480000000000004,145.9,6.7,0.193 +2013,6,24,13,30,818,168,964,21,34,1010,49.45,143.6,6.800000000000001,0.193 +2013,6,24,14,30,788,166,871,21,34,1010,49.52,142.4,6.9,0.193 +2013,6,24,15,30,719,170,721,21,33,1010,52.38,141.8,6.9,0.193 +2013,6,24,16,30,630,155,533,22,32,1010,55.9,141.20000000000002,6.800000000000001,0.193 +2013,6,24,17,30,480,129,323,22,31,1010,63.89,140,6.6000000000000005,0.193 +2013,6,24,18,30,210,79,120,23,29,1010,70.13,138.9,6.2,0.193 +2013,6,24,19,30,0,0,0,23,28,1010,82.43,138.9,5.7,0.193 +2013,6,24,20,30,0,0,0,24,27,1010,85.58,141,5.6000000000000005,0.193 +2013,6,24,21,30,0,0,0,24,27,1010,86.78,145.70000000000002,5.7,0.193 +2013,6,24,22,30,0,0,0,24,27,1010,87.25,150.4,5.7,0.193 +2013,6,24,23,30,0,0,0,24,27,1010,87.10000000000001,155.9,5.7,0.193 +2013,6,25,0,30,0,0,0,24,27,1010,86.64,160.60000000000002,5.6000000000000005,0.193 +2013,6,25,1,30,0,0,0,24,27,1010,86.10000000000001,164.8,5.5,0.193 +2013,6,25,2,30,0,0,0,24,27,1010,85.38,168.3,5.5,0.193 +2013,6,25,3,30,0,0,0,24,27,1010,89.55,170.20000000000002,5.4,0.193 +2013,6,25,4,30,0,0,0,23,27,1010,88.4,171.60000000000002,5.1000000000000005,0.193 +2013,6,25,5,30,0,0,0,23,27,1010,87.13,172.4,5.2,0.193 +2013,6,25,6,30,190,58,91,23,28,1010,80.61,172,5.6000000000000005,0.193 +2013,6,25,7,30,441,132,302,22,29,1010,69.44,170.60000000000002,6,0.193 +2013,6,25,8,30,609,160,515,22,31,1010,59.32,168.10000000000002,6.1000000000000005,0.193 +2013,6,25,9,30,595,226,673,21,32,1010,53.57,165.60000000000002,6.2,0.193 +2013,6,25,10,30,484,341,768,20,33,1010,49.22,162.70000000000002,6.2,0.193 +2013,6,25,11,30,350,425,764,20,34,1010,45.69,159,6.2,0.193 +2013,6,25,12,30,782,208,988,20,35,1010,42.800000000000004,154.8,6.300000000000001,0.193 +2013,6,25,13,30,752,221,953,20,35,1010,42.77,150.5,6.300000000000001,0.193 +2013,6,25,14,30,710,223,858,20,34,1010,45.82,146.5,6.4,0.193 +2013,6,25,15,30,656,209,713,20,33,1010,49.21,144,6.4,0.193 +2013,6,25,16,30,583,179,529,21,32,1010,52.730000000000004,141.70000000000002,6.4,0.193 +2013,6,25,17,30,462,136,323,21,31,1010,57.49,139.1,6.300000000000001,0.193 +2013,6,25,18,30,226,79,123,22,29,1010,68.17,136.9,6,0.193 +2013,6,25,19,30,0,0,0,23,27,1010,81.75,136.8,5.800000000000001,0.193 +2013,6,25,20,30,0,0,0,24,27,1010,85.49,139.5,5.7,0.193 +2013,6,25,21,30,0,0,0,24,27,1010,86.69,144.3,5.7,0.193 +2013,6,25,22,30,0,0,0,24,27,1010,86.68,150.20000000000002,5.6000000000000005,0.193 +2013,6,25,23,30,0,0,0,24,27,1010,91.27,155.8,5.6000000000000005,0.193 +2013,6,26,0,30,0,0,0,24,27,1010,90.64,161.20000000000002,5.5,0.193 +2013,6,26,1,30,0,0,0,24,26,1010,90.23,166,5.300000000000001,0.193 +2013,6,26,2,30,0,0,0,24,26,1010,89.85000000000001,169.70000000000002,5.1000000000000005,0.193 +2013,6,26,3,30,0,0,0,24,26,1010,89.75,171.10000000000002,5,0.193 +2013,6,26,4,30,0,0,0,24,26,1010,89.87,171.4,4.800000000000001,0.193 +2013,6,26,5,30,0,0,0,24,26,1010,90.38,170.8,4.800000000000001,0.193 +2013,6,26,6,30,203,69,104,24,28,1010,85.99,169.3,5.300000000000001,0.193 +2013,6,26,7,30,481,119,304,24,29,1010,75.29,170.8,5.6000000000000005,0.193 +2013,6,26,8,30,653,139,519,23,31,1010,65.18,171.4,5.6000000000000005,0.193 +2013,6,26,9,30,743,152,711,23,33,1010,55.99,169.8,5.4,0.193 +2013,6,26,10,30,789,165,862,22,34,1010,51.36,165.20000000000002,5.1000000000000005,0.193 +2013,6,26,11,30,811,174,958,22,35,1010,47.45,158.3,5.1000000000000005,0.193 +2013,6,26,12,30,817,178,993,21,36,1010,44.25,150.6,5.1000000000000005,0.193 +2013,6,26,13,30,804,180,962,21,36,1010,43.980000000000004,143.5,5.4,0.193 +2013,6,26,14,30,775,176,869,21,35,1010,46.82,137.8,5.6000000000000005,0.193 +2013,6,26,15,30,658,205,710,21,34,1010,49.6,134.9,5.800000000000001,0.193 +2013,6,26,16,30,587,175,527,22,33,1010,52.730000000000004,134,6,0.193 +2013,6,26,17,30,463,134,322,22,31,1010,60.47,134.70000000000002,6,0.193 +2013,6,26,18,30,232,77,122,23,29,1010,70.83,136.6,5.800000000000001,0.193 +2013,6,26,19,30,0,0,0,23,27,1010,83.25,139.5,5.4,0.193 +2013,6,26,20,30,0,0,0,24,27,1010,85.9,143.5,5.1000000000000005,0.193 +2013,6,26,21,30,0,0,0,24,27,1010,86.60000000000001,148.9,4.800000000000001,0.193 +2013,6,26,22,30,0,0,0,24,26,1010,91.61,155.3,4.5,0.193 +2013,6,26,23,30,0,0,0,24,26,1010,91.2,162.3,4.1000000000000005,0.193 +2013,6,27,0,30,0,0,0,24,26,1010,90.91,168.70000000000002,3.8000000000000003,0.193 +2013,6,27,1,30,0,0,0,24,25,1010,96.3,172.9,3.4000000000000004,0.193 +2013,6,27,2,30,0,0,0,24,25,1010,96.53,174.8,2.9000000000000004,0.193 +2013,6,27,3,30,0,0,0,24,25,1010,100,174.60000000000002,2.5,0.193 +2013,6,27,4,30,0,0,0,24,24,1010,100,172.3,2.2,0.193 +2013,6,27,5,30,0,0,0,24,25,1010,96.29,168.70000000000002,2.7,0.193 +2013,6,27,6,30,260,63,108,23,27,1010,83.43,165.60000000000002,3.5,0.193 +2013,6,27,7,30,546,103,313,23,29,1010,70.97,162.9,3.7,0.193 +2013,6,27,8,30,700,122,528,22,31,1010,60.46,156.10000000000002,3.6,0.193 +2013,6,27,9,30,784,133,722,21,32,1010,54.83,148.3,3.5,0.193 +2013,6,27,10,30,827,143,873,21,33,1010,50.370000000000005,141.1,3.6,0.193 +2013,6,27,11,30,850,149,971,20,34,1010,46.62,135,3.8000000000000003,0.193 +2013,6,27,12,30,863,147,1007,20,35,1010,43.65,130.8,4.1000000000000005,0.193 +2013,6,27,13,30,860,142,979,20,35,1010,43.46,128.70000000000002,4.4,0.193 +2013,6,27,14,30,844,133,889,20,34,1010,45.84,128.8,4.6000000000000005,0.193 +2013,6,27,15,30,780,138,737,20,33,1010,48.53,129,4.7,0.193 +2013,6,27,16,30,710,122,549,20,32,1010,51.89,129.5,4.9,0.193 +2013,6,27,17,30,586,100,338,21,31,1010,56.61,130.8,4.9,0.193 +2013,6,27,18,30,352,62,131,22,29,1010,66.92,133.4,4.7,0.193 +2013,6,27,19,30,0,0,0,23,27,1010,79.59,136.70000000000002,4.5,0.193 +2013,6,27,20,30,0,0,0,23,27,1010,82.77,140.5,4.3,0.193 +2013,6,27,21,30,0,0,0,24,27,1010,84.10000000000001,147,4,0.193 +2013,6,27,22,30,0,0,0,24,26,1010,89.41,155.9,3.8000000000000003,0.193 +2013,6,27,23,30,0,0,0,24,26,1010,89.34,164.9,3.6,0.193 +2013,6,28,0,30,0,0,0,24,26,1010,89.32000000000001,172.3,3.4000000000000004,0.193 +2013,6,28,1,30,0,0,0,24,25,1010,94.8,178.20000000000002,3,0.193 +2013,6,28,2,30,0,0,0,24,25,1010,95.11,183.70000000000002,2.7,0.193 +2013,6,28,3,30,0,0,0,24,25,1010,100,186.5,2.2,0.193 +2013,6,28,4,30,0,0,0,24,24,1010,100,186.5,1.9000000000000001,0.193 +2013,6,28,5,30,0,0,0,24,25,1010,96.94,185.9,2.2,0.193 +2013,6,28,6,30,321,55,110,24,27,1010,90.74,186,3,0.193 +2013,6,28,7,30,579,92,313,23,29,1010,76.84,188.4,3.3000000000000003,0.193 +2013,6,28,8,30,710,114,525,22,30,1010,64.66,189,3.1,0.193 +2013,6,28,9,30,500,258,633,21,32,1010,54.64,186.8,2.7,0.193 +2013,6,28,10,30,419,359,729,21,33,1010,49.56,180.4,2.2,0.193 +2013,6,28,11,30,550,331,863,20,34,1010,45.08,166.5,2,0.193 +2013,6,28,12,30,844,155,997,19,35,1010,40.92,148.8,2.1,0.193 +2013,6,28,13,30,839,153,969,19,35,1010,39.87,133.9,2.3000000000000003,0.193 +2013,6,28,14,30,818,146,879,19,36,1010,39.18,126.30000000000001,2.6,0.193 +2013,6,28,15,30,736,159,725,18,35,1010,39.01,125.5,2.9000000000000004,0.193 +2013,6,28,16,30,661,141,539,19,34,1000,41.7,128.1,3.2,0.193 +2013,6,28,17,30,532,114,330,19,33,1000,45.38,134.20000000000002,3.7,0.193 +2013,6,28,18,30,310,67,128,20,31,1000,57.550000000000004,143,4.2,0.193 +2013,6,28,19,30,0,0,0,22,29,1000,70.46000000000001,150.1,4.4,0.193 +2013,6,28,20,30,0,0,0,23,27,1010,80.01,155.8,4.2,0.193 +2013,6,28,21,30,0,0,0,23,27,1010,82.88,162.3,3.9000000000000004,0.193 +2013,6,28,22,30,0,0,0,24,27,1010,89.38,169.5,3.8000000000000003,0.193 +2013,6,28,23,30,0,0,0,24,26,1010,90.13,176.9,3.8000000000000003,0.193 +2013,6,29,0,30,0,0,0,24,26,1010,90.29,183.8,3.7,0.193 +2013,6,29,1,30,0,0,0,24,26,1000,90.11,189.9,3.5,0.193 +2013,6,29,2,30,0,0,0,24,25,1000,95.2,194.9,3.2,0.193 +2013,6,29,3,30,0,0,0,24,25,1000,94.87,198.5,2.7,0.193 +2013,6,29,4,30,0,0,0,24,25,1000,94.77,200.10000000000002,2.3000000000000003,0.193 +2013,6,29,5,30,0,0,0,24,25,1010,94.83,199.3,2.5,0.193 +2013,6,29,6,30,235,62,102,24,26,1010,88.9,197.8,3,0.193 +2013,6,29,7,30,491,113,300,23,28,1010,76.72,200,3.3000000000000003,0.193 +2013,6,29,8,30,645,138,511,22,30,1010,65.13,201.20000000000002,3.2,0.193 +2013,6,29,9,30,662,196,693,21,32,1010,54.84,202.4,2.6,0.193 +2013,6,29,10,30,801,153,859,20,35,1010,43.39,201.4,1.6,0.193 +2013,6,29,11,30,833,154,960,19,37,1000,36.09,176.20000000000002,1.1,0.193 +2013,6,29,12,30,565,384,947,18,38,1000,33.09,122.2,1.5,0.193 +2013,6,29,13,30,807,174,960,19,38,1000,33.42,109.4,2,0.193 +2013,6,29,14,30,791,162,870,19,38,1000,34.14,111.2,2.3000000000000003,0.193 +2013,6,29,15,30,761,142,727,19,38,1000,36.47,117.80000000000001,2.5,0.193 +2013,6,29,16,30,693,124,541,19,37,1000,38.6,125.10000000000001,2.7,0.193 +2013,6,29,17,30,568,101,332,19,35,1000,41.42,135.1,3,0.193 +2013,6,29,18,30,335,62,128,20,32,1000,52.17,147,3.7,0.193 +2013,6,29,19,30,0,0,0,21,30,1000,61.65,155.3,4.2,0.193 +2013,6,29,20,30,0,0,0,22,29,1000,67.07000000000001,161.70000000000002,4.4,0.193 +2013,6,29,21,30,0,0,0,22,28,1000,72.24,167.20000000000002,4.3,0.193 +2013,6,29,22,30,0,0,0,22,28,1000,76.53,173.3,4.1000000000000005,0.193 +2013,6,29,23,30,0,0,0,22,27,1000,76.13,180.8,3.7,0.193 +2013,6,30,0,30,0,0,0,22,27,1000,75.39,190.5,3.3000000000000003,0.193 +2013,6,30,1,30,0,0,0,21,27,1000,78.53,200.8,3,0.193 +2013,6,30,2,30,0,0,0,21,26,1000,77.62,206.60000000000002,2.5,0.193 +2013,6,30,3,30,0,0,0,21,26,1000,78.41,205.5,2,0.193 +2013,6,30,4,30,0,0,0,22,26,1000,85.03,202.10000000000002,1.7000000000000002,0.193 +2013,6,30,5,30,0,0,0,22,26,1000,86.12,202,2,0.193 +2013,6,30,6,30,0,6,6,22,27,1000,76.49,203.70000000000002,2.4000000000000004,0.193 +2013,6,30,7,30,0,22,22,21,29,1000,65.38,212.60000000000002,2.3000000000000003,0.193 +2013,6,30,8,30,0,48,48,20,33,1000,47.15,230,1.8,0.193 +2013,6,30,9,30,20,266,281,18,35,1000,38.050000000000004,260.1,1.5,0.193 +2013,6,30,10,30,5,170,175,18,36,1000,35.68,297.6,1.6,0.193 +2013,6,30,11,30,10,210,220,19,35,1000,39.230000000000004,327.8,2.4000000000000004,0.193 +2013,6,30,12,30,35,416,451,20,33,1010,47.4,334.40000000000003,3.7,0.193 +2013,6,30,13,30,17,319,337,21,31,1010,58.54,333.3,5,0.193 +2013,6,30,14,30,43,382,421,23,29,1010,71.97,332.20000000000005,5.5,0.193 +2013,6,30,15,30,377,320,610,24,28,1010,80.29,340,4.5,0.193 +2013,6,30,16,30,180,266,375,24,27,1000,84.95,9.8,3.2,0.193 +2013,6,30,17,30,179,162,235,23,27,1000,83.59,64,2.4000000000000004,0.193 +2013,6,30,18,30,179,80,116,23,27,1000,87.92,88.9,1.1,0.193 +2013,6,30,19,30,0,0,0,24,26,1000,90.5,134.8,0.6000000000000001,0.193 +2013,6,30,20,30,0,0,0,24,26,1000,95.83,284.40000000000003,1.3,0.193 +2013,6,30,21,30,0,0,0,23,25,1000,94.19,295,1.5,0.193 +2013,6,30,22,30,0,0,0,23,24,1000,99.17,301.7,1.3,0.193 +2013,6,30,23,30,0,0,0,23,24,1010,98.4,295.40000000000003,1.1,0.193 +2013,7,1,0,30,0,0,0,23,24,1010,97.21000000000001,275.6,1,0.193 +2013,7,1,1,30,0,0,0,23,23,1010,100,263,1.2000000000000002,0.193 +2013,7,1,2,30,0,0,0,23,23,1010,100,261.5,1.3,0.193 +2013,7,1,3,30,0,0,0,23,23,1010,100,269.3,1.3,0.193 +2013,7,1,4,30,0,0,0,23,23,1010,100,288,1.5,0.193 +2013,7,1,5,30,0,0,0,23,23,1010,100,311,2.2,0.193 +2013,7,1,6,30,0,32,32,22,25,1010,88.4,329.90000000000003,3,0.193 +2013,7,1,7,30,31,139,151,21,28,1010,72.41,343.6,3.2,0.193 +2013,7,1,8,30,23,211,225,19,30,1010,52.5,2.9000000000000004,3.1,0.193 +2013,7,1,9,30,270,337,539,17,32,1010,42.5,21.6,3,0.193 +2013,7,1,10,30,766,173,847,17,33,1010,38.5,35.6,3,0.193 +2013,7,1,11,30,801,175,948,16,34,1010,35.95,45.5,3.1,0.193 +2013,7,1,12,30,793,191,982,16,35,1010,33.82,53.1,3.2,0.193 +2013,7,1,13,30,217,488,699,16,36,1010,31.87,59.7,3.2,0.193 +2013,7,1,14,30,773,175,867,16,36,1010,31.75,66.10000000000001,3.2,0.193 +2013,7,1,15,30,704,176,717,16,35,1000,33.6,74.10000000000001,3.1,0.193 +2013,7,1,16,30,620,157,531,16,34,1000,35.660000000000004,81.7,3.1,0.193 +2013,7,1,17,30,485,125,322,17,32,1010,40.74,91.30000000000001,3.2,0.193 +2013,7,1,18,30,235,72,118,18,29,1010,54.74,104.4,3.2,0.193 +2013,7,1,19,30,0,0,0,21,27,1010,71.8,112.80000000000001,3.1,0.193 +2013,7,1,20,30,0,0,0,22,26,1010,80.83,115,2.7,0.193 +2013,7,1,21,30,0,0,0,23,26,1010,84.33,109.80000000000001,2.2,0.193 +2013,7,1,22,30,0,0,0,23,25,1010,91.34,101.60000000000001,1.7000000000000002,0.193 +2013,7,1,23,30,0,0,0,23,25,1010,92.38,97.2,1.5,0.193 +2013,7,2,0,30,0,0,0,23,25,1010,92.69,98.30000000000001,1.3,0.193 +2013,7,2,1,30,0,0,0,23,25,1010,92.61,104.7,1.1,0.193 +2013,7,2,2,30,0,0,0,23,25,1010,91.03,116.60000000000001,0.9,0.193 +2013,7,2,3,30,0,0,0,22,25,1010,87.87,122.4,0.6000000000000001,0.193 +2013,7,2,4,30,0,0,0,22,24,1010,90.4,82.10000000000001,0.5,0.193 +2013,7,2,5,30,0,0,0,22,24,1010,89.71000000000001,13,1,0.193 +2013,7,2,6,30,0,23,23,21,26,1010,77.86,3.5,1.8,0.193 +2013,7,2,7,30,0,114,114,20,28,1010,65.13,7.7,2.2,0.193 +2013,7,2,8,30,36,223,244,19,30,1010,53.050000000000004,15.4,2.1,0.193 +2013,7,2,9,30,220,346,510,17,31,1010,45.32,19.700000000000003,2,0.193 +2013,7,2,10,30,694,224,835,17,32,1010,40.94,23.700000000000003,1.8,0.193 +2013,7,2,11,30,718,240,933,16,33,1010,37.86,35.2,1.6,0.193 +2013,7,2,12,30,20,344,364,16,34,1010,35.54,52.6,1.6,0.193 +2013,7,2,13,30,763,212,954,16,35,1010,34.87,71.7,1.8,0.193 +2013,7,2,14,30,748,196,866,16,34,1010,34.15,91.60000000000001,2.1,0.193 +2013,7,2,15,30,697,184,721,15,34,1010,33.87,107.2,2.4000000000000004,0.193 +2013,7,2,16,30,615,163,534,15,33,1010,35.85,118.7,2.8000000000000003,0.193 +2013,7,2,17,30,491,126,326,16,32,1010,40.83,130.1,3.4000000000000004,0.193 +2013,7,2,18,30,270,71,125,17,29,1010,49.46,140.4,3.7,0.193 +2013,7,2,19,30,0,0,0,19,27,1010,64.39,147.8,3.7,0.193 +2013,7,2,20,30,0,0,0,20,26,1010,72.2,153.4,3.4000000000000004,0.193 +2013,7,2,21,30,0,0,0,21,26,1010,79.01,160.5,2.8000000000000003,0.193 +2013,7,2,22,30,0,0,0,21,25,1010,80.44,169,2.4000000000000004,0.193 +2013,7,2,23,30,0,0,0,21,25,1010,81.13,178.4,2.3000000000000003,0.193 +2013,7,3,0,30,0,0,0,21,25,1010,86.25,186.9,2.3000000000000003,0.193 +2013,7,3,1,30,0,0,0,21,24,1010,86.04,194,2.3000000000000003,0.193 +2013,7,3,2,30,0,0,0,21,24,1010,85.73,203.3,2.1,0.193 +2013,7,3,3,30,0,0,0,21,24,1010,91.07000000000001,216.3,1.8,0.193 +2013,7,3,4,30,0,0,0,21,23,1010,91.29,229.3,1.5,0.193 +2013,7,3,5,30,0,0,0,21,23,1010,91.58,232.3,1.5,0.193 +2013,7,3,6,30,0,53,54,21,25,1010,78.96000000000001,242.70000000000002,1.4000000000000001,0.193 +2013,7,3,7,30,52,144,163,19,27,1010,65.35,251.60000000000002,0.8,0.193 +2013,7,3,8,30,450,198,457,18,30,1010,49.49,273.2,0.5,0.193 +2013,7,3,9,30,535,244,644,17,32,1010,42.39,68.7,0.9,0.193 +2013,7,3,10,30,358,390,705,17,33,1010,39.57,84.9,1.4000000000000001,0.193 +2013,7,3,11,30,298,462,750,17,34,1010,39.410000000000004,97.30000000000001,1.9000000000000001,0.193 +2013,7,3,12,30,128,503,631,17,34,1010,36.95,105.30000000000001,2.4000000000000004,0.193 +2013,7,3,13,30,242,483,719,17,33,1010,38.84,110.30000000000001,2.8000000000000003,0.193 +2013,7,3,14,30,276,425,673,17,33,1010,38.910000000000004,113.60000000000001,3.2,0.193 +2013,7,3,15,30,250,354,547,17,33,1010,41.32,114.7,3.5,0.193 +2013,7,3,16,30,62,252,289,17,32,1010,43.64,114.5,3.7,0.193 +2013,7,3,17,30,42,160,177,17,31,1010,46.43,115.60000000000001,3.9000000000000004,0.193 +2013,7,3,18,30,265,63,115,18,29,1010,51.730000000000004,119.4,3.8000000000000003,0.193 +2013,7,3,19,30,0,0,0,19,27,1010,64.76,125.4,3.5,0.193 +2013,7,3,20,30,0,0,0,21,26,1010,74.71000000000001,131.9,3.4000000000000004,0.193 +2013,7,3,21,30,0,0,0,21,26,1010,82.67,137.1,3.2,0.193 +2013,7,3,22,30,0,0,0,22,25,1010,83.93,142.8,2.9000000000000004,0.193 +2013,7,3,23,30,0,0,0,22,25,1010,84.65,151.20000000000002,2.6,0.193 +2013,7,4,0,30,0,0,0,22,24,1010,90.15,160.3,2.4000000000000004,0.193 +2013,7,4,1,30,0,0,0,22,24,1010,90.02,169.8,2.2,0.193 +2013,7,4,2,30,0,0,0,22,24,1010,95.26,181.3,2,0.193 +2013,7,4,3,30,0,0,0,22,23,1010,94.87,192.9,1.7000000000000002,0.193 +2013,7,4,4,30,0,0,0,22,23,1010,94.17,199.8,1.4000000000000001,0.193 +2013,7,4,5,30,0,0,0,21,23,1010,92.35000000000001,202.20000000000002,1.2000000000000002,0.193 +2013,7,4,6,30,254,58,100,21,25,1010,81.07000000000001,200.3,1.2000000000000002,0.193 +2013,7,4,7,30,504,111,300,20,27,1010,66.88,178.60000000000002,1.2000000000000002,0.193 +2013,7,4,8,30,651,140,514,19,30,1010,56.34,134.1,1.5,0.193 +2013,7,4,9,30,736,158,707,18,32,1010,43.64,111.60000000000001,2.1,0.193 +2013,7,4,10,30,787,169,861,17,33,1010,38.87,108,2.7,0.193 +2013,7,4,11,30,816,174,961,16,34,1010,36.36,108.9,3.3000000000000003,0.193 +2013,7,4,12,30,791,201,990,16,35,1010,36.11,111.30000000000001,3.9000000000000004,0.193 +2013,7,4,13,30,786,197,963,16,34,1010,35.88,113.5,4.4,0.193 +2013,7,4,14,30,765,188,873,16,34,1010,35.89,114.7,4.6000000000000005,0.193 +2013,7,4,15,30,478,276,644,16,33,1010,38.160000000000004,114.10000000000001,4.800000000000001,0.193 +2013,7,4,16,30,468,204,486,17,32,1010,40.82,113.7,4.7,0.193 +2013,7,4,17,30,551,111,336,17,30,1010,47.64,113.5,4.5,0.193 +2013,7,4,18,30,336,64,131,18,28,1010,57.910000000000004,114.4,3.9000000000000004,0.193 +2013,7,4,19,30,0,0,0,20,26,1010,72.05,116.30000000000001,3.1,0.193 +2013,7,4,20,30,0,0,0,21,26,1010,77.92,118.60000000000001,2.5,0.193 +2013,7,4,21,30,0,0,0,22,25,1010,85.69,120.80000000000001,2.1,0.193 +2013,7,4,22,30,0,0,0,22,25,1010,86.89,124.7,1.8,0.193 +2013,7,4,23,30,0,0,0,22,25,1010,92.69,130.3,1.6,0.193 +2013,7,5,0,30,0,0,0,22,24,1010,92.8,134.4,1.5,0.193 +2013,7,5,1,30,0,0,0,22,24,1010,92.44,136.5,1.5,0.193 +2013,7,5,2,30,0,0,0,22,24,1010,91.89,137.4,1.4000000000000001,0.193 +2013,7,5,3,30,0,0,0,22,24,1010,91.54,136.4,1.2000000000000002,0.193 +2013,7,5,4,30,0,0,0,22,24,1010,91.53,133.3,1.2000000000000002,0.193 +2013,7,5,5,30,0,0,0,22,24,1010,91.64,127.10000000000001,1.2000000000000002,0.193 +2013,7,5,6,30,258,57,99,22,26,1010,81.97,121.5,1.5,0.193 +2013,7,5,7,30,508,108,298,21,28,1010,69.47,125.7,1.7000000000000002,0.193 +2013,7,5,8,30,658,133,511,21,30,1010,60.050000000000004,120.9,1.7000000000000002,0.193 +2013,7,5,9,30,747,148,704,20,32,1010,51.14,112.4,1.9000000000000001,0.193 +2013,7,5,10,30,798,158,858,19,33,1010,45.82,101.4,2.4000000000000004,0.193 +2013,7,5,11,30,825,163,959,19,34,1010,41.42,95.80000000000001,3,0.193 +2013,7,5,12,30,822,175,994,18,35,1010,37.96,96.4,3.7,0.193 +2013,7,5,13,30,822,169,969,18,35,1010,37.52,99.9,4.4,0.193 +2013,7,5,14,30,809,157,882,18,34,1010,39.57,104,4.9,0.193 +2013,7,5,15,30,696,186,721,18,33,1010,42.2,106.5,5.1000000000000005,0.193 +2013,7,5,16,30,624,160,537,18,32,1000,45.81,106.7,5.2,0.193 +2013,7,5,17,30,503,124,329,19,30,1010,53.980000000000004,106.60000000000001,5,0.193 +2013,7,5,18,30,284,70,126,20,28,1010,65.33,106.9,4.6000000000000005,0.193 +2013,7,5,19,30,0,0,0,22,27,1010,75.17,107,3.9000000000000004,0.193 +2013,7,5,20,30,0,0,0,23,27,1010,84.47,106.9,3.3000000000000003,0.193 +2013,7,5,21,30,0,0,0,23,26,1010,86.29,109.60000000000001,2.8000000000000003,0.193 +2013,7,5,22,30,0,0,0,23,26,1010,91.82000000000001,114.7,2.2,0.193 +2013,7,5,23,30,0,0,0,23,25,1010,91.67,119.30000000000001,1.8,0.193 +2013,7,6,0,30,0,0,0,23,25,1010,90.96000000000001,125.80000000000001,1.6,0.193 +2013,7,6,1,30,0,0,0,23,25,1010,90.19,131.9,1.5,0.193 +2013,7,6,2,30,0,0,0,23,25,1010,89.49,135.70000000000002,1.2000000000000002,0.193 +2013,7,6,3,30,0,0,0,23,25,1010,89.47,129.3,1.1,0.193 +2013,7,6,4,30,0,0,0,23,25,1010,89.91,112.2,1.1,0.193 +2013,7,6,5,30,0,0,0,23,26,1010,90.32000000000001,93.5,1.5,0.193 +2013,7,6,6,30,222,60,96,23,27,1010,80.53,79.5,2.3000000000000003,0.193 +2013,7,6,7,30,491,111,295,23,29,1010,70.35000000000001,79.30000000000001,2.7,0.193 +2013,7,6,8,30,648,136,507,22,31,1010,61.5,80.60000000000001,3,0.193 +2013,7,6,9,30,732,153,699,22,32,1010,57.15,83.2,3.2,0.193 +2013,7,6,10,30,781,165,850,22,33,1010,53.21,87.60000000000001,3.5,0.193 +2013,7,6,11,30,805,171,948,21,34,1010,49.58,92.30000000000001,3.9000000000000004,0.193 +2013,7,6,12,30,834,159,990,21,34,1010,49.29,96.60000000000001,4.4,0.193 +2013,7,6,13,30,829,156,962,21,34,1010,49.49,100.80000000000001,4.7,0.193 +2013,7,6,14,30,813,146,874,21,34,1000,49.65,104.2,5,0.193 +2013,7,6,15,30,774,135,731,21,33,1000,52.24,106.80000000000001,5.1000000000000005,0.193 +2013,7,6,16,30,712,117,546,21,32,1000,55.32,108.60000000000001,5.1000000000000005,0.193 +2013,7,6,17,30,603,92,338,22,31,1000,63.06,111,5,0.193 +2013,7,6,18,30,401,52,131,22,29,1000,69.09,115.2,4.6000000000000005,0.193 +2013,7,6,19,30,0,0,0,23,27,1010,80.76,120.60000000000001,4.1000000000000005,0.193 +2013,7,6,20,30,0,0,0,23,27,1010,83.49,126.80000000000001,3.7,0.193 +2013,7,6,21,30,0,0,0,24,27,1010,84.55,131.8,3.4000000000000004,0.193 +2013,7,6,22,30,0,0,0,24,27,1010,84.36,135.6,3,0.193 +2013,7,6,23,30,0,0,0,24,26,1010,89.34,140.4,2.6,0.193 +2013,7,7,0,30,0,0,0,24,26,1010,89.37,144.8,2.5,0.193 +2013,7,7,1,30,0,0,0,24,26,1010,89.25,148.6,2.5,0.193 +2013,7,7,2,30,0,0,0,24,26,1010,89.14,153.4,2.4000000000000004,0.193 +2013,7,7,3,30,0,0,0,24,26,1010,89.11,157,2.3000000000000003,0.193 +2013,7,7,4,30,0,0,0,24,25,1010,94.82000000000001,158.3,2.1,0.193 +2013,7,7,5,30,0,0,0,24,26,1010,95.15,158,2.4000000000000004,0.193 +2013,7,7,6,30,286,52,98,23,27,1010,83.48,159.10000000000002,3,0.193 +2013,7,7,7,30,553,91,297,23,29,1010,71.78,164,3.4000000000000004,0.193 +2013,7,7,8,30,12,192,200,22,30,1010,66.15,167.10000000000002,3.5,0.193 +2013,7,7,9,30,777,121,700,22,31,1010,61.09,165.4,3.7,0.193 +2013,7,7,10,30,73,406,470,22,32,1010,56.61,160.3,4,0.193 +2013,7,7,11,30,841,138,949,22,33,1010,52.93,155.4,4.4,0.193 +2013,7,7,12,30,843,145,985,21,33,1010,52.38,151.8,4.800000000000001,0.193 +2013,7,7,13,30,309,464,765,21,33,1010,51.97,150.1,5.1000000000000005,0.193 +2013,7,7,14,30,804,146,867,21,32,1010,54.61,149,5.4,0.193 +2013,7,7,15,30,581,240,688,21,31,1010,57.74,148.20000000000002,5.5,0.193 +2013,7,7,16,30,110,265,331,21,30,1010,61.36,147.4,5.5,0.193 +2013,7,7,17,30,110,165,210,21,29,1010,65.9,145.9,5.2,0.193 +2013,7,7,18,30,87,70,87,22,28,1010,71.37,144.4,4.7,0.193 +2013,7,7,19,30,0,0,0,22,27,1010,77.97,141.5,4.1000000000000005,0.193 +2013,7,7,20,30,0,0,0,23,27,1010,80.67,138.5,3.8000000000000003,0.193 +2013,7,7,21,30,0,0,0,23,27,1010,82.3,140.4,3.9000000000000004,0.193 +2013,7,7,22,30,0,0,0,23,27,1010,87.91,145.9,3.9000000000000004,0.193 +2013,7,7,23,30,0,0,0,23,26,1010,87.77,151.20000000000002,3.7,0.193 +2013,7,8,0,30,0,0,0,23,26,1010,86.95,154.70000000000002,3.4000000000000004,0.193 +2013,7,8,1,30,0,0,0,23,26,1010,85.97,155.60000000000002,3,0.193 +2013,7,8,2,30,0,0,0,23,26,1010,85.72,153.60000000000002,2.7,0.193 +2013,7,8,3,30,0,0,0,23,25,1010,91.91,149,2.4000000000000004,0.193 +2013,7,8,4,30,0,0,0,23,25,1010,93.85000000000001,146.1,2.2,0.193 +2013,7,8,5,30,0,0,0,24,25,1010,95.9,147.9,2.3000000000000003,0.193 +2013,7,8,6,30,43,54,61,24,26,1010,92.14,153,2.8000000000000003,0.193 +2013,7,8,7,30,0,75,75,24,27,1010,87.11,157.70000000000002,3.2,0.193 +2013,7,8,8,30,0,136,136,24,28,1010,80.22,158.5,3.4000000000000004,0.193 +2013,7,8,9,30,314,323,556,23,29,1010,73.05,155.20000000000002,3.4000000000000004,0.193 +2013,7,8,10,30,164,429,573,23,30,1010,66.92,150.4,3.5,0.193 +2013,7,8,11,30,101,473,570,22,31,1010,61.96,146.3,3.6,0.193 +2013,7,8,12,30,378,442,818,22,32,1010,61.43,142.3,3.8000000000000003,0.193 +2013,7,8,13,30,463,411,862,22,32,1010,57.75,138.5,4,0.193 +2013,7,8,14,30,557,322,821,22,31,1010,61.22,134.4,4.4,0.193 +2013,7,8,15,30,500,268,653,22,31,1010,61.72,130.9,4.7,0.193 +2013,7,8,16,30,625,149,526,23,30,1010,66.28,128.8,4.9,0.193 +2013,7,8,17,30,490,123,323,23,29,1010,72.11,128.3,4.9,0.193 +2013,7,8,18,30,209,66,107,24,28,1010,79.10000000000001,128.6,4.4,0.193 +2013,7,8,19,30,0,0,0,24,27,1010,86.85000000000001,130.20000000000002,3.7,0.193 +2013,7,8,20,30,0,0,0,25,27,1010,89.17,132.1,3.1,0.193 +2013,7,8,21,30,0,0,0,25,27,1010,90.27,134.70000000000002,2.7,0.193 +2013,7,8,22,30,0,0,0,25,26,1010,96.28,137,2.4000000000000004,0.193 +2013,7,8,23,30,0,0,0,25,26,1010,96.52,139.70000000000002,2.2,0.193 +2013,7,9,0,30,0,0,0,25,26,1010,96.60000000000001,141.9,2,0.193 +2013,7,9,1,30,0,0,0,25,26,1010,96.71000000000001,143.20000000000002,2,0.193 +2013,7,9,2,30,0,0,0,25,25,1010,100,143.4,1.9000000000000001,0.193 +2013,7,9,3,30,0,0,0,25,25,1010,100,141.9,1.8,0.193 +2013,7,9,4,30,0,0,0,25,25,1010,100,139.20000000000002,1.7000000000000002,0.193 +2013,7,9,5,30,0,0,0,25,26,1010,100,134.70000000000002,1.9000000000000001,0.193 +2013,7,9,6,30,285,51,96,25,27,1010,91.25,129.1,2.5,0.193 +2013,7,9,7,30,555,90,295,24,28,1010,82.99,128.5,3,0.193 +2013,7,9,8,30,697,110,507,24,30,1010,71.24,127.9,3.3000000000000003,0.193 +2013,7,9,9,30,778,121,699,23,31,1010,64.9,126.5,3.4000000000000004,0.193 +2013,7,9,10,30,822,130,851,23,32,1010,59.63,124.80000000000001,3.6,0.193 +2013,7,9,11,30,843,137,949,22,33,1010,55.370000000000005,123.10000000000001,3.8000000000000003,0.193 +2013,7,9,12,30,819,163,978,22,34,1010,55.01,121.4,4.1000000000000005,0.193 +2013,7,9,13,30,811,162,952,22,33,1010,55.15,120.5,4.3,0.193 +2013,7,9,14,30,789,157,863,22,32,1010,58.550000000000004,121.30000000000001,4.6000000000000005,0.193 +2013,7,9,15,30,744,147,720,22,31,1010,62.31,123.4,4.7,0.193 +2013,7,9,16,30,678,128,537,23,30,1010,66.74,125.4,4.800000000000001,0.193 +2013,7,9,17,30,558,102,330,23,29,1010,72.05,128.1,4.6000000000000005,0.193 +2013,7,9,18,30,318,64,126,23,28,1010,78.36,131.6,4.3,0.193 +2013,7,9,19,30,0,0,0,24,28,1010,80.9,135.1,3.9000000000000004,0.193 +2013,7,9,20,30,0,0,0,24,27,1010,88.21000000000001,140,3.6,0.193 +2013,7,9,21,30,0,0,0,25,27,1010,89.53,145.70000000000002,3.4000000000000004,0.193 +2013,7,9,22,30,0,0,0,25,27,1010,89.99,152.6,3.3000000000000003,0.193 +2013,7,9,23,30,0,0,0,25,27,1010,95.55,158.70000000000002,3.1,0.193 +2013,7,10,0,30,0,0,0,25,26,1010,95.39,162.9,2.8000000000000003,0.193 +2013,7,10,1,30,0,0,0,25,26,1010,95.04,166.5,2.4000000000000004,0.193 +2013,7,10,2,30,0,0,0,25,26,1010,94.64,167.60000000000002,2,0.193 +2013,7,10,3,30,0,0,0,25,25,1010,100,167.10000000000002,1.7000000000000002,0.193 +2013,7,10,4,30,0,0,0,24,25,1010,99.7,164.9,1.5,0.193 +2013,7,10,5,30,0,0,0,24,26,1010,93.82000000000001,158.4,1.8,0.193 +2013,7,10,6,30,323,47,97,24,27,1010,87.81,149.9,2.5,0.193 +2013,7,10,7,30,587,81,298,23,29,1010,74.35000000000001,145.8,3,0.193 +2013,7,10,8,30,721,100,510,23,30,1010,67.56,141.9,3.1,0.193 +2013,7,10,9,30,795,113,702,22,32,1010,61.550000000000004,139.3,3,0.193 +2013,7,10,10,30,39,366,401,22,33,1010,56.49,136.8,3,0.193 +2013,7,10,11,30,20,336,355,21,33,1010,52.2,133.70000000000002,3.2,0.193 +2013,7,10,12,30,855,140,991,21,34,1010,48.85,131.20000000000002,3.6,0.193 +2013,7,10,13,30,846,141,964,21,34,1010,48.72,129.70000000000002,3.9000000000000004,0.193 +2013,7,10,14,30,821,139,875,21,33,1010,51.59,130.5,4.2,0.193 +2013,7,10,15,30,789,126,733,21,32,1010,54.550000000000004,131.8,4.5,0.193 +2013,7,10,16,30,723,111,547,21,31,1010,57.82,132.70000000000002,4.6000000000000005,0.193 +2013,7,10,17,30,609,89,337,21,30,1010,62.01,133.3,4.6000000000000005,0.193 +2013,7,10,18,30,347,59,127,22,29,1010,67.52,134.3,4.4,0.193 +2013,7,10,19,30,0,0,0,23,28,1010,74.48,136.1,4.1000000000000005,0.193 +2013,7,10,20,30,0,0,0,23,27,1010,82.06,139.6,3.9000000000000004,0.193 +2013,7,10,21,30,0,0,0,24,27,1010,83.96000000000001,145.4,3.6,0.193 +2013,7,10,22,30,0,0,0,24,27,1010,84.82000000000001,152.3,3.4000000000000004,0.193 +2013,7,10,23,30,0,0,0,24,27,1010,90.21000000000001,160.60000000000002,3.3000000000000003,0.193 +2013,7,11,0,30,0,0,0,24,26,1010,90.26,169.10000000000002,3,0.193 +2013,7,11,1,30,0,0,0,24,26,1010,90.4,176.5,2.7,0.193 +2013,7,11,2,30,0,0,0,24,25,1010,96.07000000000001,182.3,2.4000000000000004,0.193 +2013,7,11,3,30,0,0,0,24,25,1010,96.34,185.70000000000002,2.1,0.193 +2013,7,11,4,30,0,0,0,24,25,1010,96.41,185.5,1.9000000000000001,0.193 +2013,7,11,5,30,0,0,0,24,25,1010,96.60000000000001,181.3,2.1,0.193 +2013,7,11,6,30,313,48,96,24,27,1010,85.2,173.60000000000002,2.8000000000000003,0.193 +2013,7,11,7,30,589,83,299,23,29,1010,72.47,168.20000000000002,3.1,0.193 +2013,7,11,8,30,727,101,514,22,31,1010,61.5,161.5,3.2,0.193 +2013,7,11,9,30,798,116,707,21,33,1010,55.13,156.60000000000002,3.3000000000000003,0.193 +2013,7,11,10,30,836,128,860,21,34,1010,50.75,151.4,3.6,0.193 +2013,7,11,11,30,854,137,959,21,35,1010,47.49,146.6,4,0.193 +2013,7,11,12,30,835,159,990,21,35,1010,44.68,142.3,4.4,0.193 +2013,7,11,13,30,821,163,962,21,35,1010,44.95,139.4,4.800000000000001,0.193 +2013,7,11,14,30,793,161,871,21,34,1010,47.89,137.8,5.1000000000000005,0.193 +2013,7,11,15,30,748,152,727,21,33,1010,51.050000000000004,136.70000000000002,5.2,0.193 +2013,7,11,16,30,673,135,541,21,32,1010,54.53,135,5.300000000000001,0.193 +2013,7,11,17,30,551,108,332,21,31,1010,58.53,133.9,5.2,0.193 +2013,7,11,18,30,325,64,128,22,30,1010,67.35,133.70000000000002,5,0.193 +2013,7,11,19,30,0,0,0,22,28,1010,74.01,134.6,4.6000000000000005,0.193 +2013,7,11,20,30,0,0,0,23,28,1010,76.59,138.5,4.3,0.193 +2013,7,11,21,30,0,0,0,23,27,1010,82.13,146.3,4.3,0.193 +2013,7,11,22,30,0,0,0,23,27,1010,81.81,156.4,4.4,0.193 +2013,7,11,23,30,0,0,0,23,27,1010,86.27,165.9,4.3,0.193 +2013,7,12,0,30,0,0,0,23,26,1010,86.03,173.70000000000002,4,0.193 +2013,7,12,1,30,0,0,0,23,26,1010,86.04,178.9,3.5,0.193 +2013,7,12,2,30,0,0,0,23,25,1010,91.35000000000001,182.10000000000002,2.8000000000000003,0.193 +2013,7,12,3,30,0,0,0,23,25,1010,91.5,184.3,2,0.193 +2013,7,12,4,30,0,0,0,23,24,1010,97.72,183.9,1.5,0.193 +2013,7,12,5,30,0,0,0,23,25,1010,92.33,178.4,1.6,0.193 +2013,7,12,6,30,295,49,95,23,27,1010,81.22,170.10000000000002,2.2,0.193 +2013,7,12,7,30,568,88,296,22,29,1010,68.61,172.4,2.6,0.193 +2013,7,12,8,30,706,110,510,22,31,1010,62.32,166.4,2.5,0.193 +2013,7,12,9,30,783,124,703,21,33,1010,52.27,155.20000000000002,2.5,0.193 +2013,7,12,10,30,827,134,857,20,34,1010,43.99,140.1,2.8000000000000003,0.193 +2013,7,12,11,30,848,141,957,19,35,1010,40.050000000000004,128.70000000000002,3.4000000000000004,0.193 +2013,7,12,12,30,838,156,991,18,36,1010,36.74,123.4,4,0.193 +2013,7,12,13,30,835,153,965,18,36,1010,36.27,121.7,4.5,0.193 +2013,7,12,14,30,818,144,877,18,35,1010,38.33,122.5,4.800000000000001,0.193 +2013,7,12,15,30,781,132,733,18,34,1010,41.2,124.60000000000001,4.9,0.193 +2013,7,12,16,30,718,114,547,19,33,1010,44.92,126.9,4.800000000000001,0.193 +2013,7,12,17,30,606,91,337,20,31,1010,52.29,129.20000000000002,4.6000000000000005,0.193 +2013,7,12,18,30,377,57,130,20,29,1010,61.77,131.3,4.2,0.193 +2013,7,12,19,30,0,0,0,21,28,1010,69.66,133.70000000000002,3.8000000000000003,0.193 +2013,7,12,20,30,0,0,0,22,27,1010,77.78,137.6,3.5,0.193 +2013,7,12,21,30,0,0,0,23,27,1010,79.62,144.3,3.2,0.193 +2013,7,12,22,30,0,0,0,23,27,1010,80.25,152.8,2.9000000000000004,0.193 +2013,7,12,23,30,0,0,0,23,26,1010,85.60000000000001,161.5,2.6,0.193 +2013,7,13,0,30,0,0,0,23,26,1010,85.87,169.3,2.3000000000000003,0.193 +2013,7,13,1,30,0,0,0,23,26,1010,86.11,176.8,2,0.193 +2013,7,13,2,30,0,0,0,23,25,1010,91.78,182.8,1.8,0.193 +2013,7,13,3,30,0,0,0,23,25,1010,92.3,186.60000000000002,1.6,0.193 +2013,7,13,4,30,0,0,0,23,25,1010,92.3,188.10000000000002,1.4000000000000001,0.193 +2013,7,13,5,30,0,0,0,23,25,1010,92.03,187.5,1.6,0.193 +2013,7,13,6,30,312,47,94,23,27,1010,80.47,184.9,1.9000000000000001,0.193 +2013,7,13,7,30,585,83,297,22,29,1010,69.06,178.8,1.7000000000000002,0.193 +2013,7,13,8,30,727,102,513,21,31,1010,58.18,163,1.5,0.193 +2013,7,13,9,30,806,113,709,20,33,1010,48.2,142,1.7000000000000002,0.193 +2013,7,13,10,30,852,121,865,19,34,1010,43.21,130.5,2.1,0.193 +2013,7,13,11,30,877,125,968,19,35,1010,39.85,127.2,2.6,0.193 +2013,7,13,12,30,869,140,1004,18,36,1010,36.83,125,3.2,0.193 +2013,7,13,13,30,867,137,979,18,36,1010,36.28,123.30000000000001,3.7,0.193 +2013,7,13,14,30,850,130,891,18,36,1010,36.01,123.7,4,0.193 +2013,7,13,15,30,822,116,749,18,35,1010,37.87,124.2,4.2,0.193 +2013,7,13,16,30,763,102,561,18,34,1010,39.97,124.7,4.3,0.193 +2013,7,13,17,30,657,82,348,18,32,1010,45.04,128.1,4.3,0.193 +2013,7,13,18,30,364,54,125,19,30,1010,52.32,135.3,4.1000000000000005,0.193 +2013,7,13,19,30,0,0,0,20,28,1010,63.63,143.6,3.8000000000000003,0.193 +2013,7,13,20,30,0,0,0,21,27,1010,73.47,149.1,3.7,0.193 +2013,7,13,21,30,0,0,0,22,27,1010,77.3,155.5,3.6,0.193 +2013,7,13,22,30,0,0,0,23,27,1010,84.23,164.60000000000002,3.5,0.193 +2013,7,13,23,30,0,0,0,23,26,1010,85.42,174.8,3.5,0.193 +2013,7,14,0,30,0,0,0,23,26,1010,86.10000000000001,184.70000000000002,3.5,0.193 +2013,7,14,1,30,0,0,0,23,26,1010,86.38,191.60000000000002,3.3000000000000003,0.193 +2013,7,14,2,30,0,0,0,23,26,1010,86.3,193.9,2.9000000000000004,0.193 +2013,7,14,3,30,0,0,0,23,25,1010,91.7,195,2.7,0.193 +2013,7,14,4,30,0,0,0,23,25,1010,92.13,195.70000000000002,2.3000000000000003,0.193 +2013,7,14,5,30,0,0,0,23,25,1010,92.68,193.8,2.4000000000000004,0.193 +2013,7,14,6,30,219,55,88,23,26,1010,86.9,193.3,3,0.193 +2013,7,14,7,30,337,123,246,22,28,1010,73.75,195.9,2.9000000000000004,0.193 +2013,7,14,8,30,390,216,436,21,30,1010,62.160000000000004,189.4,2.6,0.193 +2013,7,14,9,30,355,307,570,20,32,1010,54.64,174.4,2.5,0.193 +2013,7,14,10,30,367,381,702,19,33,1010,45.82,158.4,2.8000000000000003,0.193 +2013,7,14,11,30,403,411,799,19,34,1010,41.84,148.3,3.4000000000000004,0.193 +2013,7,14,12,30,520,407,925,19,35,1010,39.22,144.1,4.1000000000000005,0.193 +2013,7,14,13,30,795,190,962,19,36,1010,39.39,140.20000000000002,4.7,0.193 +2013,7,14,14,30,783,175,876,19,35,1000,39.94,135.9,5.1000000000000005,0.193 +2013,7,14,15,30,673,200,718,19,34,1000,43.27,132.3,5.5,0.193 +2013,7,14,16,30,614,166,535,20,32,1000,50.19,132.1,5.7,0.193 +2013,7,14,17,30,96,162,201,21,31,1000,59.03,134.20000000000002,5.6000000000000005,0.193 +2013,7,14,18,30,0,46,46,22,29,1010,66.55,137.4,5.4,0.193 +2013,7,14,19,30,0,0,0,23,28,1010,74.61,140.9,5.1000000000000005,0.193 +2013,7,14,20,30,0,0,0,23,27,1010,82.47,143.5,4.800000000000001,0.193 +2013,7,14,21,30,0,0,0,23,27,1010,83.64,147.1,4.7,0.193 +2013,7,14,22,30,0,0,0,23,27,1010,83.23,152.5,4.800000000000001,0.193 +2013,7,14,23,30,0,0,0,23,27,1010,82.58,157.5,4.9,0.193 +2013,7,15,0,30,0,0,0,23,27,1010,82.02,161.9,4.9,0.193 +2013,7,15,1,30,0,0,0,23,26,1010,86.46000000000001,165,4.800000000000001,0.193 +2013,7,15,2,30,0,0,0,23,26,1010,85.71000000000001,166.5,4.5,0.193 +2013,7,15,3,30,0,0,0,23,26,1010,84.81,167.70000000000002,4,0.193 +2013,7,15,4,30,0,0,0,23,26,1010,84.45,165.70000000000002,3.4000000000000004,0.193 +2013,7,15,5,30,0,0,0,23,26,1010,84.45,158.70000000000002,3.7,0.193 +2013,7,15,6,30,0,6,6,23,28,1010,74.48,152.3,4.800000000000001,0.193 +2013,7,15,7,30,28,131,142,22,29,1010,68.17,150.20000000000002,5.7,0.193 +2013,7,15,8,30,167,245,339,22,30,1010,62.86,146.70000000000002,6.300000000000001,0.193 +2013,7,15,9,30,155,338,453,21,31,1010,58.7,143.70000000000002,6.4,0.193 +2013,7,15,10,30,521,324,778,21,32,1010,55.22,141.4,6.1000000000000005,0.193 +2013,7,15,11,30,810,165,943,21,33,1010,51.69,138.4,5.9,0.193 +2013,7,15,12,30,386,438,822,21,33,1010,51.54,134.20000000000002,6,0.193 +2013,7,15,13,30,384,426,799,21,32,1010,54.76,129.8,6,0.193 +2013,7,15,14,30,414,369,740,21,31,1010,58.550000000000004,125.60000000000001,5.7,0.193 +2013,7,15,15,30,660,206,713,22,31,1010,59.04,120.80000000000001,5.5,0.193 +2013,7,15,16,30,691,123,538,22,30,1010,63.15,116.60000000000001,5.4,0.193 +2013,7,15,17,30,421,127,298,22,29,1010,68.46000000000001,114.4,5.300000000000001,0.193 +2013,7,15,18,30,146,69,98,23,28,1010,74.95,114.7,5,0.193 +2013,7,15,19,30,0,0,0,23,28,1010,77.79,116.2,4.6000000000000005,0.193 +2013,7,15,20,30,0,0,0,24,28,1010,84.89,117.30000000000001,4.6000000000000005,0.193 +2013,7,15,21,30,0,0,0,24,27,1010,85.51,118,4.4,0.193 +2013,7,15,22,30,0,0,0,24,27,1010,85.21000000000001,119.80000000000001,4.1000000000000005,0.193 +2013,7,15,23,30,0,0,0,24,27,1010,84.88,123.10000000000001,3.7,0.193 +2013,7,16,0,30,0,0,0,24,27,1010,84.44,127.10000000000001,3.4000000000000004,0.193 +2013,7,16,1,30,0,0,0,24,27,1010,83.97,130,3.2,0.193 +2013,7,16,2,30,0,0,0,23,27,1010,83.59,131.6,3,0.193 +2013,7,16,3,30,0,0,0,23,27,1010,88.35000000000001,128,2.9000000000000004,0.193 +2013,7,16,4,30,0,0,0,23,26,1010,88.29,122.5,2.8000000000000003,0.193 +2013,7,16,5,30,0,0,0,23,26,1010,88.62,118.30000000000001,3,0.193 +2013,7,16,6,30,104,50,65,24,27,1010,84.12,115.4,3.5,0.193 +2013,7,16,7,30,167,141,201,24,27,1010,84.01,114.7,4.1000000000000005,0.193 +2013,7,16,8,30,377,209,421,23,28,1010,82.84,113.7,4.7,0.193 +2013,7,16,9,30,400,295,589,23,28,1010,77.07000000000001,113.4,5,0.193 +2013,7,16,10,30,32,350,378,23,28,1010,76.3,113,5.300000000000001,0.193 +2013,7,16,11,30,478,398,857,23,29,1010,75.96000000000001,112.9,5.300000000000001,0.193 +2013,7,16,12,30,75,476,550,23,29,1010,71.72,111.9,5.2,0.193 +2013,7,16,13,30,365,435,790,23,29,1010,72.08,108.9,5.2,0.193 +2013,7,16,14,30,12,256,268,23,29,1010,72.10000000000001,104.5,5.300000000000001,0.193 +2013,7,16,15,30,102,356,435,23,28,1010,76.2,101.2,5.4,0.193 +2013,7,16,16,30,54,247,280,23,28,1010,76.41,99.30000000000001,5.4,0.193 +2013,7,16,17,30,95,162,200,23,27,1010,81.89,98.5,5,0.193 +2013,7,16,18,30,76,75,90,24,26,1010,88.96000000000001,98.60000000000001,4.4,0.193 +2013,7,16,19,30,0,0,0,24,26,1010,90.85000000000001,101.10000000000001,4,0.193 +2013,7,16,20,30,0,0,0,24,26,1010,97.16,106.2,3.6,0.193 +2013,7,16,21,30,0,0,0,24,25,1010,97.84,109.7,3.3000000000000003,0.193 +2013,7,16,22,30,0,0,0,24,25,1010,97.5,111.7,3.2,0.193 +2013,7,16,23,30,0,0,0,24,25,1010,96.61,113.10000000000001,3,0.193 +2013,7,17,0,30,0,0,0,24,25,1010,96.43,113.5,2.8000000000000003,0.193 +2013,7,17,1,30,0,0,0,24,25,1010,96.34,112.4,2.8000000000000003,0.193 +2013,7,17,2,30,0,0,0,24,25,1010,96.45,111.10000000000001,3,0.193 +2013,7,17,3,30,0,0,0,24,25,1010,96.9,111.9,3.3000000000000003,0.193 +2013,7,17,4,30,0,0,0,24,25,1010,97.92,116.5,3.4000000000000004,0.193 +2013,7,17,5,30,0,0,0,24,25,1010,99.12,124.5,3.4000000000000004,0.193 +2013,7,17,6,30,0,9,9,25,25,1010,100,132.4,3.5,0.193 +2013,7,17,7,30,1,117,118,25,26,1010,96.4,138.9,3.7,0.193 +2013,7,17,8,30,0,40,40,25,26,1010,94.62,144.1,3.9000000000000004,0.193 +2013,7,17,9,30,0,105,105,24,27,1010,85.66,144.4,3.9000000000000004,0.193 +2013,7,17,10,30,0,93,93,23,28,1010,78.56,140.5,3.9000000000000004,0.193 +2013,7,17,11,30,6,174,181,23,28,1010,77.44,136.20000000000002,3.9000000000000004,0.193 +2013,7,17,12,30,0,95,95,23,28,1010,76.81,131.9,3.9000000000000004,0.193 +2013,7,17,13,30,2,146,148,23,28,1010,76.42,126.30000000000001,3.9000000000000004,0.193 +2013,7,17,14,30,8,201,209,23,28,1010,75.93,118.80000000000001,4,0.193 +2013,7,17,15,30,18,266,280,23,28,1010,75.25,111.10000000000001,4.1000000000000005,0.193 +2013,7,17,16,30,86,259,311,23,27,1010,79.41,104.2,4.2,0.193 +2013,7,17,17,30,13,139,144,23,26,1010,84.81,97.5,3.9000000000000004,0.193 +2013,7,17,18,30,0,57,57,23,25,1010,91.78,91.7,3,0.193 +2013,7,17,19,30,0,0,0,23,25,1010,94.08,86.5,2.4000000000000004,0.193 +2013,7,17,20,30,0,0,0,24,25,1010,94.64,82.7,2.3000000000000003,0.193 +2013,7,17,21,30,0,0,0,24,25,1010,100,79.2,2.4000000000000004,0.193 +2013,7,17,22,30,0,0,0,23,24,1010,99.33,77,2.3000000000000003,0.193 +2013,7,17,23,30,0,0,0,23,24,1010,98.53,75.8,2.2,0.193 +2013,7,18,0,30,0,0,0,23,24,1010,98.04,74,2.1,0.193 +2013,7,18,1,30,0,0,0,23,24,1010,97.76,72.8,2,0.193 +2013,7,18,2,30,0,0,0,23,24,1010,97.78,68.7,1.8,0.193 +2013,7,18,3,30,0,0,0,23,24,1010,97.75,63.900000000000006,1.8,0.193 +2013,7,18,4,30,0,0,0,23,24,1010,97.99000000000001,59.6,1.8,0.193 +2013,7,18,5,30,0,0,0,23,24,1010,98.15,56.2,2,0.193 +2013,7,18,6,30,26,47,51,24,25,1010,100,51.7,2.5,0.193 +2013,7,18,7,30,39,133,147,24,26,1010,90.27,52.5,2.9000000000000004,0.193 +2013,7,18,8,30,0,128,128,24,27,1010,84.81,62.1,3,0.193 +2013,7,18,9,30,40,298,328,23,28,1010,78.75,70.4,2.9000000000000004,0.193 +2013,7,18,10,30,569,301,797,23,28,1010,77.86,75.4,2.9000000000000004,0.193 +2013,7,18,11,30,183,482,658,23,29,1010,72.94,78.80000000000001,3.1,0.193 +2013,7,18,12,30,833,153,980,23,29,1010,72.31,82.80000000000001,3.4000000000000004,0.193 +2013,7,18,13,30,815,161,952,23,29,1010,71.85000000000001,87.30000000000001,3.8000000000000003,0.193 +2013,7,18,14,30,569,315,824,23,29,1010,71.44,91,4.1000000000000005,0.193 +2013,7,18,15,30,716,164,713,23,29,1010,75.71000000000001,93.60000000000001,4.3,0.193 +2013,7,18,16,30,593,158,514,23,28,1010,75.99,95.60000000000001,4.4,0.193 +2013,7,18,17,30,474,125,316,23,27,1010,80.99,97.60000000000001,4.1000000000000005,0.193 +2013,7,18,18,30,238,71,116,23,26,1010,87.29,99.7,3.2,0.193 +2013,7,18,19,30,0,0,0,24,26,1010,89.57000000000001,101.7,2.5,0.193 +2013,7,18,20,30,0,0,0,24,25,1010,96.06,105.5,2.3000000000000003,0.193 +2013,7,18,21,30,0,0,0,24,25,1010,96.08,109.7,2.3000000000000003,0.193 +2013,7,18,22,30,0,0,0,24,25,1010,95.72,115.60000000000001,2.3000000000000003,0.193 +2013,7,18,23,30,0,0,0,24,25,1010,95.37,121.10000000000001,2.2,0.193 +2013,7,19,0,30,0,0,0,24,25,1010,95.05,125.5,2.1,0.193 +2013,7,19,1,30,0,0,0,24,25,1010,94.83,129.5,1.9000000000000001,0.193 +2013,7,19,2,30,0,0,0,24,25,1010,94.71000000000001,132.5,1.6,0.193 +2013,7,19,3,30,0,0,0,24,25,1010,94.66,135.1,1.4000000000000001,0.193 +2013,7,19,4,30,0,0,0,24,25,1010,94.54,135.1,1.2000000000000002,0.193 +2013,7,19,5,30,0,0,0,24,25,1010,94.22,131.4,1.1,0.193 +2013,7,19,6,30,186,53,79,24,27,1010,91.65,126,1.4000000000000001,0.193 +2013,7,19,7,30,478,104,274,23,28,1010,77.58,127.2,1.9000000000000001,0.193 +2013,7,19,8,30,629,134,485,23,29,1010,71.21000000000001,126.9,2.1,0.193 +2013,7,19,9,30,35,288,314,22,30,1010,66.12,125,2.1,0.193 +2013,7,19,10,30,142,425,549,22,31,1010,61.620000000000005,118.5,2.4000000000000004,0.193 +2013,7,19,11,30,51,429,479,22,31,1010,60.74,112.30000000000001,2.8000000000000003,0.193 +2013,7,19,12,30,237,462,697,22,32,1010,56.72,107.9,3.4000000000000004,0.193 +2013,7,19,13,30,805,169,950,22,32,1010,59.800000000000004,104.7,3.9000000000000004,0.193 +2013,7,19,14,30,787,160,863,22,31,1010,59.94,103.7,4.4,0.193 +2013,7,19,15,30,741,151,719,22,31,1010,60.11,104.7,4.9,0.193 +2013,7,19,16,30,683,127,536,22,30,1010,64.18,106.9,5.1000000000000005,0.193 +2013,7,19,17,30,572,98,327,22,29,1010,69.17,109.9,5,0.193 +2013,7,19,18,30,344,58,123,23,28,1010,79.53,113.5,4.2,0.193 +2013,7,19,19,30,0,0,0,23,27,1010,82.64,117.7,3.4000000000000004,0.193 +2013,7,19,20,30,0,0,0,24,26,1010,90.09,121.9,3.1,0.193 +2013,7,19,21,30,0,0,0,24,26,1010,91.22,127,3,0.193 +2013,7,19,22,30,0,0,0,24,26,1010,97,133.9,2.7,0.193 +2013,7,19,23,30,0,0,0,24,25,1010,96.75,141.20000000000002,2.5,0.193 +2013,7,20,0,30,0,0,0,24,25,1010,96.39,149,2.3000000000000003,0.193 +2013,7,20,1,30,0,0,0,24,25,1010,96.05,155.60000000000002,2.2,0.193 +2013,7,20,2,30,0,0,0,24,25,1010,95.81,161.8,2,0.193 +2013,7,20,3,30,0,0,0,24,25,1010,100,167,1.7000000000000002,0.193 +2013,7,20,4,30,0,0,0,24,25,1010,100,169.10000000000002,1.5,0.193 +2013,7,20,5,30,0,0,0,24,25,1010,96.10000000000001,167.8,1.5,0.193 +2013,7,20,6,30,288,44,85,24,26,1010,92.28,161.4,1.9000000000000001,0.193 +2013,7,20,7,30,322,122,236,23,28,1010,82.18,155.70000000000002,2.2,0.193 +2013,7,20,8,30,722,99,502,23,29,1010,75.21000000000001,146.6,2.3000000000000003,0.193 +2013,7,20,9,30,464,264,604,22,30,1010,69.89,136.1,2.5,0.193 +2013,7,20,10,30,330,394,682,22,30,1010,65.07000000000001,127.10000000000001,2.9000000000000004,0.193 +2013,7,20,11,30,445,401,827,22,31,1010,60.92,122.10000000000001,3.3000000000000003,0.193 +2013,7,20,12,30,97,490,587,22,32,1010,57.27,120.10000000000001,3.6,0.193 +2013,7,20,13,30,316,424,731,22,32,1010,57.28,119.60000000000001,4,0.193 +2013,7,20,14,30,590,305,832,22,31,1010,60.68,120.30000000000001,4.4,0.193 +2013,7,20,15,30,480,274,642,22,31,1010,64.74,121.9,4.6000000000000005,0.193 +2013,7,20,16,30,699,118,536,22,30,1010,69.76,124.10000000000001,4.800000000000001,0.193 +2013,7,20,17,30,567,96,323,23,28,1010,75.77,127.7,4.6000000000000005,0.193 +2013,7,20,18,30,292,63,117,23,27,1010,82.91,133.1,4.2,0.193 +2013,7,20,19,30,0,0,0,24,27,1010,86.07000000000001,138.9,3.8000000000000003,0.193 +2013,7,20,20,30,0,0,0,24,27,1010,88.64,145.5,3.7,0.193 +2013,7,20,21,30,0,0,0,25,27,1010,95.33,153.5,3.9000000000000004,0.193 +2013,7,20,22,30,0,0,0,25,26,1010,95.62,161.4,3.9000000000000004,0.193 +2013,7,20,23,30,0,0,0,25,26,1010,95.36,168.60000000000002,3.5,0.193 +2013,7,21,0,30,0,0,0,25,26,1010,95.56,173,3,0.193 +2013,7,21,1,30,0,0,0,25,26,1010,95.79,174.10000000000002,2.8000000000000003,0.193 +2013,7,21,2,30,0,0,0,25,26,1010,95.89,172.8,2.8000000000000003,0.193 +2013,7,21,3,30,0,0,0,25,26,1010,100,172.3,2.8000000000000003,0.193 +2013,7,21,4,30,0,0,0,25,25,1010,100,170.5,2.7,0.193 +2013,7,21,5,30,0,0,0,25,25,1010,100,168.8,2.7,0.193 +2013,7,21,6,30,0,2,2,25,26,1010,96.76,168.8,3.2,0.193 +2013,7,21,7,30,65,136,159,25,28,1010,85.69,170.8,3.9000000000000004,0.193 +2013,7,21,8,30,269,229,379,24,29,1010,77.97,175.9,4.3,0.193 +2013,7,21,9,30,328,314,554,24,30,1010,71.18,177.60000000000002,4.3,0.193 +2013,7,21,10,30,424,350,719,23,31,1010,65.31,174.60000000000002,4.2,0.193 +2013,7,21,11,30,236,474,701,23,32,1010,60.52,167.9,4.2,0.193 +2013,7,21,12,30,234,497,730,23,32,1010,59.78,159.5,4.3,0.193 +2013,7,21,13,30,410,414,813,23,32,1010,59.81,151.6,4.6000000000000005,0.193 +2013,7,21,14,30,651,240,821,23,32,1010,60.32,145.70000000000002,5,0.193 +2013,7,21,15,30,634,208,693,23,31,1010,64.58,143.5,5.300000000000001,0.193 +2013,7,21,16,30,488,194,486,23,30,1010,69.51,143.20000000000002,5.5,0.193 +2013,7,21,17,30,129,161,212,24,29,1010,75.38,143.70000000000002,5.300000000000001,0.193 +2013,7,21,18,30,125,79,102,24,28,1010,82.5,144.1,4.6000000000000005,0.193 +2013,7,21,19,30,0,0,0,25,27,1010,90.55,145,4.1000000000000005,0.193 +2013,7,21,20,30,0,0,0,25,27,1010,92.67,148.6,4,0.193 +2013,7,21,21,30,0,0,0,25,27,1010,94.04,154.3,4.1000000000000005,0.193 +2013,7,21,22,30,0,0,0,26,27,1010,94.8,160.3,4.2,0.193 +2013,7,21,23,30,0,0,0,26,27,1010,95.02,165.5,4.1000000000000005,0.193 +2013,7,22,0,30,0,0,0,26,27,1010,100,169,4,0.193 +2013,7,22,1,30,0,0,0,25,26,1010,99.03,170.4,3.9000000000000004,0.193 +2013,7,22,2,30,0,0,0,25,26,1010,97.85000000000001,169.60000000000002,3.8000000000000003,0.193 +2013,7,22,3,30,0,0,0,25,26,1010,97.06,167.3,3.7,0.193 +2013,7,22,4,30,0,0,0,25,26,1010,96.7,164,3.7,0.193 +2013,7,22,5,30,0,0,0,25,26,1010,96.69,161.5,4,0.193 +2013,7,22,6,30,168,52,75,25,27,1010,91.67,159.8,4.7,0.193 +2013,7,22,7,30,451,110,269,25,28,1010,85.79,161.4,5.5,0.193 +2013,7,22,8,30,597,147,479,24,29,1010,78.31,164,5.800000000000001,0.193 +2013,7,22,9,30,680,173,671,24,30,1010,71.69,163.8,5.9,0.193 +2013,7,22,10,30,722,197,824,23,31,1010,66.28,161.8,5.9,0.193 +2013,7,22,11,30,736,217,922,23,31,1010,65.51,158.8,6,0.193 +2013,7,22,12,30,806,177,976,23,32,1010,61.410000000000004,155.8,6.1000000000000005,0.193 +2013,7,22,13,30,782,187,946,23,32,1010,61.2,152.70000000000002,6.300000000000001,0.193 +2013,7,22,14,30,743,191,854,23,31,1010,64.9,150.6,6.4,0.193 +2013,7,22,15,30,708,170,712,23,31,1010,65.24,149.9,6.5,0.193 +2013,7,22,16,30,627,151,525,23,30,1010,69.71000000000001,149.5,6.5,0.193 +2013,7,22,17,30,492,119,315,24,29,1010,75.19,148.9,6.300000000000001,0.193 +2013,7,22,18,30,240,69,113,24,28,1010,82.08,148.1,5.7,0.193 +2013,7,22,19,30,0,0,0,25,28,1010,84.84,148.1,5.300000000000001,0.193 +2013,7,22,20,30,0,0,0,25,27,1010,92.01,150.8,5.2,0.193 +2013,7,22,21,30,0,0,0,25,27,1010,92.97,154.4,5.2,0.193 +2013,7,22,22,30,0,0,0,25,27,1010,92.8,158.9,5.2,0.193 +2013,7,22,23,30,0,0,0,25,27,1010,92.22,163.60000000000002,5.2,0.193 +2013,7,23,0,30,0,0,0,25,26,1010,97.14,167.9,5.2,0.193 +2013,7,23,1,30,0,0,0,25,26,1010,96.35000000000001,170.3,5.1000000000000005,0.193 +2013,7,23,2,30,0,0,0,25,26,1010,95.23,171.70000000000002,4.800000000000001,0.193 +2013,7,23,3,30,0,0,0,24,25,1010,99.83,173.10000000000002,4.5,0.193 +2013,7,23,4,30,0,0,0,24,25,1010,99.01,174.8,4.1000000000000005,0.193 +2013,7,23,5,30,0,0,0,24,25,1010,98.77,175.8,4.1000000000000005,0.193 +2013,7,23,6,30,192,52,78,24,26,1010,93.2,175.9,4.800000000000001,0.193 +2013,7,23,7,30,508,100,279,24,28,1010,80.64,177.4,5.6000000000000005,0.193 +2013,7,23,8,30,670,125,497,23,30,1010,68.28,177.9,6.1000000000000005,0.193 +2013,7,23,9,30,762,139,696,22,32,1010,58.410000000000004,175.3,6,0.193 +2013,7,23,10,30,804,154,851,22,33,1010,53.07,170.9,5.9,0.193 +2013,7,23,11,30,822,166,952,21,34,1010,48.51,166,5.9,0.193 +2013,7,23,12,30,830,169,992,21,34,1010,47.4,160.70000000000002,5.9,0.193 +2013,7,23,13,30,816,172,963,21,34,1010,47.09,155.60000000000002,6.1000000000000005,0.193 +2013,7,23,14,30,785,172,871,21,34,1010,47.47,151.9,6.300000000000001,0.193 +2013,7,23,15,30,681,193,713,21,33,1010,50.96,150.3,6.4,0.193 +2013,7,23,16,30,611,164,527,21,32,1010,55.06,149.6,6.4,0.193 +2013,7,23,17,30,479,126,317,22,31,1010,60.230000000000004,148.4,6.1000000000000005,0.193 +2013,7,23,18,30,229,71,113,23,29,1010,71.16,146.5,5.5,0.193 +2013,7,23,19,30,0,0,0,24,27,1010,85.01,145.1,4.9,0.193 +2013,7,23,20,30,0,0,0,24,27,1010,88.14,148.1,4.7,0.193 +2013,7,23,21,30,0,0,0,25,27,1010,94.62,154,4.6000000000000005,0.193 +2013,7,23,22,30,0,0,0,25,26,1010,94.63,160.5,4.4,0.193 +2013,7,23,23,30,0,0,0,25,26,1010,94.71000000000001,165.8,4.3,0.193 +2013,7,24,0,30,0,0,0,25,26,1010,94.87,169.70000000000002,4.1000000000000005,0.193 +2013,7,24,1,30,0,0,0,25,25,1010,100,172.8,4.1000000000000005,0.193 +2013,7,24,2,30,0,0,0,25,25,1010,100,175.70000000000002,4,0.193 +2013,7,24,3,30,0,0,0,25,25,1010,100,177.8,3.8000000000000003,0.193 +2013,7,24,4,30,0,0,0,25,25,1010,100,177.5,3.6,0.193 +2013,7,24,5,30,0,0,0,25,25,1010,100,176.10000000000002,3.7,0.193 +2013,7,24,6,30,42,49,54,25,27,1010,89.65,175,4.4,0.193 +2013,7,24,7,30,450,112,270,24,29,1010,80.94,176.3,4.800000000000001,0.193 +2013,7,24,8,30,639,135,489,23,30,1010,68.71000000000001,174.9,4.6000000000000005,0.193 +2013,7,24,9,30,746,145,689,22,32,1010,58.4,171.70000000000002,4.3,0.193 +2013,7,24,10,30,802,153,848,21,33,1010,52.29,166.60000000000002,4.1000000000000005,0.193 +2013,7,24,11,30,463,399,841,21,34,1010,47.550000000000004,159.5,4,0.193 +2013,7,24,12,30,505,413,913,20,35,1010,43.980000000000004,152.1,4.1000000000000005,0.193 +2013,7,24,13,30,829,163,965,20,35,1010,43.61,145,4.4,0.193 +2013,7,24,14,30,808,155,875,20,35,1010,43.78,138.1,4.6000000000000005,0.193 +2013,7,24,15,30,752,152,726,21,34,1010,46.76,134.1,4.9,0.193 +2013,7,24,16,30,679,133,537,21,33,1010,53.08,132.5,5.1000000000000005,0.193 +2013,7,24,17,30,551,106,324,21,31,1010,57.54,132.3,5.1000000000000005,0.193 +2013,7,24,18,30,298,62,116,22,29,1010,67.64,133.20000000000002,4.800000000000001,0.193 +2013,7,24,19,30,0,0,0,23,27,1010,80.91,135.3,4.4,0.193 +2013,7,24,20,30,0,0,0,24,27,1010,84.36,140.4,4.1000000000000005,0.193 +2013,7,24,21,30,0,0,0,24,26,1010,91.04,147.8,3.9000000000000004,0.193 +2013,7,24,22,30,0,0,0,24,26,1010,91.49,155.4,3.8000000000000003,0.193 +2013,7,24,23,30,0,0,0,24,26,1010,91.61,162.3,3.8000000000000003,0.193 +2013,7,25,0,30,0,0,0,24,26,1010,97.24000000000001,167.60000000000002,3.7,0.193 +2013,7,25,1,30,0,0,0,24,25,1010,97.25,171,3.4000000000000004,0.193 +2013,7,25,2,30,0,0,0,24,25,1010,97.17,173.20000000000002,2.9000000000000004,0.193 +2013,7,25,3,30,0,0,0,24,25,1010,100,174.70000000000002,2.5,0.193 +2013,7,25,4,30,0,0,0,24,24,1010,100,175.3,2.2,0.193 +2013,7,25,5,30,0,0,0,24,25,1010,96.43,175.20000000000002,2.3000000000000003,0.193 +2013,7,25,6,30,239,45,77,24,27,1010,86.64,172,3,0.193 +2013,7,25,7,30,545,88,277,24,29,1010,74.95,172.5,3.5,0.193 +2013,7,25,8,30,701,108,495,23,31,1010,65.01,170.20000000000002,3.6,0.193 +2013,7,25,9,30,781,123,692,22,32,1010,58.980000000000004,166.4,3.5,0.193 +2013,7,25,10,30,821,136,847,22,33,1010,53.410000000000004,161.60000000000002,3.5,0.193 +2013,7,25,11,30,839,146,948,21,34,1010,49.11,153.20000000000002,3.7,0.193 +2013,7,25,12,30,820,169,981,21,35,1010,45.64,144.3,3.9000000000000004,0.193 +2013,7,25,13,30,812,168,954,21,35,1010,45.44,136,4.3,0.193 +2013,7,25,14,30,788,162,864,21,34,1010,48.52,131,4.6000000000000005,0.193 +2013,7,25,15,30,738,154,717,21,33,1010,52.1,129,4.800000000000001,0.193 +2013,7,25,16,30,666,134,530,22,32,1010,56.31,128.8,5.1000000000000005,0.193 +2013,7,25,17,30,541,105,319,22,31,1010,65.24,130.4,5.1000000000000005,0.193 +2013,7,25,18,30,293,61,114,23,29,1010,72.48,133.8,4.800000000000001,0.193 +2013,7,25,19,30,0,0,0,24,28,1010,80.7,137.9,4.4,0.193 +2013,7,25,20,30,0,0,0,24,27,1010,88.47,143.5,4.2,0.193 +2013,7,25,21,30,0,0,0,25,27,1010,89.66,150.5,4.2,0.193 +2013,7,25,22,30,0,0,0,25,27,1010,90.04,158.70000000000002,4.2,0.193 +2013,7,25,23,30,0,0,0,25,26,1010,95.74000000000001,166.70000000000002,4.1000000000000005,0.193 +2013,7,26,0,30,0,0,0,25,26,1010,95.91,173.8,4,0.193 +2013,7,26,1,30,0,0,0,25,26,1010,95.96000000000001,178.70000000000002,3.8000000000000003,0.193 +2013,7,26,2,30,0,0,0,25,26,1010,100,181,3.6,0.193 +2013,7,26,3,30,0,0,0,25,25,1010,100,181.4,3.3000000000000003,0.193 +2013,7,26,4,30,0,0,0,25,25,1010,100,180.70000000000002,3.1,0.193 +2013,7,26,5,30,0,0,0,25,25,1010,100,178.8,3.3000000000000003,0.193 +2013,7,26,6,30,228,46,75,24,27,1010,88.72,174.9,4.1000000000000005,0.193 +2013,7,26,7,30,550,87,277,24,29,1010,76.31,178.5,4.800000000000001,0.193 +2013,7,26,8,30,707,107,496,23,31,1010,65.29,179.9,4.800000000000001,0.193 +2013,7,26,9,30,553,229,631,23,33,1010,56.43,178.20000000000002,4.5,0.193 +2013,7,26,10,30,593,288,801,22,34,1010,52.5,174.5,4.3,0.193 +2013,7,26,11,30,657,269,895,22,35,1010,49.03,168.8,4.2,0.193 +2013,7,26,12,30,367,446,808,22,36,1010,45.89,161.4,4.2,0.193 +2013,7,26,13,30,527,385,895,22,36,1010,45.56,153,4.5,0.193 +2013,7,26,14,30,230,433,638,22,35,1010,48.230000000000004,145.8,5,0.193 +2013,7,26,15,30,298,340,567,22,34,1010,51.42,142.1,5.5,0.193 +2013,7,26,16,30,209,258,382,22,33,1010,55,140.6,6,0.193 +2013,7,26,17,30,257,148,249,23,31,1010,63.07,140.5,6.4,0.193 +2013,7,26,18,30,222,67,107,23,29,1010,73.26,143.8,6.300000000000001,0.193 +2013,7,26,19,30,0,0,0,24,28,1010,80.60000000000001,149,5.9,0.193 +2013,7,26,20,30,0,0,0,24,28,1010,87.58,155.3,5.6000000000000005,0.193 +2013,7,26,21,30,0,0,0,24,27,1010,87.67,163,5.6000000000000005,0.193 +2013,7,26,22,30,0,0,0,24,27,1010,87.22,169.9,5.6000000000000005,0.193 +2013,7,26,23,30,0,0,0,24,26,1010,92.42,174.60000000000002,5.5,0.193 +2013,7,27,0,30,0,0,0,24,26,1010,92.2,178.60000000000002,5.300000000000001,0.193 +2013,7,27,1,30,0,0,0,24,26,1010,97.24000000000001,181.70000000000002,4.9,0.193 +2013,7,27,2,30,0,0,0,24,25,1010,96.99000000000001,183.8,4.4,0.193 +2013,7,27,3,30,0,0,0,24,25,1010,97.47,184.60000000000002,3.8000000000000003,0.193 +2013,7,27,4,30,0,0,0,24,25,1010,98.35000000000001,183.8,3.2,0.193 +2013,7,27,5,30,0,0,0,24,25,1010,99.05,181.4,3.2,0.193 +2013,7,27,6,30,194,41,66,24,27,1010,93.52,179.70000000000002,3.9000000000000004,0.193 +2013,7,27,7,30,103,135,171,24,29,1010,80.57000000000001,185.8,4.5,0.193 +2013,7,27,8,30,455,185,434,23,31,1010,64.98,189.4,4.6000000000000005,0.193 +2013,7,27,9,30,626,190,645,22,32,1010,58.52,190.20000000000002,4.2,0.193 +2013,7,27,10,30,651,231,794,22,34,1010,53.11,187,3.6,0.193 +2013,7,27,11,30,658,263,890,21,35,1010,48.39,179.20000000000002,3,0.193 +2013,7,27,12,30,747,217,956,21,35,1010,44.660000000000004,164.70000000000002,2.9000000000000004,0.193 +2013,7,27,13,30,732,220,927,20,35,1010,44.17,147.6,3,0.193 +2013,7,27,14,30,691,220,835,21,34,1000,46.86,135.6,3.4000000000000004,0.193 +2013,7,27,15,30,642,203,691,21,34,1000,50.22,132.20000000000002,3.8000000000000003,0.193 +2013,7,27,16,30,558,176,506,21,33,1000,54.160000000000004,132.3,4.4,0.193 +2013,7,27,17,30,0,109,109,22,31,1000,59.01,134.4,5.1000000000000005,0.193 +2013,7,27,18,30,0,25,25,22,29,1010,70.03,137.9,5.4,0.193 +2013,7,27,19,30,0,0,0,24,28,1010,79.08,142.9,5.2,0.193 +2013,7,27,20,30,0,0,0,24,27,1010,87.26,148.4,4.800000000000001,0.193 +2013,7,27,21,30,0,0,0,24,27,1010,88.7,154.3,4.4,0.193 +2013,7,27,22,30,0,0,0,25,27,1010,89,160.70000000000002,4.2,0.193 +2013,7,27,23,30,0,0,0,25,27,1010,94.77,167.10000000000002,4.1000000000000005,0.193 +2013,7,28,0,30,0,0,0,25,26,1010,95,172.10000000000002,3.9000000000000004,0.193 +2013,7,28,1,30,0,0,0,25,26,1010,94.87,176.4,3.6,0.193 +2013,7,28,2,30,0,0,0,25,26,1010,95.17,178.70000000000002,3.3000000000000003,0.193 +2013,7,28,3,30,0,0,0,25,26,1010,100,177.10000000000002,3,0.193 +2013,7,28,4,30,0,0,0,25,25,1010,100,173.9,2.8000000000000003,0.193 +2013,7,28,5,30,0,0,0,25,25,1010,100,170.5,3.1,0.193 +2013,7,28,6,30,81,52,62,25,27,1010,96.74000000000001,167.60000000000002,4,0.193 +2013,7,28,7,30,367,127,254,24,28,1010,82.42,171.60000000000002,4.6000000000000005,0.193 +2013,7,28,8,30,553,164,467,23,30,1010,69.75,168.9,4.6000000000000005,0.193 +2013,7,28,9,30,660,185,664,23,32,1010,62.870000000000005,163.60000000000002,4.6000000000000005,0.193 +2013,7,28,10,30,717,201,820,22,33,1010,53.59,158.60000000000002,4.9,0.193 +2013,7,28,11,30,449,398,826,21,34,1010,48.78,155,5.2,0.193 +2013,7,28,12,30,711,249,952,21,35,1010,45.04,152.3,5.6000000000000005,0.193 +2013,7,28,13,30,710,242,928,21,35,1010,44.44,150.1,5.9,0.193 +2013,7,28,14,30,684,231,839,21,34,1010,47.13,148.3,6.1000000000000005,0.193 +2013,7,28,15,30,537,269,677,21,33,1000,50.72,147.3,6.300000000000001,0.193 +2013,7,28,16,30,432,235,491,21,32,1000,55.230000000000004,146.9,6.300000000000001,0.193 +2013,7,28,17,30,277,177,285,22,31,1010,60.78,147.20000000000002,6.1000000000000005,0.193 +2013,7,28,18,30,74,78,91,23,29,1010,71.8,147.1,5.7,0.193 +2013,7,28,19,30,0,0,0,24,28,1010,81.06,145.1,5.300000000000001,0.193 +2013,7,28,20,30,0,0,0,25,28,1010,90.11,146,5.1000000000000005,0.193 +2013,7,28,21,30,0,0,0,25,27,1010,92.10000000000001,151.8,5.2,0.193 +2013,7,28,22,30,0,0,0,25,27,1010,92.08,159.3,5.4,0.193 +2013,7,28,23,30,0,0,0,25,27,1010,96.99000000000001,163.9,5.300000000000001,0.193 +2013,7,29,0,30,0,0,0,25,26,1010,96.09,166.5,5.300000000000001,0.193 +2013,7,29,1,30,0,0,0,25,26,1010,94.99,167.60000000000002,5.300000000000001,0.193 +2013,7,29,2,30,0,0,0,24,26,1010,94.04,167.9,5.1000000000000005,0.193 +2013,7,29,3,30,0,0,0,24,26,1010,93.34,167.3,4.800000000000001,0.193 +2013,7,29,4,30,0,0,0,24,26,1010,92.95,166.10000000000002,4.5,0.193 +2013,7,29,5,30,0,0,0,24,26,1010,92.48,165,4.7,0.193 +2013,7,29,6,30,107,52,66,24,27,1010,86.52,163.5,5.4,0.193 +2013,7,29,7,30,432,116,264,23,29,1010,74.24,164.20000000000002,6,0.193 +2013,7,29,8,30,627,141,484,23,31,1010,66.94,163.10000000000002,6.2,0.193 +2013,7,29,9,30,724,159,684,22,32,1010,57.24,161.20000000000002,6.300000000000001,0.193 +2013,7,29,10,30,771,175,840,22,33,1010,52.550000000000004,158.8,6.300000000000001,0.193 +2013,7,29,11,30,794,185,942,21,34,1010,48.89,155.8,6.4,0.193 +2013,7,29,12,30,809,184,983,21,35,1010,46.12,151.9,6.4,0.193 +2013,7,29,13,30,797,185,954,21,34,1010,49.28,147.6,6.6000000000000005,0.193 +2013,7,29,14,30,770,179,862,22,34,1010,49.9,143.70000000000002,6.7,0.193 +2013,7,29,15,30,729,163,716,22,33,1010,53.15,141,6.800000000000001,0.193 +2013,7,29,16,30,657,141,527,22,32,1010,56.57,140.3,6.9,0.193 +2013,7,29,17,30,524,110,314,22,30,1010,64.92,140.3,6.7,0.193 +2013,7,29,18,30,252,63,107,23,28,1010,76.07000000000001,140.6,6.2,0.193 +2013,7,29,19,30,0,0,0,24,27,1010,84.81,141,5.7,0.193 +2013,7,29,20,30,0,0,0,24,27,1010,87.83,143.70000000000002,5.6000000000000005,0.193 +2013,7,29,21,30,0,0,0,24,27,1010,88.75,148.20000000000002,5.5,0.193 +2013,7,29,22,30,0,0,0,24,27,1010,88.60000000000001,152.5,5.4,0.193 +2013,7,29,23,30,0,0,0,24,27,1010,88.29,155.9,5.2,0.193 +2013,7,30,0,30,0,0,0,24,27,1010,93.15,159,5.1000000000000005,0.193 +2013,7,30,1,30,0,0,0,24,26,1010,92.57000000000001,161.8,4.9,0.193 +2013,7,30,2,30,0,0,0,24,26,1010,91.88,164.5,4.6000000000000005,0.193 +2013,7,30,3,30,0,0,0,24,26,1010,91.32000000000001,166.10000000000002,4.5,0.193 +2013,7,30,4,30,0,0,0,24,26,1010,91.12,166.5,4.1000000000000005,0.193 +2013,7,30,5,30,0,0,0,24,26,1010,91.64,164.8,4,0.193 +2013,7,30,6,30,137,49,66,24,27,1010,87.02,161,4.5,0.193 +2013,7,30,7,30,455,108,263,24,29,1010,75.54,162,4.9,0.193 +2013,7,30,8,30,639,134,483,23,31,1010,65.11,161.8,5,0.193 +2013,7,30,9,30,738,149,683,23,32,1010,59.79,158.3,5,0.193 +2013,7,30,10,30,791,159,841,22,33,1010,54.7,154.60000000000002,5,0.193 +2013,7,30,11,30,818,166,945,22,34,1010,50.160000000000004,150.70000000000002,5.1000000000000005,0.193 +2013,7,30,12,30,780,203,973,21,35,1010,46.27,146.70000000000002,5.2,0.193 +2013,7,30,13,30,773,200,946,21,35,1010,46.02,142.4,5.4,0.193 +2013,7,30,14,30,749,191,855,21,34,1010,49.07,138.70000000000002,5.5,0.193 +2013,7,30,15,30,497,295,672,21,33,1010,52.22,136.20000000000002,5.7,0.193 +2013,7,30,16,30,443,232,493,22,32,1010,55.65,133.8,6,0.193 +2013,7,30,17,30,333,162,291,22,30,1010,64.3,132.1,6,0.193 +2013,7,30,18,30,129,74,96,23,28,1010,75.79,132.6,5.7,0.193 +2013,7,30,19,30,0,0,0,24,27,1010,83.96000000000001,134.9,5.300000000000001,0.193 +2013,7,30,20,30,0,0,0,24,27,1010,86.14,138.6,5,0.193 +2013,7,30,21,30,0,0,0,24,26,1010,91.87,143.9,4.800000000000001,0.193 +2013,7,30,22,30,0,0,0,24,26,1010,91.61,149.9,4.5,0.193 +2013,7,30,23,30,0,0,0,24,26,1010,91.17,156.5,4.3,0.193 +2013,7,31,0,30,0,0,0,24,25,1010,96.14,163.3,4,0.193 +2013,7,31,1,30,0,0,0,24,25,1010,95.5,169.8,3.7,0.193 +2013,7,31,2,30,0,0,0,24,25,1010,94.9,173.70000000000002,3.4000000000000004,0.193 +2013,7,31,3,30,0,0,0,24,25,1010,94.4,174.9,3.1,0.193 +2013,7,31,4,30,0,0,0,23,24,1010,99.97,174.9,2.7,0.193 +2013,7,31,5,30,0,0,0,23,24,1010,99.60000000000001,175.4,2.6,0.193 +2013,7,31,6,30,146,40,57,23,26,1010,88.3,176.4,3.1,0.193 +2013,7,31,7,30,49,130,147,23,28,1010,75.5,179.20000000000002,3.4000000000000004,0.193 +2013,7,31,8,30,688,115,490,22,30,1010,64.36,176.9,3,0.193 +2013,7,31,9,30,781,127,692,21,32,1010,54.51,169.4,2.7,0.193 +2013,7,31,10,30,829,137,851,20,34,1010,46.31,157.3,2.6,0.193 +2013,7,31,11,30,853,143,955,20,35,1010,42.52,144.1,2.8000000000000003,0.193 +2013,7,31,12,30,839,161,989,20,36,1010,41.9,134.4,3.2,0.193 +2013,7,31,13,30,832,159,961,20,36,1010,39.75,128.6,3.7,0.193 +2013,7,31,14,30,806,155,869,20,35,1010,42.72,125.9,4.1000000000000005,0.193 +2013,7,31,15,30,757,147,719,20,34,1010,46.03,124.5,4.4,0.193 +2013,7,31,16,30,681,129,528,21,33,1010,49.89,123,4.6000000000000005,0.193 +2013,7,31,17,30,549,102,313,21,31,1010,58.18,122.10000000000001,4.7,0.193 +2013,7,31,18,30,288,57,106,22,29,1010,69.12,122.80000000000001,4.6000000000000005,0.193 +2013,7,31,19,30,0,0,0,23,27,1010,82.55,125.60000000000001,4.4,0.193 +2013,7,31,20,30,0,0,0,24,27,1010,86.10000000000001,131.1,4.2,0.193 +2013,7,31,21,30,0,0,0,24,27,1010,92.85000000000001,138.9,4.1000000000000005,0.193 +2013,7,31,22,30,0,0,0,24,26,1010,93.21000000000001,149.4,4.1000000000000005,0.193 +2013,7,31,23,30,0,0,0,24,26,1010,93.14,158.70000000000002,4.1000000000000005,0.193 +2013,8,1,0,30,0,0,0,24,26,1010,92.72,166.3,4,0.193 +2013,8,1,1,30,0,0,0,24,26,1010,92.28,173.60000000000002,3.7,0.193 +2013,8,1,2,30,0,0,0,24,25,1010,97.56,180.8,3.2,0.193 +2013,8,1,3,30,0,0,0,24,25,1010,97.47,186.4,2.8000000000000003,0.193 +2013,8,1,4,30,0,0,0,24,25,1010,97.32000000000001,190.20000000000002,2.4000000000000004,0.193 +2013,8,1,5,30,0,0,0,24,25,1010,96.91,192,2.5,0.193 +2013,8,1,6,30,213,42,68,24,27,1010,85.35000000000001,191.20000000000002,3,0.193 +2013,8,1,7,30,537,87,268,23,29,1010,72.06,191.3,3,0.193 +2013,8,1,8,30,702,108,489,22,31,1010,61.050000000000004,186.70000000000002,2.5,0.193 +2013,8,1,9,30,792,119,690,21,33,1010,50.84,177.8,2,0.193 +2013,8,1,10,30,840,127,851,20,34,1010,44.81,158.60000000000002,1.8,0.193 +2013,8,1,11,30,866,132,955,19,35,1010,40.27,132.6,2.2,0.193 +2013,8,1,12,30,871,137,995,19,36,1010,37.230000000000004,117.30000000000001,2.8000000000000003,0.193 +2013,8,1,13,30,865,135,968,18,36,1010,36.85,111.80000000000001,3.5,0.193 +2013,8,1,14,30,844,130,876,19,36,1010,36.96,111.5,4.1000000000000005,0.193 +2013,8,1,15,30,765,142,720,19,35,1010,39.85,113.7,4.5,0.193 +2013,8,1,16,30,691,125,529,19,33,1010,45.88,117,4.800000000000001,0.193 +2013,8,1,17,30,559,99,313,20,31,1010,53.42,121.2,4.9,0.193 +2013,8,1,18,30,301,55,105,21,29,1010,63.550000000000004,126.60000000000001,4.7,0.193 +2013,8,1,19,30,0,0,0,22,27,1010,77.21000000000001,133.20000000000002,4.4,0.193 +2013,8,1,20,30,0,0,0,23,27,1010,82.19,139.8,4.1000000000000005,0.193 +2013,8,1,21,30,0,0,0,24,26,1010,90.09,146,3.9000000000000004,0.193 +2013,8,1,22,30,0,0,0,24,26,1010,91.37,152.6,3.7,0.193 +2013,8,1,23,30,0,0,0,24,26,1010,91.71000000000001,158.8,3.6,0.193 +2013,8,2,0,30,0,0,0,24,26,1010,91.58,165.5,3.4000000000000004,0.193 +2013,8,2,1,30,0,0,0,24,26,1010,91.33,172.10000000000002,3.2,0.193 +2013,8,2,2,30,0,0,0,24,26,1010,96.62,176.8,2.9000000000000004,0.193 +2013,8,2,3,30,0,0,0,24,25,1010,96.44,180.3,2.5,0.193 +2013,8,2,4,30,0,0,0,24,25,1010,96.49000000000001,182.10000000000002,2.2,0.193 +2013,8,2,5,30,0,0,0,24,25,1010,96.55,182,2.4000000000000004,0.193 +2013,8,2,6,30,115,39,52,24,27,1010,85.53,179.8,3,0.193 +2013,8,2,7,30,543,84,267,23,29,1010,72.16,179.4,3.2,0.193 +2013,8,2,8,30,705,105,487,22,31,1010,61,173.3,2.9000000000000004,0.193 +2013,8,2,9,30,786,120,686,21,33,1010,50.45,162.9,2.8000000000000003,0.193 +2013,8,2,10,30,832,129,844,20,34,1010,44.97,150.4,3,0.193 +2013,8,2,11,30,855,135,947,20,35,1010,41.76,140.3,3.5,0.193 +2013,8,2,12,30,839,155,981,19,36,1010,39.22,134.5,4.1000000000000005,0.193 +2013,8,2,13,30,482,401,865,19,36,1010,39.18,130.8,4.6000000000000005,0.193 +2013,8,2,14,30,534,327,799,19,35,1010,41.44,128.20000000000002,4.9,0.193 +2013,8,2,15,30,588,231,674,20,34,1010,44.18,125.9,5.1000000000000005,0.193 +2013,8,2,16,30,376,227,446,20,33,1010,47.51,124.60000000000001,5.300000000000001,0.193 +2013,8,2,17,30,494,113,302,20,31,1010,54.65,124.60000000000001,5.4,0.193 +2013,8,2,18,30,242,59,99,21,29,1010,64.59,125.80000000000001,5.2,0.193 +2013,8,2,19,30,0,0,0,22,28,1010,73.67,128.70000000000002,4.800000000000001,0.193 +2013,8,2,20,30,0,0,0,23,27,1010,83.16,133.5,4.6000000000000005,0.193 +2013,8,2,21,30,0,0,0,24,27,1010,85.2,140.4,4.3,0.193 +2013,8,2,22,30,0,0,0,24,27,1010,84.94,147.4,4,0.193 +2013,8,2,23,30,0,0,0,24,26,1010,89.54,153.3,3.8000000000000003,0.193 +2013,8,3,0,30,0,0,0,24,26,1010,89.11,159,3.5,0.193 +2013,8,3,1,30,0,0,0,24,26,1010,89.05,164.8,3,0.193 +2013,8,3,2,30,0,0,0,24,25,1010,94.60000000000001,168.8,2.5,0.193 +2013,8,3,3,30,0,0,0,24,25,1010,94.77,171.8,2.2,0.193 +2013,8,3,4,30,0,0,0,24,25,1010,94.63,173.5,2,0.193 +2013,8,3,5,30,0,0,0,24,25,1010,94.89,172.8,2.2,0.193 +2013,8,3,6,30,226,39,66,24,27,1010,84.49,169.9,2.9000000000000004,0.193 +2013,8,3,7,30,548,82,266,23,29,1010,72.73,170.8,3.4000000000000004,0.193 +2013,8,3,8,30,707,103,485,23,31,1010,62.84,168.4,3.4000000000000004,0.193 +2013,8,3,9,30,791,116,685,22,33,1010,54.54,161.8,3.4000000000000004,0.193 +2013,8,3,10,30,834,126,842,22,34,1010,50.25,152.5,3.5,0.193 +2013,8,3,11,30,855,133,945,21,35,1010,46.9,143.20000000000002,3.9000000000000004,0.193 +2013,8,3,12,30,841,151,979,21,36,1010,44.21,136.4,4.4,0.193 +2013,8,3,13,30,828,154,950,22,35,1010,47.15,131.70000000000002,4.9,0.193 +2013,8,3,14,30,799,152,857,22,35,1010,50.64,128.70000000000002,5.1000000000000005,0.193 +2013,8,3,15,30,755,141,709,22,34,1010,54.24,128.20000000000002,5.4,0.193 +2013,8,3,16,30,683,122,519,22,33,1010,58.160000000000004,129,5.6000000000000005,0.193 +2013,8,3,17,30,556,95,306,23,31,1010,63.24,129.5,5.7,0.193 +2013,8,3,18,30,275,53,97,23,29,1010,73.92,130.1,5.5,0.193 +2013,8,3,19,30,0,0,0,24,28,1010,82.02,132.3,5.1000000000000005,0.193 +2013,8,3,20,30,0,0,0,25,28,1010,84.75,136.4,4.800000000000001,0.193 +2013,8,3,21,30,0,0,0,25,28,1010,85.69,141.5,4.6000000000000005,0.193 +2013,8,3,22,30,0,0,0,25,28,1010,85.47,147.70000000000002,4.3,0.193 +2013,8,3,23,30,0,0,0,25,27,1010,90.07000000000001,153.9,4.1000000000000005,0.193 +2013,8,4,0,30,0,0,0,25,27,1010,89.48,159.70000000000002,3.9000000000000004,0.193 +2013,8,4,1,30,0,0,0,25,27,1010,89.06,165.10000000000002,3.7,0.193 +2013,8,4,2,30,0,0,0,24,27,1010,88.66,169.60000000000002,3.3000000000000003,0.193 +2013,8,4,3,30,0,0,0,24,27,1010,88.59,171.4,2.8000000000000003,0.193 +2013,8,4,4,30,0,0,0,24,27,1010,94.17,170.20000000000002,2.5,0.193 +2013,8,4,5,30,0,0,0,24,27,1010,94.16,168.20000000000002,2.8000000000000003,0.193 +2013,8,4,6,30,203,40,63,24,28,1010,83.38,165.5,3.6,0.193 +2013,8,4,7,30,525,85,260,24,30,1010,75.75,167.4,4.1000000000000005,0.193 +2013,8,4,8,30,373,200,402,23,31,1010,65.16,166.70000000000002,4.3,0.193 +2013,8,4,9,30,769,123,676,23,33,1010,59.53,163.5,4.3,0.193 +2013,8,4,10,30,816,134,834,22,34,1010,51.45,158.9,4.3,0.193 +2013,8,4,11,30,839,142,937,22,35,1010,47.410000000000004,152.9,4.5,0.193 +2013,8,4,12,30,835,154,974,21,36,1010,46.56,146.5,4.800000000000001,0.193 +2013,8,4,13,30,825,155,947,21,36,1010,43.64,142,5.2,0.193 +2013,8,4,14,30,796,153,854,21,35,1010,45.86,140.1,5.5,0.193 +2013,8,4,15,30,773,131,711,21,34,1010,48.410000000000004,139.9,5.6000000000000005,0.193 +2013,8,4,16,30,699,116,521,21,33,1010,50.97,140.20000000000002,5.9,0.193 +2013,8,4,17,30,569,91,306,21,32,1010,54.02,140.20000000000002,5.9,0.193 +2013,8,4,18,30,297,52,99,21,30,1010,62.1,140.6,5.6000000000000005,0.192 +2013,8,4,19,30,0,0,0,22,28,1010,73.35000000000001,141.6,5.300000000000001,0.192 +2013,8,4,20,30,0,0,0,23,28,1010,76.89,144.6,5.1000000000000005,0.192 +2013,8,4,21,30,0,0,0,23,27,1010,82.84,149.70000000000002,4.800000000000001,0.192 +2013,8,4,22,30,0,0,0,23,27,1010,83.08,155.3,4.5,0.192 +2013,8,4,23,30,0,0,0,23,27,1010,83.65,160.10000000000002,4.1000000000000005,0.192 +2013,8,5,0,30,0,0,0,24,26,1010,89.69,163.60000000000002,3.8000000000000003,0.192 +2013,8,5,1,30,0,0,0,24,26,1010,90.54,166.5,3.6,0.192 +2013,8,5,2,30,0,0,0,24,26,1010,91.16,170.60000000000002,3.6,0.192 +2013,8,5,3,30,0,0,0,24,26,1010,91.67,174.4,3.6,0.192 +2013,8,5,4,30,0,0,0,24,26,1010,92.18,177.70000000000002,3.4000000000000004,0.192 +2013,8,5,5,30,0,0,0,24,26,1010,92.42,180,3.5,0.192 +2013,8,5,6,30,202,39,62,24,28,1010,87.02,179.60000000000002,4,0.192 +2013,8,5,7,30,547,81,263,24,29,1010,75.07000000000001,180,4.5,0.192 +2013,8,5,8,30,712,100,484,23,31,1010,64.21000000000001,176.60000000000002,4.6000000000000005,0.192 +2013,8,5,9,30,795,113,684,22,33,1010,54.7,172,4.7,0.192 +2013,8,5,10,30,839,123,842,21,34,1010,49.54,167,4.9,0.192 +2013,8,5,11,30,859,132,945,21,35,1010,45.410000000000004,162.20000000000002,5.1000000000000005,0.192 +2013,8,5,12,30,844,150,979,21,36,1010,42.25,158.5,5.300000000000001,0.192 +2013,8,5,13,30,825,157,948,21,36,1010,42,155.10000000000002,5.5,0.192 +2013,8,5,14,30,789,159,853,21,36,1010,44.410000000000004,152.20000000000002,5.800000000000001,0.192 +2013,8,5,15,30,730,155,702,21,35,1010,44.71,149.9,6,0.192 +2013,8,5,16,30,646,137,510,21,34,1010,47.92,147.9,6.1000000000000005,0.192 +2013,8,5,17,30,503,108,296,21,32,1010,54.75,146.8,6.300000000000001,0.192 +2013,8,5,18,30,234,57,93,22,30,1010,63.78,145.8,6.1000000000000005,0.192 +2013,8,5,19,30,0,0,0,23,28,1010,76.14,145.4,5.800000000000001,0.192 +2013,8,5,20,30,0,0,0,24,28,1010,80.37,147.4,5.6000000000000005,0.192 +2013,8,5,21,30,0,0,0,24,28,1010,87.26,151.9,5.4,0.192 +2013,8,5,22,30,0,0,0,24,27,1010,87.76,157.5,5.300000000000001,0.192 +2013,8,5,23,30,0,0,0,24,27,1010,88.21000000000001,162,5.1000000000000005,0.192 +2013,8,6,0,30,0,0,0,24,27,1010,88.60000000000001,166.4,5,0.192 +2013,8,6,1,30,0,0,0,24,27,1010,88.83,170.3,5,0.192 +2013,8,6,2,30,0,0,0,24,27,1010,93.93,173.5,5,0.192 +2013,8,6,3,30,0,0,0,24,26,1010,93.41,175.5,4.800000000000001,0.192 +2013,8,6,4,30,0,0,0,24,26,1010,92.71000000000001,176.4,4.6000000000000005,0.192 +2013,8,6,5,30,0,0,0,24,26,1010,91.87,176.3,4.7,0.192 +2013,8,6,6,30,135,43,58,24,27,1010,86.26,175.3,5.4,0.192 +2013,8,6,7,30,457,102,253,24,29,1010,74.53,175.5,6.1000000000000005,0.192 +2013,8,6,8,30,617,137,469,22,31,1010,62.28,176.3,6.4,0.192 +2013,8,6,9,30,701,164,666,22,33,1010,52.9,175.5,6.4,0.192 +2013,8,6,10,30,746,185,824,21,35,1010,45.43,172.70000000000002,6.300000000000001,0.192 +2013,8,6,11,30,766,201,926,20,36,1010,41.29,168.4,6.2,0.192 +2013,8,6,12,30,737,234,957,20,37,1010,37.88,163,6.300000000000001,0.192 +2013,8,6,13,30,713,244,926,20,37,1010,37.35,157.4,6.5,0.192 +2013,8,6,14,30,667,245,831,20,36,1010,39.85,152.9,6.6000000000000005,0.192 +2013,8,6,15,30,503,287,663,20,35,1000,43.07,149.9,6.7,0.192 +2013,8,6,16,30,375,255,471,21,34,1000,47.45,148.20000000000002,6.800000000000001,0.192 +2013,8,6,17,30,209,184,263,22,32,1000,56.2,147.8,6.7,0.192 +2013,8,6,18,30,28,64,69,23,30,1010,67.73,147,6.4,0.192 +2013,8,6,19,30,0,0,0,24,28,1010,81.51,146.70000000000002,6,0.192 +2013,8,6,20,30,0,0,0,25,28,1010,85.44,148.70000000000002,5.6000000000000005,0.192 +2013,8,6,21,30,0,0,0,25,27,1010,92.47,153.20000000000002,5.5,0.192 +2013,8,6,22,30,0,0,0,25,27,1010,92.51,158.5,5.300000000000001,0.192 +2013,8,6,23,30,0,0,0,25,27,1010,92.02,163,5.1000000000000005,0.192 +2013,8,7,0,30,0,0,0,25,27,1010,97.13,166.3,5,0.192 +2013,8,7,1,30,0,0,0,25,26,1010,97.01,167.60000000000002,4.7,0.192 +2013,8,7,2,30,0,0,0,25,26,1010,97.22,167.4,4.6000000000000005,0.192 +2013,8,7,3,30,0,0,0,25,26,1010,97.4,167.8,4.6000000000000005,0.192 +2013,8,7,4,30,0,0,0,25,26,1010,97.15,168.60000000000002,4.5,0.192 +2013,8,7,5,30,0,0,0,25,26,1010,96.42,169.70000000000002,4.7,0.192 +2013,8,7,6,30,60,46,52,25,27,1010,89.64,171.10000000000002,5.4,0.192 +2013,8,7,7,30,376,124,248,24,29,1010,76.55,174.3,6,0.192 +2013,8,7,8,30,577,159,469,23,31,1010,64,175.9,6.1000000000000005,0.192 +2013,8,7,9,30,676,185,669,22,33,1010,52.57,175.70000000000002,5.800000000000001,0.192 +2013,8,7,10,30,736,200,830,20,35,1010,43.410000000000004,173.4,5.4,0.192 +2013,8,7,11,30,765,210,933,19,36,1010,38.65,168.60000000000002,5.1000000000000005,0.192 +2013,8,7,12,30,763,222,969,19,37,1010,35.46,161.3,5,0.192 +2013,8,7,13,30,734,232,935,19,38,1000,33.480000000000004,153.3,5.1000000000000005,0.192 +2013,8,7,14,30,679,239,835,19,37,1000,35.94,146.1,5.5,0.192 +2013,8,7,15,30,646,207,689,20,36,1000,39.52,140.70000000000002,5.800000000000001,0.192 +2013,8,7,16,30,532,188,493,20,35,1000,46.480000000000004,138.5,6,0.192 +2013,8,7,17,30,358,146,279,21,32,1000,55.35,138.20000000000002,6.1000000000000005,0.192 +2013,8,7,18,30,92,66,80,23,30,1000,66.47,139.20000000000002,5.9,0.192 +2013,8,7,19,30,0,0,0,24,28,1010,79.25,140.9,5.6000000000000005,0.192 +2013,8,7,20,30,0,0,0,24,27,1010,87.32000000000001,144.3,5.300000000000001,0.192 +2013,8,7,21,30,0,0,0,25,27,1010,88.85000000000001,149.3,5,0.192 +2013,8,7,22,30,0,0,0,25,27,1010,89.39,155.3,4.7,0.192 +2013,8,7,23,30,0,0,0,25,26,1010,94.89,160.70000000000002,4.5,0.192 +2013,8,8,0,30,0,0,0,25,26,1010,94.81,166.4,4.4,0.192 +2013,8,8,1,30,0,0,0,25,26,1010,94.69,171.70000000000002,4.4,0.192 +2013,8,8,2,30,0,0,0,25,25,1010,100,176,4.3,0.192 +2013,8,8,3,30,0,0,0,25,25,1010,100,179.3,4.1000000000000005,0.192 +2013,8,8,4,30,0,0,0,25,25,1010,100,181.5,3.9000000000000004,0.192 +2013,8,8,5,30,0,0,0,24,25,1010,99.5,181.9,3.9000000000000004,0.192 +2013,8,8,6,30,60,45,51,24,27,1010,87.42,181.20000000000002,4.4,0.192 +2013,8,8,7,30,376,123,246,24,29,1010,74.86,181.10000000000002,4.7,0.192 +2013,8,8,8,30,579,157,467,23,31,1010,63.59,178.70000000000002,4.6000000000000005,0.192 +2013,8,8,9,30,713,164,674,22,33,1010,53.2,174.20000000000002,4.3,0.192 +2013,8,8,10,30,765,180,833,21,35,1010,44.68,166.20000000000002,4.2,0.192 +2013,8,8,11,30,789,191,937,20,36,1010,40.59,156.10000000000002,4.3,0.192 +2013,8,8,12,30,739,238,961,20,37,1010,37.800000000000004,146.3,4.6000000000000005,0.192 +2013,8,8,13,30,725,238,931,20,36,1000,40.1,138.5,4.9,0.192 +2013,8,8,14,30,693,231,837,20,35,1000,43.19,133.9,5.2,0.192 +2013,8,8,15,30,586,241,678,20,34,1000,46.51,131.9,5.4,0.192 +2013,8,8,16,30,495,204,487,21,33,1000,50.54,131.4,5.6000000000000005,0.192 +2013,8,8,17,30,341,150,276,22,31,1000,58.93,131.8,5.6000000000000005,0.192 +2013,8,8,18,30,92,65,78,22,29,1000,70.01,132.9,5.4,0.192 +2013,8,8,19,30,0,0,0,24,28,1010,79.14,135.20000000000002,4.9,0.192 +2013,8,8,20,30,0,0,0,24,27,1010,88.07000000000001,139.1,4.3,0.192 +2013,8,8,21,30,0,0,0,25,27,1010,90.41,145,3.7,0.192 +2013,8,8,22,30,0,0,0,25,26,1010,96.87,153.1,3,0.192 +2013,8,8,23,30,0,0,0,25,26,1010,97.46000000000001,162.10000000000002,2.5,0.192 +2013,8,9,0,30,0,0,0,25,26,1010,100,169.70000000000002,2.1,0.192 +2013,8,9,1,30,0,0,0,25,25,1010,100,173.8,1.8,0.192 +2013,8,9,2,30,0,0,0,25,25,1010,100,174.9,1.5,0.192 +2013,8,9,3,30,0,0,0,25,25,1010,100,173.9,1.4000000000000001,0.192 +2013,8,9,4,30,0,0,0,24,24,1010,100,168.8,1.3,0.192 +2013,8,9,5,30,0,0,0,24,24,1010,100,159.60000000000002,1.5,0.192 +2013,8,9,6,30,107,42,53,25,26,1010,95.98,149,2,0.192 +2013,8,9,7,30,449,103,250,24,28,1010,80.89,155.4,2.4000000000000004,0.192 +2013,8,9,8,30,637,130,470,23,30,1010,67.55,151.3,2.3000000000000003,0.192 +2013,8,9,9,30,742,143,673,22,32,1010,55.58,138.4,2.2,0.192 +2013,8,9,10,30,802,150,835,20,34,1010,45.38,120.60000000000001,2.5,0.192 +2013,8,9,11,30,836,152,941,19,35,1010,40.39,106.60000000000001,2.9000000000000004,0.192 +2013,8,9,12,30,860,143,985,19,36,1010,37.01,99.7,3.4000000000000004,0.192 +2013,8,9,13,30,860,137,958,19,36,1010,37.18,97.4,3.9000000000000004,0.192 +2013,8,9,14,30,843,128,865,19,36,1010,38.07,97.4,4.2,0.192 +2013,8,9,15,30,780,130,710,19,35,1010,41.33,97.5,4.5,0.192 +2013,8,9,16,30,709,112,516,20,34,1010,47.51,97.9,4.800000000000001,0.192 +2013,8,9,17,30,580,86,298,20,32,1010,52.230000000000004,100.2,4.800000000000001,0.192 +2013,8,9,18,30,307,46,90,22,30,1010,62.65,104.2,4.6000000000000005,0.192 +2013,8,9,19,30,0,0,0,23,28,1010,76.73,108,4.3,0.192 +2013,8,9,20,30,0,0,0,24,28,1010,82.27,110.30000000000001,4,0.192 +2013,8,9,21,30,0,0,0,25,28,1010,90.28,112.4,3.4000000000000004,0.192 +2013,8,9,22,30,0,0,0,25,27,1010,91.67,115.80000000000001,2.8000000000000003,0.192 +2013,8,9,23,30,0,0,0,25,27,1010,92.87,119.9,2.1,0.192 +2013,8,10,0,30,0,0,0,25,27,1010,93.8,121.4,1.4000000000000001,0.192 +2013,8,10,1,30,0,0,0,26,27,1010,94.47,119.10000000000001,1.1,0.192 +2013,8,10,2,30,0,0,0,26,27,1010,94.84,113.2,0.9,0.192 +2013,8,10,3,30,0,0,0,26,27,1010,94.91,98,0.9,0.192 +2013,8,10,4,30,0,0,0,26,27,1010,100,76.80000000000001,1.1,0.192 +2013,8,10,5,30,0,0,0,26,27,1010,100,62.5,1.5,0.192 +2013,8,10,6,30,180,36,55,26,27,1010,94.62,56.800000000000004,2.2,0.192 +2013,8,10,7,30,0,98,98,25,29,1010,87.45,63.1,2.6,0.192 +2013,8,10,8,30,668,111,467,24,30,1010,74.61,69.5,2.6,0.192 +2013,8,10,9,30,762,124,667,24,31,1010,66.92,70.4,2.7,0.192 +2013,8,10,10,30,810,134,824,23,32,1010,60.300000000000004,73.8,2.9000000000000004,0.192 +2013,8,10,11,30,832,142,926,22,32,1010,58.480000000000004,76.80000000000001,3.1,0.192 +2013,8,10,12,30,832,150,963,22,32,1010,57.68,78.7,3.4000000000000004,0.192 +2013,8,10,13,30,827,147,936,22,32,1010,57.58,80.60000000000001,3.6,0.192 +2013,8,10,14,30,499,332,768,22,31,1010,61.18,80.60000000000001,3.7,0.192 +2013,8,10,15,30,402,299,597,22,31,1010,61.83,81.9,3.8000000000000003,0.192 +2013,8,10,16,30,300,231,401,23,30,1010,66.18,84.60000000000001,3.8000000000000003,0.192 +2013,8,10,17,30,566,85,291,23,29,1010,71.21000000000001,87.80000000000001,3.6,0.192 +2013,8,10,18,30,292,43,85,23,28,1010,78.47,91.80000000000001,3,0.192 +2013,8,10,19,30,0,0,0,24,27,1010,87.59,96.5,2.5,0.192 +2013,8,10,20,30,0,0,0,25,27,1010,90.27,100.30000000000001,2.3000000000000003,0.192 +2013,8,10,21,30,0,0,0,25,26,1010,97.69,101,2,0.192 +2013,8,10,22,30,0,0,0,25,26,1010,98.95,103,1.8,0.192 +2013,8,10,23,30,0,0,0,25,26,1010,99.77,107.4,1.6,0.192 +2013,8,11,0,30,0,0,0,26,26,1010,100,112.80000000000001,1.5,0.192 +2013,8,11,1,30,0,0,0,25,26,1010,99.95,119.10000000000001,1.4000000000000001,0.192 +2013,8,11,2,30,0,0,0,25,26,1010,99.52,121.7,1.2000000000000002,0.192 +2013,8,11,3,30,0,0,0,25,26,1010,99.13,121.2,1.1,0.192 +2013,8,11,4,30,0,0,0,25,26,1010,98.61,118.30000000000001,1,0.192 +2013,8,11,5,30,0,0,0,25,26,1010,97.73,109.2,1,0.192 +2013,8,11,6,30,178,36,54,25,27,1010,93.42,90.80000000000001,1.4000000000000001,0.192 +2013,8,11,7,30,521,82,250,25,28,1010,84.72,86.80000000000001,2.2,0.192 +2013,8,11,8,30,677,107,467,24,29,1010,77.2,90.4,2.7,0.192 +2013,8,11,9,30,763,123,666,24,30,1010,70.73,92,3,0.192 +2013,8,11,10,30,811,134,824,23,31,1010,64.85,96,3.3000000000000003,0.192 +2013,8,11,11,30,836,140,928,23,32,1010,59.49,102.9,3.6,0.192 +2013,8,11,12,30,833,151,964,22,33,1010,57.97,108.80000000000001,3.9000000000000004,0.192 +2013,8,11,13,30,829,148,937,22,32,1010,56.9,113.30000000000001,4.1000000000000005,0.192 +2013,8,11,14,30,815,136,846,22,32,1010,56.22,115.80000000000001,4.3,0.192 +2013,8,11,15,30,762,132,695,22,31,1010,59.160000000000004,117.7,4.4,0.192 +2013,8,11,16,30,697,111,504,22,30,1010,62.4,120,4.5,0.192 +2013,8,11,17,30,570,84,289,22,29,1010,66.28,123,4.2,0.192 +2013,8,11,18,30,294,43,84,22,28,1010,72.54,126.30000000000001,3.5,0.192 +2013,8,11,19,30,0,0,0,23,27,1010,81.44,130.1,3,0.192 +2013,8,11,20,30,0,0,0,24,26,1010,89.49,134.20000000000002,2.8000000000000003,0.192 +2013,8,11,21,30,0,0,0,24,26,1010,91.34,139.3,2.8000000000000003,0.192 +2013,8,11,22,30,0,0,0,24,26,1010,92.44,147.4,2.9000000000000004,0.192 +2013,8,11,23,30,0,0,0,24,26,1010,91.99,156.70000000000002,3.1,0.192 +2013,8,12,0,30,0,0,0,24,26,1010,91.05,164.10000000000002,3.2,0.192 +2013,8,12,1,30,0,0,0,24,26,1010,95.21000000000001,170.10000000000002,3.1,0.192 +2013,8,12,2,30,0,0,0,24,25,1010,94.41,176.4,2.8000000000000003,0.192 +2013,8,12,3,30,0,0,0,24,25,1010,94.60000000000001,182.70000000000002,2.4000000000000004,0.192 +2013,8,12,4,30,0,0,0,24,25,1010,95.82000000000001,188.5,1.8,0.192 +2013,8,12,5,30,0,0,0,24,25,1010,96.71000000000001,193.5,1.6,0.192 +2013,8,12,6,30,224,33,55,24,26,1010,91.3,197.60000000000002,1.8,0.192 +2013,8,12,7,30,567,73,255,23,28,1010,78.55,191.60000000000002,2,0.192 +2013,8,12,8,30,721,93,476,23,29,1010,71.83,176.9,2.2,0.192 +2013,8,12,9,30,803,106,677,23,31,1010,62.61,161.70000000000002,2.4000000000000004,0.192 +2013,8,12,10,30,307,392,653,22,32,1010,58.18,149.70000000000002,2.5,0.192 +2013,8,12,11,30,297,421,701,22,33,1010,54.19,139.20000000000002,2.7,0.192 +2013,8,12,12,30,875,127,981,22,33,1010,53.69,130.70000000000002,3.1,0.192 +2013,8,12,13,30,871,125,953,22,33,1010,53.67,125.4,3.6,0.192 +2013,8,12,14,30,848,122,859,22,32,1010,57.17,123.30000000000001,4.1000000000000005,0.192 +2013,8,12,15,30,807,113,708,22,32,1010,58.01,123.80000000000001,4.4,0.192 +2013,8,12,16,30,738,98,513,23,31,1010,62.59,124.5,4.6000000000000005,0.192 +2013,8,12,17,30,615,75,295,23,30,1010,67.93,125.9,4.4,0.192 +2013,8,12,18,30,337,40,86,24,29,1010,79.14,127.7,3.8000000000000003,0.191 +2013,8,12,19,30,0,0,0,24,28,1010,83.37,129.20000000000002,3.3000000000000003,0.191 +2013,8,12,20,30,0,0,0,25,27,1010,91.72,133,3.1,0.191 +2013,8,12,21,30,0,0,0,25,27,1010,93.55,139,3,0.191 +2013,8,12,22,30,0,0,0,26,27,1010,94.48,146.70000000000002,2.9000000000000004,0.191 +2013,8,12,23,30,0,0,0,26,26,1010,100,154.20000000000002,2.8000000000000003,0.191 +2013,8,13,0,30,0,0,0,26,26,1010,100,160.5,2.7,0.191 +2013,8,13,1,30,0,0,0,26,26,1010,100,166.3,2.5,0.191 +2013,8,13,2,30,0,0,0,25,26,1010,100,170.9,2.4000000000000004,0.191 +2013,8,13,3,30,0,0,0,25,25,1010,100,174.4,2.2,0.191 +2013,8,13,4,30,0,0,0,25,25,1010,100,177.4,2.1,0.191 +2013,8,13,5,30,0,0,0,25,25,1010,100,179.3,2.1,0.191 +2013,8,13,6,30,232,33,55,26,27,1010,95.68,180.9,2.7,0.191 +2013,8,13,7,30,584,71,258,25,29,1010,81.55,182.60000000000002,3.5,0.191 +2013,8,13,8,30,737,91,481,24,31,1010,67.28,182.9,3.5,0.191 +2013,8,13,9,30,817,103,683,23,33,1010,59.51,181,3.2,0.191 +2013,8,13,10,30,859,113,843,22,34,1010,50.47,175.60000000000002,3,0.191 +2013,8,13,11,30,878,121,946,21,35,1010,46.31,166.4,3,0.191 +2013,8,13,12,30,860,142,979,21,36,1010,43.13,155.20000000000002,3.2,0.191 +2013,8,13,13,30,852,141,950,21,36,1010,42.53,145.70000000000002,3.6,0.191 +2013,8,13,14,30,825,138,854,21,36,1010,44.62,139,4.1000000000000005,0.191 +2013,8,13,15,30,766,136,699,21,35,1010,47.5,134.6,4.4,0.191 +2013,8,13,16,30,687,118,504,21,34,1010,51.17,132,4.7,0.191 +2013,8,13,17,30,548,91,286,22,32,1010,56.17,130.6,4.9,0.191 +2013,8,13,18,30,258,45,80,23,30,1010,67.15,131.3,4.6000000000000005,0.191 +2013,8,13,19,30,0,0,0,24,28,1010,81.52,133.70000000000002,4.2,0.191 +2013,8,13,20,30,0,0,0,25,28,1010,91.12,138.4,4.1000000000000005,0.191 +2013,8,13,21,30,0,0,0,25,27,1010,93.26,145.4,4,0.191 +2013,8,13,22,30,0,0,0,25,27,1010,94.09,154.3,3.7,0.191 +2013,8,13,23,30,0,0,0,26,26,1010,100,163.8,3.4000000000000004,0.191 +2013,8,14,0,30,0,0,0,26,26,1010,100,172.70000000000002,3.2,0.191 +2013,8,14,1,30,0,0,0,26,26,1010,100,180.8,2.9000000000000004,0.191 +2013,8,14,2,30,0,0,0,25,26,1010,100,187.8,2.5,0.191 +2013,8,14,3,30,0,0,0,25,25,1010,100,192.5,2.2,0.191 +2013,8,14,4,30,0,0,0,25,25,1010,100,195.10000000000002,2,0.191 +2013,8,14,5,30,0,0,0,25,25,1010,100,196.20000000000002,1.9000000000000001,0.191 +2013,8,14,6,30,195,34,53,25,26,1010,99.06,195.4,2.5,0.191 +2013,8,14,7,30,564,77,257,25,28,1010,84.46000000000001,196.5,3.2,0.191 +2013,8,14,8,30,733,96,483,24,30,1010,70.43,195.9,3.3000000000000003,0.191 +2013,8,14,9,30,607,195,626,22,32,1010,57.84,193.10000000000002,3,0.191 +2013,8,14,10,30,615,252,774,21,34,1010,46.83,186.8,2.8000000000000003,0.191 +2013,8,14,11,30,900,115,959,19,35,1010,41.18,175.5,2.8000000000000003,0.191 +2013,8,14,12,30,890,130,995,18,36,1010,36.9,161.70000000000002,3,0.191 +2013,8,14,13,30,883,128,966,18,37,1010,33.74,150.4,3.3000000000000003,0.191 +2013,8,14,14,30,859,125,869,18,36,1010,35.04,142.1,3.7,0.191 +2013,8,14,15,30,805,122,712,18,35,1010,37.5,137,4.1000000000000005,0.191 +2013,8,14,16,30,724,108,512,18,34,1010,41.11,134.8,4.4,0.191 +2013,8,14,17,30,580,85,290,19,32,1010,48.54,134.70000000000002,4.5,0.191 +2013,8,14,18,30,280,43,80,21,30,1010,59.57,135.9,4.2,0.191 +2013,8,14,19,30,0,0,0,23,28,1010,74.38,138.4,3.8000000000000003,0.191 +2013,8,14,20,30,0,0,0,24,27,1010,83.98,142.6,3.7,0.191 +2013,8,14,21,30,0,0,0,24,27,1010,91.33,148.5,3.5,0.191 +2013,8,14,22,30,0,0,0,24,26,1010,92.07000000000001,156.10000000000002,3.2,0.191 +2013,8,14,23,30,0,0,0,24,26,1010,97.85000000000001,164.60000000000002,2.9000000000000004,0.191 +2013,8,15,0,30,0,0,0,24,25,1010,97.78,173,2.8000000000000003,0.191 +2013,8,15,1,30,0,0,0,24,25,1010,97.79,180.70000000000002,2.8000000000000003,0.191 +2013,8,15,2,30,0,0,0,24,24,1010,100,188,2.7,0.191 +2013,8,15,3,30,0,0,0,24,24,1010,100,193.8,2.4000000000000004,0.191 +2013,8,15,4,30,0,0,0,24,24,1010,100,197.3,2.1,0.191 +2013,8,15,5,30,0,0,0,24,24,1010,100,199.3,1.9000000000000001,0.191 +2013,8,15,6,30,223,30,51,24,26,1010,97.52,199.60000000000002,2.2,0.191 +2013,8,15,7,30,444,90,231,23,28,1010,78.46000000000001,195.3,2.5,0.191 +2013,8,15,8,30,538,151,434,22,31,1010,65.55,188.3,2.4000000000000004,0.191 +2013,8,15,9,30,525,231,603,21,33,1010,51.43,180.9,1.9000000000000001,0.191 +2013,8,15,10,30,562,295,772,20,34,1010,45.93,170.8,1.5,0.191 +2013,8,15,11,30,409,399,783,19,36,1010,41.11,139.20000000000002,1.7000000000000002,0.191 +2013,8,15,12,30,511,400,896,19,37,1010,37.63,104.7,2.6,0.191 +2013,8,15,13,30,498,387,858,19,37,1010,35.660000000000004,98.7,3.6,0.191 +2013,8,15,14,30,809,144,843,19,36,1010,38.300000000000004,102.60000000000001,4.2,0.191 +2013,8,15,15,30,688,173,676,19,35,1010,41.43,107.7,4.5,0.191 +2013,8,15,16,30,599,149,482,20,34,1010,47.42,112.60000000000001,4.6000000000000005,0.191 +2013,8,15,17,30,447,111,268,20,32,1010,52.06,117.80000000000001,4.5,0.191 +2013,8,15,18,30,176,47,70,22,30,1010,62.31,123.80000000000001,4.1000000000000005,0.191 +2013,8,15,19,30,0,0,0,23,28,1010,76,130.20000000000002,3.9000000000000004,0.191 +2013,8,15,20,30,0,0,0,24,28,1010,85.32000000000001,136,3.8000000000000003,0.191 +2013,8,15,21,30,0,0,0,24,27,1010,87.91,143.6,3.5,0.191 +2013,8,15,22,30,0,0,0,25,27,1010,89.45,153.60000000000002,3.2,0.191 +2013,8,15,23,30,0,0,0,25,26,1010,96.10000000000001,163.3,2.8000000000000003,0.191 +2013,8,16,0,30,0,0,0,25,26,1010,96.87,171.20000000000002,2.3000000000000003,0.191 +2013,8,16,1,30,0,0,0,25,26,1010,97.25,177.3,1.9000000000000001,0.191 +2013,8,16,2,30,0,0,0,25,25,1010,100,181.4,1.5,0.191 +2013,8,16,3,30,0,0,0,25,25,1010,100,184.70000000000002,1.2000000000000002,0.191 +2013,8,16,4,30,0,0,0,25,25,1010,100,185.70000000000002,1.1,0.191 +2013,8,16,5,30,0,0,0,25,25,1010,100,184.4,0.8,0.191 +2013,8,16,6,30,51,33,38,25,27,1010,90.26,173.60000000000002,0.6000000000000001,0.191 +2013,8,16,7,30,412,104,235,24,29,1010,77.13,149.20000000000002,0.5,0.191 +2013,8,16,8,30,81,224,267,23,31,1010,62.980000000000004,75.4,0.9,0.191 +2013,8,16,9,30,689,165,651,21,33,1010,54.83,62.6,1.3,0.191 +2013,8,16,10,30,750,177,812,21,34,1010,47.01,62.900000000000006,1.6,0.191 +2013,8,16,11,30,787,181,918,20,35,1010,43.59,68.4,1.8,0.191 +2013,8,16,12,30,776,200,953,20,36,1010,40.49,77.2,2.1,0.191 +2013,8,16,13,30,768,198,924,20,37,1010,38.230000000000004,86.60000000000001,2.5,0.191 +2013,8,16,14,30,735,193,827,20,36,1010,40.59,93.5,2.9000000000000004,0.191 +2013,8,16,15,30,728,153,683,20,35,1010,43.19,97.9,3.4000000000000004,0.191 +2013,8,16,16,30,636,134,486,20,34,1010,46.410000000000004,100.80000000000001,4,0.191 +2013,8,16,17,30,481,102,268,21,32,1010,53.96,105.5,4.5,0.191 +2013,8,16,18,30,181,45,68,22,30,1010,64.32000000000001,111.5,4.6000000000000005,0.191 +2013,8,16,19,30,0,0,0,23,28,1010,77.10000000000001,117.30000000000001,4.3,0.191 +2013,8,16,20,30,0,0,0,24,28,1010,79.83,122.5,3.8000000000000003,0.191 +2013,8,16,21,30,0,0,0,24,27,1010,85.63,126.5,3.2,0.191 +2013,8,16,22,30,0,0,0,24,27,1010,86.10000000000001,130.4,2.5,0.191 +2013,8,16,23,30,0,0,0,24,27,1010,91.29,135.1,1.9000000000000001,0.191 +2013,8,17,0,30,0,0,0,24,26,1010,91.22,137.8,1.3,0.191 +2013,8,17,1,30,0,0,0,24,26,1010,90.87,135.4,0.8,0.191 +2013,8,17,2,30,0,0,0,24,26,1010,95.32000000000001,119,0.6000000000000001,0.191 +2013,8,17,3,30,0,0,0,24,25,1010,94.27,65,0.7000000000000001,0.191 +2013,8,17,4,30,0,0,0,24,25,1010,94.36,27.3,1.1,0.191 +2013,8,17,5,30,0,0,0,24,25,1010,94.81,22.400000000000002,1.9000000000000001,0.191 +2013,8,17,6,30,140,34,46,24,27,1010,90.06,24.200000000000003,3.1,0.191 +2013,8,17,7,30,461,96,241,23,29,1010,78.12,28.6,3.9000000000000004,0.191 +2013,8,17,8,30,628,131,460,22,31,1010,61.84,34.2,4.1000000000000005,0.191 +2013,8,17,9,30,710,159,660,21,33,1010,54.82,38.5,4.3,0.191 +2013,8,17,10,30,756,179,819,21,34,1010,47.2,43,4.3,0.191 +2013,8,17,11,30,782,191,923,20,35,1010,43.22,49.400000000000006,4.3,0.191 +2013,8,17,12,30,793,194,962,20,35,1010,41.88,57.800000000000004,4.4,0.191 +2013,8,17,13,30,776,197,929,19,35,1010,40.84,67.4,4.5,0.191 +2013,8,17,14,30,733,199,830,19,35,1010,40.480000000000004,76.7,4.6000000000000005,0.191 +2013,8,17,15,30,623,213,666,19,34,1010,42.96,84.9,4.9,0.191 +2013,8,17,16,30,501,191,467,19,33,1010,46.24,92.9,5,0.191 +2013,8,17,17,30,343,136,254,20,31,1010,53.410000000000004,99.2,4.800000000000001,0.191 +2013,8,17,18,30,108,46,59,21,29,1010,62.9,105.60000000000001,4.1000000000000005,0.191 +2013,8,17,19,30,0,0,0,22,28,1010,70.95,111.7,3.5,0.191 +2013,8,17,20,30,0,0,0,22,27,1010,78.61,116.80000000000001,2.9000000000000004,0.191 +2013,8,17,21,30,0,0,0,23,27,1010,80.61,122,2.4000000000000004,0.191 +2013,8,17,22,30,0,0,0,23,26,1010,86.74,127.5,2,0.191 +2013,8,17,23,30,0,0,0,23,26,1010,87.44,132.8,1.7000000000000002,0.191 +2013,8,18,0,30,0,0,0,23,26,1010,92.94,138.6,1.5,0.191 +2013,8,18,1,30,0,0,0,23,25,1010,92.85000000000001,143.4,1.2000000000000002,0.191 +2013,8,18,2,30,0,0,0,23,25,1010,92.73,145.3,1.1,0.191 +2013,8,18,3,30,0,0,0,23,25,1010,92.72,147,0.8,0.191 +2013,8,18,4,30,0,0,0,23,25,1010,92.21000000000001,143.5,0.4,0.191 +2013,8,18,5,30,0,0,0,23,25,1010,89.89,91.9,0.4,0.191 +2013,8,18,6,30,116,33,43,23,26,1010,84.69,16.8,1,0.191 +2013,8,18,7,30,436,102,238,22,28,1010,71.65,20,1.8,0.191 +2013,8,18,8,30,621,135,460,21,30,1010,58.83,31.700000000000003,2.5,0.191 +2013,8,18,9,30,725,154,664,19,32,1010,48.59,39,3,0.191 +2013,8,18,10,30,783,167,828,18,33,1010,43.46,44.900000000000006,3.2,0.191 +2013,8,18,11,30,817,171,934,18,34,1010,39.730000000000004,54.5,3.4000000000000004,0.191 +2013,8,18,12,30,814,184,971,17,35,1010,36.660000000000004,66.5,3.6,0.191 +2013,8,18,13,30,812,178,942,17,35,1010,35.730000000000004,78,4,0.191 +2013,8,18,14,30,789,168,846,17,35,1010,35.33,87,4.4,0.191 +2013,8,18,15,30,758,146,695,17,34,1010,37.19,93.7,4.800000000000001,0.191 +2013,8,18,16,30,675,126,495,17,33,1010,39.660000000000004,98.4,5,0.191 +2013,8,18,17,30,525,95,274,18,31,1010,46.1,102.4,4.7,0.191 +2013,8,18,18,30,225,42,68,19,29,1010,55.08,106.10000000000001,3.8000000000000003,0.191 +2013,8,18,19,30,0,0,0,20,27,1010,66.97,108.9,2.8000000000000003,0.191 +2013,8,18,20,30,0,0,0,21,27,1010,71.32000000000001,111.10000000000001,2.2,0.191 +2013,8,18,21,30,0,0,0,21,26,1010,78.46000000000001,113.5,1.9000000000000001,0.191 +2013,8,18,22,30,0,0,0,22,26,1010,79.88,115.2,1.7000000000000002,0.191 +2013,8,18,23,30,0,0,0,22,25,1010,85.63,115,1.6,0.191 +2013,8,19,0,30,0,0,0,22,25,1010,85.74,112.2,1.4000000000000001,0.191 +2013,8,19,1,30,0,0,0,22,25,1010,85.37,105.9,1.3,0.191 +2013,8,19,2,30,0,0,0,22,25,1010,85.02,94.30000000000001,1.3,0.191 +2013,8,19,3,30,0,0,0,22,24,1010,90.4,78.4,1.3,0.191 +2013,8,19,4,30,0,0,0,22,24,1010,91.37,64.2,1.3,0.191 +2013,8,19,5,30,0,0,0,22,24,1010,92.54,54.400000000000006,1.6,0.191 +2013,8,19,6,30,152,32,45,22,26,1010,83.39,47.800000000000004,2.4000000000000004,0.191 +2013,8,19,7,30,479,92,242,22,28,1010,72.12,50.900000000000006,3.2,0.191 +2013,8,19,8,30,652,124,464,21,30,1010,60.95,57.7,3.5,0.191 +2013,8,19,9,30,753,140,669,20,32,1010,51.6,64.5,3.9000000000000004,0.191 +2013,8,19,10,30,808,150,831,20,33,1010,46.63,70.8,4.1000000000000005,0.191 +2013,8,19,11,30,836,156,936,19,34,1010,43,75.2,4.4,0.191 +2013,8,19,12,30,783,203,959,19,34,1010,42.68,78.60000000000001,4.5,0.191 +2013,8,19,13,30,776,199,929,19,34,1010,42.85,81.2,4.6000000000000005,0.191 +2013,8,19,14,30,754,187,833,19,34,1010,43.24,82.80000000000001,4.800000000000001,0.191 +2013,8,19,15,30,694,175,676,19,33,1010,46.2,82.9,5,0.191 +2013,8,19,16,30,612,146,480,20,32,1010,49.34,82.2,5.1000000000000005,0.191 +2013,8,19,17,30,460,106,262,20,31,1010,53.42,82.60000000000001,4.9,0.191 +2013,8,19,18,30,162,43,61,21,29,1010,62.59,84.10000000000001,4.5,0.191 +2013,8,19,19,30,0,0,0,22,28,1010,70.38,86.60000000000001,4.1000000000000005,0.191 +2013,8,19,20,30,0,0,0,22,27,1010,78.52,89.10000000000001,3.8000000000000003,0.191 +2013,8,19,21,30,0,0,0,23,27,1010,81.01,94.2,3.5,0.191 +2013,8,19,22,30,0,0,0,23,27,1010,82.48,102.80000000000001,2.9000000000000004,0.191 +2013,8,19,23,30,0,0,0,23,26,1010,88.45,114.80000000000001,2.3000000000000003,0.191 +2013,8,20,0,30,0,0,0,24,26,1010,88.83,129.20000000000002,1.9000000000000001,0.191 +2013,8,20,1,30,0,0,0,23,26,1010,88.57000000000001,144,1.9000000000000001,0.191 +2013,8,20,2,30,0,0,0,23,26,1010,88.27,155.10000000000002,1.8,0.191 +2013,8,20,3,30,0,0,0,23,26,1010,88.23,162.4,1.6,0.191 +2013,8,20,4,30,0,0,0,23,26,1010,88.02,167.10000000000002,1.4000000000000001,0.191 +2013,8,20,5,30,0,0,0,23,26,1010,87.8,167.10000000000002,1.2000000000000002,0.191 +2013,8,20,6,30,0,18,18,23,26,1010,87.97,163.20000000000002,1.4000000000000001,0.191 +2013,8,20,7,30,0,44,44,23,27,1010,81.96000000000001,156.8,1.8,0.191 +2013,8,20,8,30,0,15,15,23,28,1010,75.88,146.9,2,0.191 +2013,8,20,9,30,0,71,71,23,29,1010,74.43,138.6,2.3000000000000003,0.191 +2013,8,20,10,30,0,127,127,22,29,1010,69.72,133.5,2.6,0.191 +2013,8,20,11,30,0,131,131,22,29,1010,69.39,128.9,2.8000000000000003,0.191 +2013,8,20,12,30,16,299,314,22,30,1010,65.25,124.7,3.1,0.191 +2013,8,20,13,30,120,468,581,22,29,1010,69.04,120.10000000000001,3.4000000000000004,0.191 +2013,8,20,14,30,53,378,424,22,29,1010,69.28,118.30000000000001,3.8000000000000003,0.191 +2013,8,20,15,30,526,238,616,22,28,1010,73.81,117.5,4.1000000000000005,0.191 +2013,8,20,16,30,15,189,197,23,28,1010,74.48,115.7,4.2,0.191 +2013,8,20,17,30,4,112,114,23,27,1010,79.81,112.80000000000001,4,0.191 +2013,8,20,18,30,151,38,55,23,26,1010,85.73,109.5,3.4000000000000004,0.188 +2013,8,20,19,30,0,0,0,23,26,1010,87.51,108,2.9000000000000004,0.188 +2013,8,20,20,30,0,0,0,24,26,1010,89.2,109.2,2.6,0.188 +2013,8,20,21,30,0,0,0,24,26,1010,90.53,111.80000000000001,2.4000000000000004,0.188 +2013,8,20,22,30,0,0,0,24,26,1010,91.72,115,2.3000000000000003,0.188 +2013,8,20,23,30,0,0,0,24,26,1010,93.09,120.2,2.4000000000000004,0.188 +2013,8,21,0,30,0,0,0,25,26,1010,94.41,126,2.6,0.188 +2013,8,21,1,30,0,0,0,25,26,1010,95.31,132.70000000000002,2.8000000000000003,0.188 +2013,8,21,2,30,0,0,0,25,26,1010,95.79,139.70000000000002,2.8000000000000003,0.188 +2013,8,21,3,30,0,0,0,25,26,1010,95.9,145.9,2.5,0.188 +2013,8,21,4,30,0,0,0,25,26,1010,95.95,150.6,2.1,0.188 +2013,8,21,5,30,0,0,0,25,26,1010,95.97,150.9,1.7000000000000002,0.188 +2013,8,21,6,30,72,29,35,25,26,1010,96.62,145.5,1.7000000000000002,0.188 +2013,8,21,7,30,525,77,240,25,27,1010,91.82000000000001,133.4,2.1,0.188 +2013,8,21,8,30,387,189,390,24,28,1010,83.31,124.5,2.5,0.188 +2013,8,21,9,30,187,325,456,23,29,1010,74.45,118.10000000000001,2.6,0.188 +2013,8,21,10,30,826,127,821,23,30,1010,67.33,111.60000000000001,2.6,0.188 +2013,8,21,11,30,464,381,812,22,31,1010,61.96,104.60000000000001,2.8000000000000003,0.188 +2013,8,21,12,30,44,423,466,22,32,1010,57.9,98.5,3.2,0.188 +2013,8,21,13,30,185,472,645,22,32,1010,57.54,94.2,3.6,0.188 +2013,8,21,14,30,812,140,832,22,32,1010,60.800000000000004,93.4,3.9000000000000004,0.188 +2013,8,21,15,30,771,126,679,22,31,1010,61.15,96.7,4.1000000000000005,0.188 +2013,8,21,16,30,690,109,482,22,30,1010,65.97,100.5,3.9000000000000004,0.188 +2013,8,21,17,30,546,82,263,23,29,1010,77.29,104.10000000000001,3.3000000000000003,0.188 +2013,8,21,18,30,223,36,60,24,27,1010,86.71000000000001,110.9,2.5,0.188 +2013,8,21,19,30,0,0,0,25,27,1010,90.63,120.10000000000001,2.1,0.188 +2013,8,21,20,30,0,0,0,25,27,1010,92.46000000000001,126.60000000000001,1.9000000000000001,0.188 +2013,8,21,21,30,0,0,0,25,26,1010,98.83,129.70000000000002,1.7000000000000002,0.188 +2013,8,21,22,30,0,0,0,25,26,1010,98.98,132.9,1.5,0.188 +2013,8,21,23,30,0,0,0,25,26,1010,98.84,136.3,1.2000000000000002,0.188 +2013,8,22,0,30,0,0,0,25,26,1010,98.42,138.20000000000002,1.1,0.188 +2013,8,22,1,30,0,0,0,25,26,1010,97.87,135.9,0.8,0.188 +2013,8,22,2,30,0,0,0,25,26,1010,97.2,119.4,0.6000000000000001,0.188 +2013,8,22,3,30,0,0,0,25,26,1010,96.94,78.30000000000001,0.6000000000000001,0.188 +2013,8,22,4,30,0,0,0,25,25,1010,100,42.2,0.8,0.188 +2013,8,22,5,30,0,0,0,25,25,1010,100,29.3,1.1,0.188 +2013,8,22,6,30,0,6,6,25,26,1010,100,27.200000000000003,1.8,0.188 +2013,8,22,7,30,0,96,96,25,27,1010,97.86,28.900000000000002,2.5,0.188 +2013,8,22,8,30,253,213,345,25,27,1010,90.03,35.1,2.9000000000000004,0.188 +2013,8,22,9,30,91,316,380,24,28,1010,81.59,41,3.1,0.188 +2013,8,22,10,30,197,409,574,24,29,1010,75.14,45.6,3.1,0.188 +2013,8,22,11,30,291,447,717,23,30,1010,69.69,52.800000000000004,3.1,0.188 +2013,8,22,12,30,353,443,783,23,31,1010,65.11,61.900000000000006,3,0.188 +2013,8,22,13,30,422,364,758,23,31,1010,64.4,71.7,3,0.188 +2013,8,22,14,30,554,302,773,23,31,1010,63.690000000000005,81.9,3.1,0.188 +2013,8,22,15,30,584,216,633,23,31,1010,63.03,90.60000000000001,3.2,0.188 +2013,8,22,16,30,700,103,478,22,30,1010,66.06,97,3.2,0.188 +2013,8,22,17,30,16,116,121,23,29,1010,70.41,102.10000000000001,2.9000000000000004,0.188 +2013,8,22,18,30,0,28,28,23,27,1010,82.89,106.30000000000001,2.5,0.188 +2013,8,22,19,30,0,0,0,24,27,1010,86.91,110.4,2.3000000000000003,0.188 +2013,8,22,20,30,0,0,0,24,27,1010,94.14,113.2,2.3000000000000003,0.188 +2013,8,22,21,30,0,0,0,25,26,1010,95.41,116.30000000000001,2.1,0.188 +2013,8,22,22,30,0,0,0,25,26,1010,96.04,119.5,1.9000000000000001,0.188 +2013,8,22,23,30,0,0,0,25,26,1010,96.29,122.4,1.6,0.188 +2013,8,23,0,30,0,0,0,25,26,1010,96.23,123.9,1.4000000000000001,0.188 +2013,8,23,1,30,0,0,0,25,26,1010,95.83,123,1.2000000000000002,0.188 +2013,8,23,2,30,0,0,0,25,26,1010,95.27,116.80000000000001,1.1,0.188 +2013,8,23,3,30,0,0,0,25,26,1010,94.65,104.30000000000001,1,0.188 +2013,8,23,4,30,0,0,0,25,25,1010,100,82,1,0.188 +2013,8,23,5,30,0,0,0,25,25,1010,100,60.5,1.1,0.188 +2013,8,23,6,30,170,28,42,25,26,1010,96.38,46,1.7000000000000002,0.188 +2013,8,23,7,30,523,76,236,25,27,1010,89.72,40.6,2.5,0.188 +2013,8,23,8,30,681,104,455,24,29,1010,80.69,44.300000000000004,3.1,0.188 +2013,8,23,9,30,17,240,253,23,30,1010,73.47,48.300000000000004,3.6,0.188 +2013,8,23,10,30,280,373,608,23,31,1010,67.67,55.1,3.9000000000000004,0.188 +2013,8,23,11,30,243,458,684,23,31,1010,62.65,63.300000000000004,4.1000000000000005,0.188 +2013,8,23,12,30,215,484,691,22,31,1010,61.74,70.8,4.2,0.188 +2013,8,23,13,30,415,395,782,22,31,1010,61.09,77.30000000000001,4.1000000000000005,0.188 +2013,8,23,14,30,809,139,825,22,31,1010,60.75,82.60000000000001,4.1000000000000005,0.188 +2013,8,23,15,30,767,126,671,22,31,1010,60.72,87.10000000000001,4,0.188 +2013,8,23,16,30,473,176,428,22,30,1010,64.93,90.30000000000001,3.8000000000000003,0.188 +2013,8,23,17,30,57,123,142,23,29,1010,70.51,93.30000000000001,3.2,0.188 +2013,8,23,18,30,0,10,10,23,28,1010,78.82000000000001,96.5,2.5,0.188 +2013,8,23,19,30,0,0,0,24,27,1010,87.64,98.7,2.3000000000000003,0.188 +2013,8,23,20,30,0,0,0,25,27,1010,89.38,100.2,2.2,0.188 +2013,8,23,21,30,0,0,0,25,27,1010,90.42,102.30000000000001,2,0.188 +2013,8,23,22,30,0,0,0,25,26,1010,96.2,104.4,1.8,0.188 +2013,8,23,23,30,0,0,0,25,26,1010,95.82000000000001,104.4,1.6,0.188 +2013,8,24,0,30,0,0,0,25,26,1010,94.94,101.60000000000001,1.4000000000000001,0.188 +2013,8,24,1,30,0,0,0,24,26,1010,93.65,94.2,1.4000000000000001,0.188 +2013,8,24,2,30,0,0,0,24,26,1010,92.62,81,1.3,0.188 +2013,8,24,3,30,0,0,0,24,26,1010,92.06,64.8,1.3,0.188 +2013,8,24,4,30,0,0,0,24,25,1010,97.86,48.1,1.5,0.188 +2013,8,24,5,30,0,0,0,24,25,1010,98.25,37.1,1.9000000000000001,0.188 +2013,8,24,6,30,89,30,37,24,26,1010,93.45,31.3,2.7,0.188 +2013,8,24,7,30,422,97,225,24,28,1010,88,30.400000000000002,3.6,0.188 +2013,8,24,8,30,604,132,443,24,29,1010,76.08,38.800000000000004,4.3,0.188 +2013,8,24,9,30,696,156,641,23,30,1010,70.15,45.800000000000004,4.800000000000001,0.188 +2013,8,24,10,30,752,171,800,23,31,1010,64.76,51.300000000000004,5.2,0.188 +2013,8,24,11,30,782,179,902,23,32,1010,59.75,56.900000000000006,5.5,0.188 +2013,8,24,12,30,788,184,939,22,33,1010,58.980000000000004,62.5,5.6000000000000005,0.188 +2013,8,24,13,30,781,181,908,22,32,1010,58.82,67.5,5.800000000000001,0.188 +2013,8,24,14,30,754,173,810,23,32,1010,59.11,72.2,5.9,0.188 +2013,8,24,15,30,632,195,643,23,31,1010,63.07,76.60000000000001,5.9,0.188 +2013,8,24,16,30,549,159,450,23,30,1010,67.77,80.4,5.7,0.188 +2013,8,24,17,30,361,115,231,23,29,1010,73.10000000000001,84.10000000000001,5,0.188 +2013,8,24,18,30,96,36,45,24,28,1010,79.46000000000001,88.2,4.1000000000000005,0.188 +2013,8,24,19,30,0,0,0,24,28,1010,87.27,91.5,3.3000000000000003,0.188 +2013,8,24,20,30,0,0,0,25,27,1010,89.59,93.4,2.8000000000000003,0.188 +2013,8,24,21,30,0,0,0,25,27,1010,90.83,94.7,2.4000000000000004,0.188 +2013,8,24,22,30,0,0,0,25,27,1010,96.49000000000001,95.80000000000001,2,0.188 +2013,8,24,23,30,0,0,0,25,26,1010,95.75,95.60000000000001,1.7000000000000002,0.188 +2013,8,25,0,30,0,0,0,25,26,1010,94.83,92.10000000000001,1.4000000000000001,0.188 +2013,8,25,1,30,0,0,0,25,26,1010,94.39,84.80000000000001,1.2000000000000002,0.188 +2013,8,25,2,30,0,0,0,24,26,1010,93.96000000000001,72.5,1.2000000000000002,0.188 +2013,8,25,3,30,0,0,0,24,26,1010,93.82000000000001,55.900000000000006,1.4000000000000001,0.188 +2013,8,25,4,30,0,0,0,24,26,1010,99.5,41.900000000000006,1.6,0.188 +2013,8,25,5,30,0,0,0,24,26,1010,99.37,33.300000000000004,2,0.188 +2013,8,25,6,30,83,29,36,24,26,1010,93.43,29.700000000000003,2.7,0.188 +2013,8,25,7,30,424,95,224,24,27,1010,86.66,30,3.3000000000000003,0.188 +2013,8,25,8,30,230,215,333,24,28,1010,80.33,35.2,3.4000000000000004,0.188 +2013,8,25,9,30,121,321,405,24,29,1010,74.63,44.300000000000004,3.3000000000000003,0.188 +2013,8,25,10,30,354,375,671,23,30,1010,69.60000000000001,55.2,3.2,0.188 +2013,8,25,11,30,198,464,647,23,31,1010,65.47,67.2,3,0.188 +2013,8,25,12,30,394,389,766,23,31,1010,65.6,77.5,3,0.188 +2013,8,25,13,30,287,449,715,23,31,1010,69.8,85.4,3.2,0.188 +2013,8,25,14,30,789,148,813,24,30,1010,70.4,90.9,3.4000000000000004,0.188 +2013,8,25,15,30,684,164,647,24,30,1010,70.82000000000001,97.5,3.5,0.188 +2013,8,25,16,30,598,137,452,24,29,1010,75.38,105.80000000000001,3.6,0.188 +2013,8,25,17,30,463,87,235,24,28,1010,80.8,112.80000000000001,3.3000000000000003,0.188 +2013,8,25,18,30,118,34,45,24,27,1010,88.27,116.10000000000001,2.8000000000000003,0.188 +2013,8,25,19,30,0,0,0,25,27,1010,90.35000000000001,118.30000000000001,2.6,0.188 +2013,8,25,20,30,0,0,0,25,27,1010,96.83,122.9,2.5,0.188 +2013,8,25,21,30,0,0,0,25,26,1010,97.65,130,2.3000000000000003,0.188 +2013,8,25,22,30,0,0,0,25,26,1010,98.28,137.70000000000002,2.1,0.188 +2013,8,25,23,30,0,0,0,25,26,1010,98.41,142.5,1.9000000000000001,0.188 +2013,8,26,0,30,0,0,0,25,26,1010,97.58,144.5,1.8,0.188 +2013,8,26,1,30,0,0,0,25,26,1010,96.68,144.1,1.8,0.188 +2013,8,26,2,30,0,0,0,25,26,1010,100,140.4,1.7000000000000002,0.188 +2013,8,26,3,30,0,0,0,25,25,1010,100,134.70000000000002,1.6,0.188 +2013,8,26,4,30,0,0,0,25,25,1010,100,126.4,1.5,0.188 +2013,8,26,5,30,0,0,0,25,25,1010,100,118,1.5,0.188 +2013,8,26,6,30,192,25,40,25,25,1010,100,109.2,2,0.188 +2013,8,26,7,30,130,116,155,25,26,1010,96.13,103.80000000000001,2.7,0.188 +2013,8,26,8,30,298,204,356,25,27,1010,89.35000000000001,103.7,2.9000000000000004,0.188 +2013,8,26,9,30,17,241,253,24,27,1010,87.05,106.60000000000001,3,0.188 +2013,8,26,10,30,45,357,395,24,28,1010,80.81,111.60000000000001,3.1,0.188 +2013,8,26,11,30,171,464,622,24,28,1010,80.60000000000001,118.4,3.3000000000000003,0.188 +2013,8,26,12,30,144,483,620,24,28,1010,80.54,124.60000000000001,3.5,0.188 +2013,8,26,13,30,28,366,392,24,28,1010,79.95,127.30000000000001,3.9000000000000004,0.188 +2013,8,26,14,30,14,267,279,24,28,1010,79.52,127.7,4.2,0.188 +2013,8,26,15,30,5,194,199,24,28,1010,80.21000000000001,125.60000000000001,4.5,0.188 +2013,8,26,16,30,6,169,173,24,27,1010,86.77,121.30000000000001,4.6000000000000005,0.188 +2013,8,26,17,30,47,118,133,24,27,1010,93.8,117.4,4.1000000000000005,0.188 +2013,8,26,18,30,0,24,24,25,26,1010,95.76,111.60000000000001,3.7,0.188 +2013,8,26,19,30,0,0,0,25,26,1010,96.83,109.7,3.6,0.188 +2013,8,26,20,30,0,0,0,25,26,1010,97,112.60000000000001,3.7,0.188 +2013,8,26,21,30,0,0,0,25,26,1010,96.68,117.10000000000001,3.6,0.188 +2013,8,26,22,30,0,0,0,25,26,1010,95.95,120.80000000000001,3.4000000000000004,0.188 +2013,8,26,23,30,0,0,0,25,26,1010,95.03,122.9,3,0.188 +2013,8,27,0,30,0,0,0,24,26,1010,94.18,125.2,2.8000000000000003,0.188 +2013,8,27,1,30,0,0,0,24,26,1010,93.48,127.30000000000001,2.5,0.188 +2013,8,27,2,30,0,0,0,24,26,1010,93.04,127.30000000000001,2.4000000000000004,0.188 +2013,8,27,3,30,0,0,0,24,26,1010,92.73,127,2.3000000000000003,0.188 +2013,8,27,4,30,0,0,0,24,26,1010,92.75,126.7,2.2,0.188 +2013,8,27,5,30,0,0,0,24,26,1010,93.2,126.80000000000001,2.1,0.188 +2013,8,27,6,30,0,21,21,25,26,1010,94.87,128.1,2.2,0.188 +2013,8,27,7,30,159,114,162,25,27,1010,92.68,129,2.5,0.188 +2013,8,27,8,30,213,215,324,25,28,1010,87.38,132.6,3,0.188 +2013,8,27,9,30,245,314,483,25,29,1010,79.84,139,3.3000000000000003,0.188 +2013,8,27,10,30,89,393,468,24,30,1010,73.48,143.8,3.4000000000000004,0.188 +2013,8,27,11,30,29,365,392,24,30,1010,72.07000000000001,143,3.4000000000000004,0.188 +2013,8,27,12,30,142,482,617,24,31,1010,71.27,138.20000000000002,3.4000000000000004,0.188 +2013,8,27,13,30,485,374,823,24,31,1010,70.73,132.1,3.4000000000000004,0.188 +2013,8,27,14,30,502,312,733,24,30,1010,70.38,126.10000000000001,3.6,0.188 +2013,8,27,15,30,353,294,541,24,30,1010,70.47,120.5,3.7,0.188 +2013,8,27,16,30,502,161,422,24,29,1010,75.48,115.4,3.7,0.188 +2013,8,27,17,30,424,91,222,24,28,1010,82.19,111.80000000000001,3.2,0.188 +2013,8,27,18,30,73,33,39,25,27,1010,89.92,109.60000000000001,2.7,0.188 +2013,8,27,19,30,0,0,0,25,27,1010,90.85000000000001,111,2.5,0.188 +2013,8,27,20,30,0,0,0,25,26,1010,96.72,113.5,2.4000000000000004,0.188 +2013,8,27,21,30,0,0,0,25,26,1010,96.75,116.80000000000001,2.3000000000000003,0.188 +2013,8,27,22,30,0,0,0,25,26,1010,96.36,121,2.1,0.188 +2013,8,27,23,30,0,0,0,25,26,1010,95.79,125.60000000000001,1.9000000000000001,0.188 +2013,8,28,0,30,0,0,0,25,25,1010,100,128.6,1.7000000000000002,0.188 +2013,8,28,1,30,0,0,0,24,25,1010,99.85000000000001,128.20000000000002,1.5,0.188 +2013,8,28,2,30,0,0,0,24,25,1010,98.47,123.30000000000001,1.3,0.188 +2013,8,28,3,30,0,0,0,24,25,1010,97.28,113.60000000000001,1.2000000000000002,0.188 +2013,8,28,4,30,0,0,0,24,25,1010,96.28,97.5,1.2000000000000002,0.188 +2013,8,28,5,30,0,0,0,24,25,1010,95.64,76.7,1.2000000000000002,0.188 +2013,8,28,6,30,93,27,34,24,26,1010,92.14,59.1,1.8,0.188 +2013,8,28,7,30,447,91,224,24,28,1010,80.03,50.900000000000006,2.6,0.188 +2013,8,28,8,30,627,124,444,23,30,1010,68.61,47.6,3,0.188 +2013,8,28,9,30,725,144,645,23,31,1010,62.88,49.7,3.4000000000000004,0.188 +2013,8,28,10,30,779,157,804,22,32,1010,58.34,55.2,3.7,0.188 +2013,8,28,11,30,812,161,908,22,33,1010,54.77,61.900000000000006,4,0.188 +2013,8,28,12,30,823,162,944,22,33,1010,54.69,68.8,4.1000000000000005,0.188 +2013,8,28,13,30,821,156,913,22,33,1010,54.53,74.9,4.2,0.188 +2013,8,28,14,30,800,147,814,22,33,1010,54.46,79.60000000000001,4.2,0.188 +2013,8,28,15,30,747,135,656,22,32,1010,57.53,82.80000000000001,4.3,0.188 +2013,8,28,16,30,660,115,456,22,31,1010,61.050000000000004,85.30000000000001,4.3,0.188 +2013,8,28,17,30,496,84,236,22,30,1010,65.66,87.5,4,0.188 +2013,8,28,18,30,140,29,40,23,28,1010,76.73,90.30000000000001,3.5,0.187 +2013,8,28,19,30,0,0,0,24,27,1010,85.47,94.10000000000001,3.1,0.187 +2013,8,28,20,30,0,0,0,24,27,1010,93.27,98.2,2.8000000000000003,0.187 +2013,8,28,21,30,0,0,0,25,26,1010,94.92,103.10000000000001,2.5,0.187 +2013,8,28,22,30,0,0,0,25,26,1010,95.72,109.2,2.3000000000000003,0.187 +2013,8,28,23,30,0,0,0,25,26,1010,95.87,115.7,2.1,0.187 +2013,8,29,0,30,0,0,0,25,25,1010,100,121.4,1.9000000000000001,0.187 +2013,8,29,1,30,0,0,0,25,25,1010,100,126.2,1.7000000000000002,0.187 +2013,8,29,2,30,0,0,0,25,25,1010,100,129.9,1.5,0.187 +2013,8,29,3,30,0,0,0,24,25,1010,99.44,132.6,1.4000000000000001,0.187 +2013,8,29,4,30,0,0,0,24,25,1010,99.3,133.20000000000002,1.3,0.187 +2013,8,29,5,30,0,0,0,24,25,1010,99.21000000000001,129.9,1.2000000000000002,0.187 +2013,8,29,6,30,99,26,33,25,27,1010,89.99,121.10000000000001,1.4000000000000001,0.187 +2013,8,29,7,30,456,90,225,24,28,1010,83.14,113.4,1.9000000000000001,0.187 +2013,8,29,8,30,637,122,446,23,30,1010,69.95,108.2,2.2,0.187 +2013,8,29,9,30,721,149,646,22,32,1010,57.61,100.2,2.5,0.187 +2013,8,29,10,30,767,168,804,21,33,1010,52.17,94.2,2.9000000000000004,0.187 +2013,8,29,11,30,790,181,905,21,34,1010,51.29,92.4,3.3000000000000003,0.187 +2013,8,29,12,30,854,144,954,21,34,1010,47.81,93.9,3.6,0.187 +2013,8,29,13,30,848,142,921,21,34,1010,47.31,96,3.7,0.187 +2013,8,29,14,30,821,137,820,21,34,1010,46.83,97.4,3.9000000000000004,0.187 +2013,8,29,15,30,769,126,660,20,33,1010,49.120000000000005,100.2,4,0.187 +2013,8,29,16,30,676,110,457,20,32,1010,51.78,105,4,0.187 +2013,8,29,17,30,504,82,235,21,31,1010,55.44,112.60000000000001,3.6,0.187 +2013,8,29,18,30,146,27,38,22,29,1010,66.07000000000001,123.2,3,0.187 +2013,8,29,19,30,0,0,0,23,27,1010,79.16,135.5,2.8000000000000003,0.187 +2013,8,29,20,30,0,0,0,23,27,1010,81.76,144.70000000000002,2.7,0.187 +2013,8,29,21,30,0,0,0,23,27,1010,88.31,152,2.7,0.187 +2013,8,29,22,30,0,0,0,24,26,1010,88.96000000000001,158.9,2.6,0.187 +2013,8,29,23,30,0,0,0,24,26,1010,89.52,165.8,2.5,0.187 +2013,8,30,0,30,0,0,0,24,26,1010,90.09,173.10000000000002,2.3000000000000003,0.187 +2013,8,30,1,30,0,0,0,24,26,1010,95.68,179.10000000000002,2.1,0.187 +2013,8,30,2,30,0,0,0,24,25,1010,95.15,183.9,1.9000000000000001,0.187 +2013,8,30,3,30,0,0,0,24,25,1010,95.32000000000001,192,1.6,0.187 +2013,8,30,4,30,0,0,0,24,25,1010,95.62,201.3,1.4000000000000001,0.187 +2013,8,30,5,30,0,0,0,24,25,1010,95.62,210.20000000000002,1.2000000000000002,0.187 +2013,8,30,6,30,75,25,30,24,26,1010,91.42,220.4,1.1,0.187 +2013,8,30,7,30,395,101,218,23,28,1010,78.25,211.5,0.9,0.187 +2013,8,30,8,30,581,142,436,22,30,1010,65.06,155.60000000000002,1,0.187 +2013,8,30,9,30,672,173,636,21,32,1010,54.77,106.9,1.6,0.187 +2013,8,30,10,30,715,200,792,21,33,1010,51.59,94.80000000000001,2.1,0.187 +2013,8,30,11,30,731,221,890,21,34,1010,49.08,96.2,2.5,0.187 +2013,8,30,12,30,778,198,934,21,35,1010,48.800000000000004,102.4,2.9000000000000004,0.187 +2013,8,30,13,30,767,196,899,21,35,1010,45.660000000000004,109.2,3.3000000000000003,0.187 +2013,8,30,14,30,733,189,797,21,34,1010,47.63,115.60000000000001,3.6,0.187 +2013,8,30,15,30,668,176,638,21,33,1010,49.96,119.30000000000001,3.9000000000000004,0.187 +2013,8,30,16,30,574,146,439,21,32,1010,52.94,121.80000000000001,4,0.187 +2013,8,30,17,30,409,100,222,21,31,1010,56.79,125.5,3.8000000000000003,0.187 +2013,8,30,18,30,92,26,33,22,29,1010,66.49,130.5,3.4000000000000004,0.187 +2013,8,30,19,30,0,0,0,23,27,1010,79.22,136.1,3.2,0.187 +2013,8,30,20,30,0,0,0,23,27,1010,82.01,142.5,3.1,0.187 +2013,8,30,21,30,0,0,0,23,27,1010,88.54,150.20000000000002,3,0.187 +2013,8,30,22,30,0,0,0,24,26,1010,89.18,158.70000000000002,2.9000000000000004,0.187 +2013,8,30,23,30,0,0,0,24,26,1010,89.58,167.70000000000002,2.8000000000000003,0.187 +2013,8,31,0,30,0,0,0,24,26,1010,95.33,177.10000000000002,2.6,0.187 +2013,8,31,1,30,0,0,0,24,25,1010,95.53,186.20000000000002,2.4000000000000004,0.187 +2013,8,31,2,30,0,0,0,24,25,1010,95.56,193.9,2.2,0.187 +2013,8,31,3,30,0,0,0,24,25,1010,100,199.5,2.1,0.187 +2013,8,31,4,30,0,0,0,24,24,1010,100,202.5,1.9000000000000001,0.187 +2013,8,31,5,30,0,0,0,24,24,1010,100,203.3,1.8,0.187 +2013,8,31,6,30,85,24,30,24,26,1010,90.06,202.4,2.3000000000000003,0.187 +2013,8,31,7,30,421,96,220,23,28,1010,78.21000000000001,202.60000000000002,3,0.187 +2013,8,31,8,30,609,133,440,23,30,1010,66.3,200,2.8000000000000003,0.187 +2013,8,31,9,30,716,153,644,22,32,1010,56.02,187.20000000000002,2.3000000000000003,0.187 +2013,8,31,10,30,772,168,805,21,33,1010,50.83,162.5,2.2,0.187 +2013,8,31,11,30,802,175,909,21,34,1010,48.04,139.20000000000002,2.5,0.187 +2013,8,31,12,30,835,162,950,21,35,1010,47.95,128.3,3,0.187 +2013,8,31,13,30,835,154,917,21,35,1010,44.660000000000004,124.5,3.7,0.187 +2013,8,31,14,30,812,144,816,20,34,1000,46.65,124.2,4.1000000000000005,0.187 +2013,8,31,15,30,700,163,644,20,33,1000,49.06,124.7,4.4,0.187 +2013,8,31,16,30,609,135,443,21,32,1000,52.29,125.7,4.5,0.187 +2013,8,31,17,30,441,94,224,21,30,1000,60.29,127.5,4.4,0.187 +2013,8,31,18,30,105,25,32,22,28,1000,71.60000000000001,129.9,4.1000000000000005,0.187 +2013,8,31,19,30,0,0,0,23,27,1010,80.64,133.1,3.7,0.187 +2013,8,31,20,30,0,0,0,24,27,1010,83.73,139.1,3.5,0.187 +2013,8,31,21,30,0,0,0,24,27,1010,85.59,146.5,3.4000000000000004,0.187 +2013,8,31,22,30,0,0,0,24,27,1010,91.54,154.70000000000002,3.6,0.187 +2013,8,31,23,30,0,0,0,24,26,1010,91.42,163.70000000000002,3.7,0.187 +2013,9,1,0,30,0,0,0,24,26,1010,91.24,171,3.7,0.187 +2013,9,1,1,30,0,0,0,24,26,1010,90.89,176.4,3.4000000000000004,0.187 +2013,9,1,2,30,0,0,0,24,25,1010,96.13,181.20000000000002,3,0.187 +2013,9,1,3,30,0,0,0,24,25,1010,96.02,185.70000000000002,2.5,0.187 +2013,9,1,4,30,0,0,0,24,24,1010,100,189.4,2,0.187 +2013,9,1,5,30,0,0,0,24,24,1010,100,190.20000000000002,1.8,0.187 +2013,9,1,6,30,143,24,33,24,26,1010,92.52,188.20000000000002,2.2,0.187 +2013,9,1,7,30,534,74,230,24,28,1010,80.21000000000001,185.10000000000002,2.9000000000000004,0.187 +2013,9,1,8,30,706,98,454,23,30,1010,68.60000000000001,179.60000000000002,3.1,0.187 +2013,9,1,9,30,797,112,659,23,32,1010,59.35,171.60000000000002,3,0.187 +2013,9,1,10,30,843,123,818,22,33,1010,54.79,163.10000000000002,3,0.187 +2013,9,1,11,30,867,129,919,22,34,1010,51.14,153.8,3.2,0.187 +2013,9,1,12,30,126,475,593,22,35,1010,47.6,145.70000000000002,3.6,0.187 +2013,9,1,13,30,845,142,913,22,35,1000,47.27,140.1,4,0.187 +2013,9,1,14,30,812,139,808,22,34,1000,50.1,136.8,4.4,0.187 +2013,9,1,15,30,803,107,656,22,33,1000,53.24,134.1,4.6000000000000005,0.187 +2013,9,1,16,30,715,93,452,22,32,1000,56.89,132.4,4.9,0.187 +2013,9,1,17,30,543,70,228,22,31,1000,61.78,131.1,4.9,0.187 +2013,9,1,18,30,143,23,32,23,29,1010,72.81,130.20000000000002,4.6000000000000005,0.187 +2013,9,1,19,30,0,0,0,24,28,1010,81.61,131.1,4.4,0.187 +2013,9,1,20,30,0,0,0,25,28,1010,84.49,135.5,4.1000000000000005,0.187 +2013,9,1,21,30,0,0,0,25,28,1010,90.86,142.1,3.8000000000000003,0.187 +2013,9,1,22,30,0,0,0,25,27,1010,91.23,149.9,3.6,0.187 +2013,9,1,23,30,0,0,0,25,27,1010,91.22,158.5,3.4000000000000004,0.187 +2013,9,2,0,30,0,0,0,25,27,1010,96.65,166.10000000000002,3.3000000000000003,0.187 +2013,9,2,1,30,0,0,0,25,26,1010,96.64,172.60000000000002,3.1,0.187 +2013,9,2,2,30,0,0,0,25,26,1010,96.68,177.8,2.9000000000000004,0.187 +2013,9,2,3,30,0,0,0,25,26,1010,96.67,183.20000000000002,2.6,0.187 +2013,9,2,4,30,0,0,0,25,26,1010,96.7,187,2.4000000000000004,0.187 +2013,9,2,5,30,0,0,0,25,26,1010,96.72,188.10000000000002,2.2,0.187 +2013,9,2,6,30,172,22,33,25,26,1010,97.16,186.20000000000002,2.6,0.187 +2013,9,2,7,30,573,64,230,25,28,1010,85.61,183.70000000000002,3.3000000000000003,0.187 +2013,9,2,8,30,736,85,454,24,29,1010,76.68,181.20000000000002,3.4000000000000004,0.187 +2013,9,2,9,30,817,98,657,23,30,1010,68.97,174.8,3,0.187 +2013,9,2,10,30,857,109,814,23,31,1010,62.95,165.5,2.8000000000000003,0.187 +2013,9,2,11,30,873,118,913,22,32,1010,58.370000000000005,153.70000000000002,2.7,0.187 +2013,9,2,12,30,31,382,411,22,33,1010,54.44,142.6,2.9000000000000004,0.187 +2013,9,2,13,30,38,385,420,22,33,1010,53.84,136,3.2,0.187 +2013,9,2,14,30,164,402,537,22,32,1010,56.81,132.1,3.6,0.187 +2013,9,2,15,30,668,169,624,22,32,1010,56.71,130.6,3.9000000000000004,0.187 +2013,9,2,16,30,576,138,426,22,31,1010,60.42,131.6,4.1000000000000005,0.187 +2013,9,2,17,30,408,93,210,22,30,1010,65.38,134.20000000000002,4,0.187 +2013,9,2,18,30,70,21,26,23,28,1010,77.2,137.9,3.6,0.187 +2013,9,2,19,30,0,0,0,24,28,1010,86.05,141.8,3.3000000000000003,0.187 +2013,9,2,20,30,0,0,0,24,27,1010,88.25,146.4,3,0.187 +2013,9,2,21,30,0,0,0,25,27,1010,89.48,152.20000000000002,2.7,0.187 +2013,9,2,22,30,0,0,0,25,26,1010,95.42,158,2.4000000000000004,0.187 +2013,9,2,23,30,0,0,0,25,26,1010,95.64,163.60000000000002,2.2,0.187 +2013,9,3,0,30,0,0,0,25,26,1010,95.74000000000001,169,1.9000000000000001,0.187 +2013,9,3,1,30,0,0,0,25,25,1010,100,174.9,1.7000000000000002,0.187 +2013,9,3,2,30,0,0,0,25,25,1010,100,179.70000000000002,1.4000000000000001,0.187 +2013,9,3,3,30,0,0,0,25,25,1010,100,184.20000000000002,1.2000000000000002,0.187 +2013,9,3,4,30,0,0,0,25,25,1010,100,186.8,0.9,0.187 +2013,9,3,5,30,0,0,0,25,25,1010,100,186.9,0.6000000000000001,0.187 +2013,9,3,6,30,158,22,32,25,26,1010,95.03,181.9,0.5,0.187 +2013,9,3,7,30,562,65,228,24,28,1010,86.48,171.3,0.5,0.187 +2013,9,3,8,30,731,85,451,23,29,1010,70.84,140.3,0.6000000000000001,0.187 +2013,9,3,9,30,821,95,655,21,31,1010,58.160000000000004,103,1,0.187 +2013,9,3,10,30,866,103,815,21,32,1010,52.74,88.60000000000001,1.6,0.187 +2013,9,3,11,30,62,420,477,21,33,1010,49.56,87.60000000000001,2.1,0.187 +2013,9,3,12,30,870,128,944,21,34,1010,49.76,92.9,2.5,0.187 +2013,9,3,13,30,863,126,908,21,34,1010,47.050000000000004,99.80000000000001,2.9000000000000004,0.187 +2013,9,3,14,30,839,120,807,21,33,1010,49.74,106.30000000000001,3.2,0.187 +2013,9,3,15,30,787,112,646,21,33,1010,49.88,111.30000000000001,3.3000000000000003,0.187 +2013,9,3,16,30,707,93,444,21,32,1010,53.32,115,3.4000000000000004,0.187 +2013,9,3,17,30,547,67,222,21,30,1010,61.19,118.80000000000001,3,0.187 +2013,9,3,18,30,155,20,28,23,28,1010,74.31,124.5,2.5,0.187 +2013,9,3,19,30,0,0,0,24,27,1010,84.19,132.3,2.3000000000000003,0.187 +2013,9,3,20,30,0,0,0,24,27,1010,86.67,140.4,2.2,0.187 +2013,9,3,21,30,0,0,0,24,27,1010,93.5,148.70000000000002,2.2,0.187 +2013,9,3,22,30,0,0,0,24,26,1010,94.19,157.60000000000002,2.1,0.187 +2013,9,3,23,30,0,0,0,25,26,1010,94.59,166.3,2.1,0.187 +2013,9,4,0,30,0,0,0,25,26,1010,94.96000000000001,174.4,2,0.187 +2013,9,4,1,30,0,0,0,25,26,1010,100,182.60000000000002,1.8,0.187 +2013,9,4,2,30,0,0,0,25,25,1010,100,191.20000000000002,1.5,0.187 +2013,9,4,3,30,0,0,0,25,25,1010,100,203.5,1.2000000000000002,0.187 +2013,9,4,4,30,0,0,0,25,25,1010,100,219.8,1,0.187 +2013,9,4,5,30,0,0,0,25,25,1010,100,244,0.7000000000000001,0.187 +2013,9,4,6,30,133,22,30,25,25,1010,100,295.40000000000003,0.8,0.187 +2013,9,4,7,30,512,74,221,24,27,1010,88.34,356.5,1.4000000000000001,0.187 +2013,9,4,8,30,682,102,442,24,29,1010,79.87,23.6,2,0.187 +2013,9,4,9,30,775,118,645,23,30,1010,68.36,40.2,2.5,0.187 +2013,9,4,10,30,830,126,806,22,31,1010,62.35,51.900000000000006,2.8000000000000003,0.187 +2013,9,4,11,30,860,129,909,22,32,1010,56.71,65.3,3.1,0.187 +2013,9,4,12,30,486,385,840,21,33,1010,52.14,77.4,3.4000000000000004,0.187 +2013,9,4,13,30,841,144,904,21,34,1010,48.230000000000004,86.7,3.7,0.187 +2013,9,4,14,30,818,134,801,21,33,1010,50.15,92.2,4,0.187 +2013,9,4,15,30,773,120,641,21,32,1010,52.63,95.80000000000001,4.1000000000000005,0.187 +2013,9,4,16,30,688,99,438,21,31,1010,56.57,98.5,4.1000000000000005,0.187 +2013,9,4,17,30,522,70,216,22,30,1010,62.58,100.4,3.7,0.187 +2013,9,4,18,30,129,19,25,23,28,1010,75.53,102.30000000000001,3,0.187 +2013,9,4,19,30,0,0,0,24,27,1010,85.01,104.2,2.7,0.187 +2013,9,4,20,30,0,0,0,24,27,1010,87.5,105,2.6,0.187 +2013,9,4,21,30,0,0,0,24,27,1010,88.62,106.2,2.4000000000000004,0.187 +2013,9,4,22,30,0,0,0,25,26,1010,94.41,107.9,2.2,0.187 +2013,9,4,23,30,0,0,0,25,26,1010,94.66,108.9,2,0.187 +2013,9,5,0,30,0,0,0,25,26,1010,94.76,108.30000000000001,1.8,0.187 +2013,9,5,1,30,0,0,0,25,26,1010,94.66,105.10000000000001,1.6,0.187 +2013,9,5,2,30,0,0,0,25,26,1010,94.37,98.4,1.6,0.187 +2013,9,5,3,30,0,0,0,24,26,1010,93.97,90.30000000000001,1.6,0.187 +2013,9,5,4,30,0,0,0,24,26,1010,93.82000000000001,80.7,1.6,0.187 +2013,9,5,5,30,0,0,0,24,26,1010,93.8,71.9,1.8,0.187 +2013,9,5,6,30,102,22,28,25,27,1010,89.01,65.8,2.6,0.187 +2013,9,5,7,30,75,110,131,24,28,1010,83.27,64.9,3.5,0.187 +2013,9,5,8,30,669,104,437,24,29,1010,75.82000000000001,71.4,3.9000000000000004,0.187 +2013,9,5,9,30,751,125,635,24,30,1010,70.3,76.5,4.2,0.187 +2013,9,5,10,30,795,141,791,23,31,1010,65.35,81.30000000000001,4.5,0.187 +2013,9,5,11,30,816,151,889,23,32,1010,60.65,86,4.800000000000001,0.187 +2013,9,5,12,30,842,141,927,23,32,1010,59.54,89.80000000000001,4.9,0.187 +2013,9,5,13,30,831,140,889,22,31,1010,62.28,94.10000000000001,4.9,0.187 +2013,9,5,14,30,503,298,707,22,31,1010,65.95,98.10000000000001,4.800000000000001,0.187 +2013,9,5,15,30,173,311,427,23,30,1010,66.79,100.4,4.6000000000000005,0.187 +2013,9,5,16,30,37,189,207,23,29,1010,72.08,102.60000000000001,4.2,0.187 +2013,9,5,17,30,33,100,109,23,28,1010,78.23,105.5,3.3000000000000003,0.187 +2013,9,5,18,30,0,11,11,24,27,1010,86.95,108.7,2.4000000000000004,0.181 +2013,9,5,19,30,0,0,0,25,27,1010,90.04,111.80000000000001,2,0.181 +2013,9,5,20,30,0,0,0,25,27,1010,91.18,114.4,1.8,0.181 +2013,9,5,21,30,0,0,0,25,27,1010,97.24000000000001,116.9,1.6,0.181 +2013,9,5,22,30,0,0,0,25,26,1010,97.31,119.30000000000001,1.5,0.181 +2013,9,5,23,30,0,0,0,25,26,1010,97.14,120.4,1.3,0.181 +2013,9,6,0,30,0,0,0,25,26,1010,96.56,117.4,1.2000000000000002,0.181 +2013,9,6,1,30,0,0,0,25,26,1010,95.41,106.10000000000001,1.1,0.181 +2013,9,6,2,30,0,0,0,25,26,1010,94.39,87.30000000000001,1.1,0.181 +2013,9,6,3,30,0,0,0,24,25,1010,99.75,69.5,1.2000000000000002,0.181 +2013,9,6,4,30,0,0,0,24,25,1010,99.76,58.800000000000004,1.4000000000000001,0.181 +2013,9,6,5,30,0,0,0,24,25,1010,99.82000000000001,54.300000000000004,1.6,0.181 +2013,9,6,6,30,99,21,27,25,26,1010,100,51.900000000000006,2.2,0.181 +2013,9,6,7,30,501,73,216,25,27,1010,90.52,50.5,2.9000000000000004,0.181 +2013,9,6,8,30,680,99,436,24,28,1010,83.32000000000001,56.2,3.4000000000000004,0.181 +2013,9,6,9,30,762,119,636,24,29,1010,75.84,61.6,3.7,0.181 +2013,9,6,10,30,631,223,739,23,30,1010,70.16,67.10000000000001,3.8000000000000003,0.181 +2013,9,6,11,30,635,259,832,23,31,1010,65.13,75.60000000000001,3.9000000000000004,0.181 +2013,9,6,12,30,510,376,851,23,31,1010,64.75,84.2,4,0.181 +2013,9,6,13,30,284,434,690,23,31,1010,64.61,91,4,0.181 +2013,9,6,14,30,621,253,755,23,31,1010,64.71000000000001,96.9,3.9000000000000004,0.181 +2013,9,6,15,30,392,267,529,23,30,1010,68.52,101.30000000000001,3.8000000000000003,0.181 +2013,9,6,16,30,56,196,223,23,29,1010,72.62,105.7,3.4000000000000004,0.181 +2013,9,6,17,30,326,88,176,23,28,1010,78.13,109.9,2.6,0.181 +2013,9,6,18,30,0,17,17,24,27,1010,87.74,113.30000000000001,1.9000000000000001,0.181 +2013,9,6,19,30,0,0,0,25,26,1010,95.86,115.4,1.7000000000000002,0.181 +2013,9,6,20,30,0,0,0,25,26,1010,96.36,117.7,1.7000000000000002,0.181 +2013,9,6,21,30,0,0,0,25,26,1010,96.46000000000001,121.2,1.7000000000000002,0.181 +2013,9,6,22,30,0,0,0,25,26,1010,96.32000000000001,127.4,1.6,0.181 +2013,9,6,23,30,0,0,0,25,26,1010,96.09,135.8,1.5,0.181 +2013,9,7,0,30,0,0,0,25,26,1010,95.77,145.20000000000002,1.3,0.181 +2013,9,7,1,30,0,0,0,25,26,1010,95.31,156.70000000000002,1.2000000000000002,0.181 +2013,9,7,2,30,0,0,0,25,26,1010,94.97,168.70000000000002,1,0.181 +2013,9,7,3,30,0,0,0,25,26,1010,94.43,185.3,0.7000000000000001,0.181 +2013,9,7,4,30,0,0,0,24,26,1010,99.15,206.5,0.4,0.181 +2013,9,7,5,30,0,0,0,24,25,1010,98.31,277.7,0.4,0.181 +2013,9,7,6,30,0,14,14,24,25,1010,99.92,2.8000000000000003,0.9,0.181 +2013,9,7,7,30,0,95,95,25,27,1010,94.7,19.1,1.4000000000000001,0.181 +2013,9,7,8,30,345,187,358,24,28,1010,82.84,34.2,1.8,0.181 +2013,9,7,9,30,487,236,565,24,30,1010,71.91,56.300000000000004,2,0.181 +2013,9,7,10,30,21,296,313,23,31,1010,65.84,79.60000000000001,2.4000000000000004,0.181 +2013,9,7,11,30,453,367,775,23,32,1010,60.63,98,2.7,0.181 +2013,9,7,12,30,461,384,813,23,31,1010,63.06,110.10000000000001,3,0.181 +2013,9,7,13,30,7,190,197,23,31,1010,63.31,117.30000000000001,3.4000000000000004,0.181 +2013,9,7,14,30,38,335,367,23,30,1010,67.51,120.9,3.5,0.181 +2013,9,7,15,30,88,299,358,23,29,1010,71.85000000000001,123.10000000000001,3.6,0.181 +2013,9,7,16,30,390,185,372,23,28,1010,77.28,124.10000000000001,3.6,0.181 +2013,9,7,17,30,229,95,157,24,27,1010,84.36,123.9,3.1,0.181 +2013,9,7,18,30,0,10,10,24,27,1010,93.27,122.60000000000001,2.6,0.181 +2013,9,7,19,30,0,0,0,25,26,1010,95.74000000000001,121.9,2.4000000000000004,0.181 +2013,9,7,20,30,0,0,0,25,26,1010,96.79,121.5,2.3000000000000003,0.181 +2013,9,7,21,30,0,0,0,25,26,1010,97.24000000000001,123.2,2.2,0.181 +2013,9,7,22,30,0,0,0,25,26,1010,97.15,127.80000000000001,2,0.181 +2013,9,7,23,30,0,0,0,25,26,1010,100,132.9,1.9000000000000001,0.181 +2013,9,8,0,30,0,0,0,25,25,1010,100,138,1.8,0.181 +2013,9,8,1,30,0,0,0,25,25,1010,100,141.3,1.8,0.181 +2013,9,8,2,30,0,0,0,25,25,1010,100,142.3,1.7000000000000002,0.181 +2013,9,8,3,30,0,0,0,25,25,1010,100,140.6,1.6,0.181 +2013,9,8,4,30,0,0,0,24,25,1010,99.78,136.1,1.4000000000000001,0.181 +2013,9,8,5,30,0,0,0,24,25,1010,99.49000000000001,129.1,1.3,0.181 +2013,9,8,6,30,85,20,24,25,26,1010,100,123,1.5,0.181 +2013,9,8,7,30,479,77,211,25,27,1010,96.17,117.9,2.1,0.181 +2013,9,8,8,30,670,102,433,24,27,1010,88.57000000000001,118.30000000000001,2.8000000000000003,0.181 +2013,9,8,9,30,0,147,147,24,28,1010,81.72,119.30000000000001,3.3000000000000003,0.181 +2013,9,8,10,30,0,146,146,24,29,1010,75.09,119.4,3.6,0.181 +2013,9,8,11,30,0,95,95,23,29,1010,72.33,118.10000000000001,3.8000000000000003,0.181 +2013,9,8,12,30,35,388,421,23,30,1010,66.41,115.7,4,0.181 +2013,9,8,13,30,173,449,604,22,30,1010,64.72,113.80000000000001,4.1000000000000005,0.181 +2013,9,8,14,30,222,387,566,22,30,1010,63.09,112.30000000000001,4.4,0.181 +2013,9,8,15,30,527,214,562,21,29,1010,65.26,111.30000000000001,4.6000000000000005,0.181 +2013,9,8,16,30,224,197,304,21,28,1010,68.58,110.30000000000001,4.5,0.181 +2013,9,8,17,30,494,66,195,21,27,1010,73.74,108.5,3.8000000000000003,0.181 +2013,9,8,18,30,0,16,16,22,26,1010,87.12,105.30000000000001,3,0.181 +2013,9,8,19,30,0,0,0,23,25,1010,89.96000000000001,102.60000000000001,2.9000000000000004,0.181 +2013,9,8,20,30,0,0,0,23,25,1010,91.8,102,3,0.181 +2013,9,8,21,30,0,0,0,23,25,1010,92.99,103.30000000000001,3,0.181 +2013,9,8,22,30,0,0,0,23,25,1010,93.31,105.7,3.1,0.181 +2013,9,8,23,30,0,0,0,23,25,1010,92.83,109,3.2,0.181 +2013,9,9,0,30,0,0,0,23,25,1010,92.33,112.2,3,0.181 +2013,9,9,1,30,0,0,0,23,25,1010,92.28,113.10000000000001,2.8000000000000003,0.181 +2013,9,9,2,30,0,0,0,23,25,1010,92.39,111,2.6,0.181 +2013,9,9,3,30,0,0,0,23,25,1010,92.82000000000001,107.80000000000001,2.6,0.181 +2013,9,9,4,30,0,0,0,23,25,1010,93.10000000000001,106.2,2.7,0.181 +2013,9,9,5,30,0,0,0,23,25,1010,93.18,106.80000000000001,2.9000000000000004,0.181 +2013,9,9,6,30,0,14,14,23,25,1010,94.01,109.5,3.5,0.181 +2013,9,9,7,30,67,106,125,24,27,1010,90.2,113.10000000000001,4.4,0.181 +2013,9,9,8,30,659,105,429,23,28,1010,78.85000000000001,117.4,5.300000000000001,0.181 +2013,9,9,9,30,755,121,629,23,29,1010,71.74,120,5.800000000000001,0.181 +2013,9,9,10,30,801,136,785,23,30,1010,71.18,121.10000000000001,6,0.181 +2013,9,9,11,30,323,422,711,23,30,1010,67.78,119.80000000000001,6.1000000000000005,0.181 +2013,9,9,12,30,387,408,766,23,30,1010,68.11,117.2,6.4,0.181 +2013,9,9,13,30,173,447,601,23,29,1010,72.38,115.10000000000001,6.5,0.181 +2013,9,9,14,30,781,145,769,23,29,1010,72.26,113.7,6.6000000000000005,0.181 +2013,9,9,15,30,564,210,581,23,28,1010,76.56,113,6.4,0.181 +2013,9,9,16,30,0,91,91,23,27,1010,81.42,113,5.9,0.181 +2013,9,9,17,30,308,97,177,23,27,1010,87.03,114.2,5,0.181 +2013,9,9,18,30,17,10,11,23,26,1010,88.72,115.7,4.1000000000000005,0.181 +2013,9,9,19,30,0,0,0,24,26,1010,90.34,118.10000000000001,3.7,0.181 +2013,9,9,20,30,0,0,0,24,26,1010,91.51,121.5,3.4000000000000004,0.181 +2013,9,9,21,30,0,0,0,24,26,1010,91.93,125.2,3.2,0.181 +2013,9,9,22,30,0,0,0,24,26,1010,91.72,129,2.9000000000000004,0.181 +2013,9,9,23,30,0,0,0,24,26,1010,97.29,131.70000000000002,2.7,0.181 +2013,9,10,0,30,0,0,0,24,25,1010,97.47,132.20000000000002,2.5,0.181 +2013,9,10,1,30,0,0,0,24,25,1010,97.81,130.6,2.4000000000000004,0.181 +2013,9,10,2,30,0,0,0,24,25,1010,97.7,126.80000000000001,2.5,0.181 +2013,9,10,3,30,0,0,0,24,25,1010,97.28,122.30000000000001,2.7,0.181 +2013,9,10,4,30,0,0,0,24,25,1010,97.33,117.80000000000001,2.9000000000000004,0.181 +2013,9,10,5,30,0,0,0,24,25,1010,97.92,116,3.2,0.181 +2013,9,10,6,30,0,15,15,24,25,1010,98.93,115.30000000000001,3.6,0.181 +2013,9,10,7,30,262,98,170,25,27,1010,89.77,115.4,4.2,0.181 +2013,9,10,8,30,0,23,23,25,28,1010,84.05,116.7,4.7,0.181 +2013,9,10,9,30,0,65,65,24,29,1010,82.7,119.2,5,0.181 +2013,9,10,10,30,41,341,374,24,29,1010,78.14,120.2,5.300000000000001,0.181 +2013,9,10,11,30,25,340,363,24,30,1010,73.31,121.30000000000001,5.4,0.181 +2013,9,10,12,30,37,389,424,24,30,1010,72.47,120.80000000000001,5.5,0.181 +2013,9,10,13,30,484,352,781,24,30,1010,71.05,119.9,5.4,0.181 +2013,9,10,14,30,8,211,218,23,30,1010,69.72,118.30000000000001,5.300000000000001,0.181 +2013,9,10,15,30,75,288,338,23,29,1010,71.79,116.5,5.1000000000000005,0.181 +2013,9,10,16,30,0,127,127,23,29,1010,74.55,114.10000000000001,4.800000000000001,0.181 +2013,9,10,17,30,0,84,84,23,28,1010,79.62,110.80000000000001,3.9000000000000004,0.181 +2013,9,10,18,30,0,5,5,23,26,1010,87.72,106.80000000000001,3,0.181 +2013,9,10,19,30,0,0,0,24,26,1010,89.59,104,2.8000000000000003,0.181 +2013,9,10,20,30,0,0,0,24,26,1010,90.81,103.5,2.7,0.181 +2013,9,10,21,30,0,0,0,24,26,1010,91.73,104.80000000000001,2.5,0.181 +2013,9,10,22,30,0,0,0,24,25,1010,97.65,106.5,2.4000000000000004,0.181 +2013,9,10,23,30,0,0,0,24,25,1010,97.67,108.60000000000001,2.2,0.181 +2013,9,11,0,30,0,0,0,24,25,1010,97.54,110.4,2.1,0.181 +2013,9,11,1,30,0,0,0,24,25,1010,97.49000000000001,108.5,1.9000000000000001,0.181 +2013,9,11,2,30,0,0,0,24,25,1010,97.55,105.7,1.8,0.181 +2013,9,11,3,30,0,0,0,24,25,1010,97.42,101.9,1.7000000000000002,0.181 +2013,9,11,4,30,0,0,0,24,25,1010,97.12,96.2,1.6,0.181 +2013,9,11,5,30,0,0,0,24,25,1010,97.32000000000001,87.9,1.6,0.181 +2013,9,11,6,30,44,18,21,24,26,1010,98.60000000000001,80,1.9000000000000001,0.181 +2013,9,11,7,30,427,85,203,25,27,1010,91.3,77.80000000000001,2.7,0.181 +2013,9,11,8,30,623,117,421,25,28,1010,84.49,86.10000000000001,3.5,0.181 +2013,9,11,9,30,255,300,471,24,29,1010,77.56,92,4.1000000000000005,0.181 +2013,9,11,10,30,9,223,231,24,29,1010,76.17,95.10000000000001,4.3,0.181 +2013,9,11,11,30,39,379,414,24,30,1010,71.75,96.30000000000001,4.5,0.181 +2013,9,11,12,30,424,388,777,24,30,1010,71.8,95.4,4.6000000000000005,0.181 +2013,9,11,13,30,377,393,727,24,30,1010,71.63,93.10000000000001,4.7,0.181 +2013,9,11,14,30,273,372,588,24,30,1010,71.42,90.2,4.800000000000001,0.181 +2013,9,11,15,30,396,257,514,24,30,1010,71.07000000000001,87.5,5,0.181 +2013,9,11,16,30,528,134,379,24,29,1010,75.4,86.4,4.9,0.181 +2013,9,11,17,30,336,88,172,24,28,1010,81.41,86.80000000000001,4.2,0.181 +2013,9,11,18,30,0,7,7,24,27,1010,88.54,88.80000000000001,3.5,0.181 +2013,9,11,19,30,0,0,0,25,27,1010,89.59,93.5,3.4000000000000004,0.181 +2013,9,11,20,30,0,0,0,25,26,1010,95.26,99.9,3.2,0.181 +2013,9,11,21,30,0,0,0,25,26,1010,95.31,104,3,0.181 +2013,9,11,22,30,0,0,0,25,26,1010,95.17,107.30000000000001,2.7,0.181 +2013,9,11,23,30,0,0,0,25,26,1010,94.84,107.4,2.5,0.181 +2013,9,12,0,30,0,0,0,25,26,1010,94.39,104.2,2.3000000000000003,0.181 +2013,9,12,1,30,0,0,0,24,26,1010,99.43,100.10000000000001,2.2,0.181 +2013,9,12,2,30,0,0,0,24,25,1010,98.74000000000001,94.7,2.1,0.181 +2013,9,12,3,30,0,0,0,24,25,1010,98.26,88.7,2.1,0.181 +2013,9,12,4,30,0,0,0,24,25,1010,98.02,82.30000000000001,2,0.181 +2013,9,12,5,30,0,0,0,24,25,1010,97.77,75.8,2,0.181 +2013,9,12,6,30,0,18,18,24,26,1010,98.41,69.5,2.6,0.181 +2013,9,12,7,30,365,96,196,25,27,1010,89.46000000000001,64.8,3.5,0.181 +2013,9,12,8,30,577,133,414,24,28,1010,82.69,67.60000000000001,4.1000000000000005,0.181 +2013,9,12,9,30,230,304,457,24,29,1010,75.4,72.8,4.4,0.181 +2013,9,12,10,30,513,292,705,23,30,1010,69.61,74.2,4.5,0.181 +2013,9,12,11,30,772,183,870,23,31,1010,68.43,73.10000000000001,4.6000000000000005,0.181 +2013,9,12,12,30,807,169,908,23,31,1010,63.74,71.3,4.6000000000000005,0.181 +2013,9,12,13,30,809,159,872,23,31,1010,62.870000000000005,69.4,4.7,0.181 +2013,9,12,14,30,790,145,769,22,31,1010,62.02,68.5,4.800000000000001,0.181 +2013,9,12,15,30,682,156,596,22,30,1010,64.79,69.3,4.9,0.181 +2013,9,12,16,30,586,124,394,22,29,1010,68.27,71.10000000000001,4.7,0.181 +2013,9,12,17,30,391,80,176,22,28,1010,73.43,73.8,4,0.181 +2013,9,12,18,30,0,0,0,23,26,1010,85.74,77,3.2,0.181 +2013,9,12,19,30,0,0,0,23,26,1010,87.25,79.4,3,0.181 +2013,9,12,20,30,0,0,0,23,25,1010,93.79,79.5,2.8000000000000003,0.181 +2013,9,12,21,30,0,0,0,24,25,1010,94.61,79,2.6,0.181 +2013,9,12,22,30,0,0,0,24,25,1010,94.82000000000001,78,2.4000000000000004,0.181 +2013,9,12,23,30,0,0,0,24,25,1010,94.60000000000001,74.8,2.2,0.181 +2013,9,13,0,30,0,0,0,23,25,1010,94.13,70.4,2,0.181 +2013,9,13,1,30,0,0,0,23,25,1010,99.97,63.6,2,0.181 +2013,9,13,2,30,0,0,0,24,25,1010,100,55.6,2.1,0.181 +2013,9,13,3,30,0,0,0,24,24,1010,100,47,2.2,0.181 +2013,9,13,4,30,0,0,0,24,24,1010,100,40.400000000000006,2.4000000000000004,0.181 +2013,9,13,5,30,0,0,0,24,24,1010,100,36.4,2.6,0.181 +2013,9,13,6,30,29,18,19,24,25,1010,100,34.2,3.3000000000000003,0.181 +2013,9,13,7,30,225,99,160,24,26,1010,91.39,32.6,4.1000000000000005,0.181 +2013,9,13,8,30,133,208,272,24,28,1010,79.59,41.6,4.6000000000000005,0.181 +2013,9,13,9,30,262,298,472,23,29,1010,72.68,51.2,4.9,0.181 +2013,9,13,10,30,321,366,624,23,30,1010,67.1,56,5,0.181 +2013,9,13,11,30,287,428,683,22,31,1010,62.46,60.300000000000004,5.1000000000000005,0.181 +2013,9,13,12,30,487,371,816,22,31,1010,61.81,63.7,5.300000000000001,0.181 +2013,9,13,13,30,824,152,875,22,31,1000,61.08,65.8,5.4,0.181 +2013,9,13,14,30,805,138,771,22,31,1000,60.34,67.8,5.4,0.181 +2013,9,13,15,30,507,214,540,22,30,1000,63.09,70.8,5.4,0.181 +2013,9,13,16,30,632,103,391,22,29,1000,66.63,73.9,5.1000000000000005,0.181 +2013,9,13,17,30,456,69,179,22,28,1000,72.5,76.60000000000001,4.3,0.181 +2013,9,13,18,30,0,0,0,23,26,1000,85.21000000000001,78.7,3.7,0.183 +2013,9,13,19,30,0,0,0,23,26,1000,87.43,81.30000000000001,3.5,0.183 +2013,9,13,20,30,0,0,0,23,25,1000,93.83,83.80000000000001,3.5,0.183 +2013,9,13,21,30,0,0,0,24,25,1000,94.38,86.10000000000001,3.3000000000000003,0.183 +2013,9,13,22,30,0,0,0,24,25,1000,94.37,88.7,3.2,0.183 +2013,9,13,23,30,0,0,0,24,25,1000,94.31,92,2.9000000000000004,0.183 +2013,9,14,0,30,0,0,0,24,25,1000,94.52,93.10000000000001,2.5,0.183 +2013,9,14,1,30,0,0,0,24,25,1000,94.57000000000001,91.60000000000001,2.3000000000000003,0.183 +2013,9,14,2,30,0,0,0,24,25,1000,94.74,85.80000000000001,2.1,0.183 +2013,9,14,3,30,0,0,0,24,25,1000,94.72,78.10000000000001,2.1,0.183 +2013,9,14,4,30,0,0,0,24,25,1000,94.57000000000001,71.2,2.3000000000000003,0.183 +2013,9,14,5,30,0,0,0,24,25,1000,94.54,65.4,2.7,0.183 +2013,9,14,6,30,28,17,19,24,25,1000,94.86,61.5,3.3000000000000003,0.183 +2013,9,14,7,30,415,79,191,24,27,1010,90.87,58.6,4.1000000000000005,0.183 +2013,9,14,8,30,258,197,322,24,28,1010,80.88,59.300000000000004,4.7,0.183 +2013,9,14,9,30,281,290,476,23,29,1010,74.44,67.10000000000001,5.2,0.183 +2013,9,14,10,30,96,380,458,23,30,1010,69.17,73.10000000000001,5.5,0.183 +2013,9,14,11,30,564,291,791,23,31,1010,64.98,77.7,5.6000000000000005,0.183 +2013,9,14,12,30,422,386,770,23,31,1010,64.77,81.10000000000001,5.7,0.183 +2013,9,14,13,30,490,344,773,23,31,1000,64.73,84,5.6000000000000005,0.183 +2013,9,14,14,30,809,134,766,23,31,1000,68.58,86.80000000000001,5.4,0.183 +2013,9,14,15,30,739,127,599,23,30,1000,68.46000000000001,88.9,5.300000000000001,0.183 +2013,9,14,16,30,573,117,376,23,29,1000,72.67,87.30000000000001,5.1000000000000005,0.183 +2013,9,14,17,30,74,88,106,23,28,1000,78.16,85.4,4.5,0.183 +2013,9,14,18,30,0,0,0,24,27,1000,84.81,84.80000000000001,3.8000000000000003,0.183 +2013,9,14,19,30,0,0,0,24,26,1010,91.41,83.2,3.5,0.183 +2013,9,14,20,30,0,0,0,24,26,1010,91.68,81.4,3.5,0.183 +2013,9,14,21,30,0,0,0,24,26,1010,91.59,81.5,3.6,0.183 +2013,9,14,22,30,0,0,0,24,26,1010,91.5,81.5,3.8000000000000003,0.183 +2013,9,14,23,30,0,0,0,24,26,1010,91.07000000000001,81.7,3.9000000000000004,0.183 +2013,9,15,0,30,0,0,0,24,26,1010,90.76,81.9,4,0.183 +2013,9,15,1,30,0,0,0,24,26,1010,90.95,82,3.8000000000000003,0.183 +2013,9,15,2,30,0,0,0,24,26,1010,91.54,82.7,3.6,0.183 +2013,9,15,3,30,0,0,0,24,26,1010,92.15,84.30000000000001,3.5,0.183 +2013,9,15,4,30,0,0,0,24,26,1010,92.43,84.80000000000001,3.3000000000000003,0.183 +2013,9,15,5,30,0,0,0,24,26,1010,92.84,83.30000000000001,3.3000000000000003,0.183 +2013,9,15,6,30,0,2,2,24,26,1010,93.44,81.2,3.7,0.183 +2013,9,15,7,30,22,97,103,25,27,1010,89.98,79.10000000000001,4.6000000000000005,0.183 +2013,9,15,8,30,411,168,366,25,28,1010,84.82000000000001,80.9,5.6000000000000005,0.183 +2013,9,15,9,30,380,268,520,24,29,1010,77.89,84.80000000000001,6.300000000000001,0.183 +2013,9,15,10,30,13,254,265,24,30,1010,72.56,85.60000000000001,6.6000000000000005,0.183 +2013,9,15,11,30,284,426,677,24,30,1010,72.53,86.2,6.7,0.183 +2013,9,15,12,30,293,439,706,24,30,1010,72.93,87.9,6.6000000000000005,0.183 +2013,9,15,13,30,268,424,657,24,30,1010,73.17,90.30000000000001,6.5,0.183 +2013,9,15,14,30,620,240,723,24,30,1010,77.68,92.7,6.2,0.183 +2013,9,15,15,30,132,290,374,24,29,1010,77.9,93.10000000000001,5.800000000000001,0.183 +2013,9,15,16,30,95,187,230,24,28,1010,83.4,90.30000000000001,5.1000000000000005,0.183 +2013,9,15,17,30,0,61,61,25,27,1010,90.13,86,4.5,0.183 +2013,9,15,18,30,0,0,0,25,27,1010,91.19,83.7,4.2,0.183 +2013,9,15,19,30,0,0,0,25,27,1010,91.59,83.60000000000001,4.2,0.183 +2013,9,15,20,30,0,0,0,25,27,1010,97.54,84.2,4.3,0.183 +2013,9,15,21,30,0,0,0,25,26,1010,97.89,83.4,4.2,0.183 +2013,9,15,22,30,0,0,0,25,26,1010,97.98,82.5,4.3,0.183 +2013,9,15,23,30,0,0,0,25,26,1010,97.19,83.30000000000001,4.5,0.183 +2013,9,16,0,30,0,0,0,25,26,1010,96.44,83.80000000000001,4.4,0.183 +2013,9,16,1,30,0,0,0,25,26,1010,95.81,83.4,4.2,0.183 +2013,9,16,2,30,0,0,0,25,26,1010,95.47,82.2,4.1000000000000005,0.183 +2013,9,16,3,30,0,0,0,25,26,1010,95.37,83.30000000000001,4.1000000000000005,0.183 +2013,9,16,4,30,0,0,0,25,26,1010,95.02,87.9,4,0.183 +2013,9,16,5,30,0,0,0,25,26,1010,95.02,92.80000000000001,3.9000000000000004,0.183 +2013,9,16,6,30,0,6,6,25,26,1010,94.81,94.80000000000001,4,0.183 +2013,9,16,7,30,0,54,54,25,26,1010,95.84,95.60000000000001,4.1000000000000005,0.183 +2013,9,16,8,30,0,8,8,25,27,1010,91.84,95.30000000000001,4.6000000000000005,0.183 +2013,9,16,9,30,0,129,129,25,28,1010,85.62,96.80000000000001,5.300000000000001,0.183 +2013,9,16,10,30,11,240,250,24,29,1010,83.57000000000001,99.4,5.800000000000001,0.183 +2013,9,16,11,30,0,106,106,24,29,1010,78.83,100.10000000000001,5.9,0.183 +2013,9,16,12,30,114,450,553,24,29,1010,78.97,99.7,5.9,0.183 +2013,9,16,13,30,200,433,607,24,29,1010,78.8,98.60000000000001,6,0.183 +2013,9,16,14,30,110,370,456,24,29,1010,78.58,97.2,6,0.183 +2013,9,16,15,30,45,260,289,24,29,1010,78.78,94.7,5.800000000000001,0.183 +2013,9,16,16,30,19,161,170,25,28,1010,84.8,93.7,5.1000000000000005,0.183 +2013,9,16,17,30,1,77,77,25,27,1010,91.94,93.60000000000001,4.4,0.183 +2013,9,16,18,30,0,0,0,25,27,1010,98.33,93,4.2,0.183 +2013,9,16,19,30,0,0,0,25,26,1010,98.12,93.60000000000001,4.3,0.183 +2013,9,16,20,30,0,0,0,25,26,1010,98.44,95.2,4,0.183 +2013,9,16,21,30,0,0,0,25,26,1010,98.53,99.30000000000001,3.7,0.183 +2013,9,16,22,30,0,0,0,25,26,1010,98.08,103.80000000000001,3.5,0.183 +2013,9,16,23,30,0,0,0,25,26,1010,97.45,106.2,3.2,0.183 +2013,9,17,0,30,0,0,0,25,26,1010,96.85000000000001,108.60000000000001,2.9000000000000004,0.183 +2013,9,17,1,30,0,0,0,25,26,1010,96.39,109.4,2.7,0.183 +2013,9,17,2,30,0,0,0,25,26,1010,95.89,108.9,2.6,0.183 +2013,9,17,3,30,0,0,0,25,26,1010,100,107.9,2.4000000000000004,0.183 +2013,9,17,4,30,0,0,0,25,25,1010,100,105.7,2.3000000000000003,0.183 +2013,9,17,5,30,0,0,0,25,25,1010,100,103.5,2.3000000000000003,0.183 +2013,9,17,6,30,0,14,14,25,26,1010,95.42,101,2.5,0.183 +2013,9,17,7,30,265,97,168,25,27,1010,93.01,98.9,3.2,0.183 +2013,9,17,8,30,204,201,298,25,28,1010,88.11,98.10000000000001,3.9000000000000004,0.183 +2013,9,17,9,30,358,272,508,25,29,1010,86.2,101.4,4.4,0.183 +2013,9,17,10,30,401,334,653,25,29,1010,79.38,103.2,4.800000000000001,0.183 +2013,9,17,11,30,527,335,797,24,30,1010,73.56,102,4.9,0.183 +2013,9,17,12,30,385,400,747,24,30,1010,72.71000000000001,100.5,5,0.183 +2013,9,17,13,30,254,423,643,24,30,1010,72.43,98.5,5.1000000000000005,0.183 +2013,9,17,14,30,248,365,557,24,29,1010,76.65,96.60000000000001,5.1000000000000005,0.183 +2013,9,17,15,30,432,236,506,24,29,1010,76.85000000000001,95.9,5.1000000000000005,0.183 +2013,9,17,16,30,218,180,276,24,28,1010,82.38,96.5,4.800000000000001,0.183 +2013,9,17,17,30,0,70,70,24,27,1010,88.55,97.2,4.2,0.183 +2013,9,17,18,30,0,0,0,25,27,1010,94.72,98.30000000000001,3.8000000000000003,0.183 +2013,9,17,19,30,0,0,0,25,26,1010,95.05,100.4,3.5,0.183 +2013,9,17,20,30,0,0,0,25,26,1010,95.38,101.9,3.2,0.183 +2013,9,17,21,30,0,0,0,25,26,1010,95.42,103.30000000000001,2.9000000000000004,0.183 +2013,9,17,22,30,0,0,0,25,26,1010,95.11,104.2,2.7,0.183 +2013,9,17,23,30,0,0,0,25,26,1010,94.55,104.30000000000001,2.5,0.183 +2013,9,18,0,30,0,0,0,24,26,1010,99.77,103.60000000000001,2.4000000000000004,0.183 +2013,9,18,1,30,0,0,0,24,25,1010,99.32000000000001,101.80000000000001,2.3000000000000003,0.183 +2013,9,18,2,30,0,0,0,24,25,1010,98.85000000000001,98.4,2.3000000000000003,0.183 +2013,9,18,3,30,0,0,0,24,25,1010,98.32000000000001,95.4,2.2,0.183 +2013,9,18,4,30,0,0,0,24,25,1010,97.91,93.5,2.2,0.183 +2013,9,18,5,30,0,0,0,24,25,1010,97.64,91.7,2.3000000000000003,0.183 +2013,9,18,6,30,0,11,11,24,26,1010,97.99000000000001,90.5,2.5,0.183 +2013,9,18,7,30,156,102,143,25,27,1010,90.03,90.9,3.1,0.183 +2013,9,18,8,30,103,202,251,25,28,1010,84.74,94.80000000000001,3.8000000000000003,0.183 +2013,9,18,9,30,256,294,462,24,29,1010,77.19,99.9,4.3,0.183 +2013,9,18,10,30,466,303,672,24,30,1010,71.89,103,4.5,0.183 +2013,9,18,11,30,284,421,670,24,30,1010,71.83,104.9,4.6000000000000005,0.183 +2013,9,18,12,30,35,375,408,24,30,1010,71.95,105.5,4.6000000000000005,0.183 +2013,9,18,13,30,27,338,362,24,30,1010,72.02,104.60000000000001,4.6000000000000005,0.183 +2013,9,18,14,30,314,349,590,24,30,1010,72.03,102.60000000000001,4.6000000000000005,0.183 +2013,9,18,15,30,709,131,572,24,29,1010,76.09,101.2,4.6000000000000005,0.183 +2013,9,18,16,30,193,180,264,24,29,1010,80.62,100.2,4.4,0.183 +2013,9,18,17,30,409,61,151,24,28,1010,86.84,99.80000000000001,3.7,0.183 +2013,9,18,18,30,0,0,0,25,26,1010,94.8,100.2,3.1,0.183 +2013,9,18,19,30,0,0,0,25,26,1010,96.11,101.5,2.9000000000000004,0.183 +2013,9,18,20,30,0,0,0,25,26,1010,96.9,103.60000000000001,2.8000000000000003,0.183 +2013,9,18,21,30,0,0,0,25,26,1010,97.09,107,2.6,0.183 +2013,9,18,22,30,0,0,0,25,26,1010,96.74000000000001,110.80000000000001,2.4000000000000004,0.183 +2013,9,18,23,30,0,0,0,25,26,1010,96.4,113.80000000000001,2.3000000000000003,0.183 +2013,9,19,0,30,0,0,0,25,26,1010,95.78,115.7,2.2,0.183 +2013,9,19,1,30,0,0,0,25,26,1010,100,115.5,2.1,0.183 +2013,9,19,2,30,0,0,0,24,25,1010,99.53,114.4,2,0.183 +2013,9,19,3,30,0,0,0,24,25,1010,98.79,112.9,1.8,0.183 +2013,9,19,4,30,0,0,0,24,25,1010,98.4,110.4,1.8,0.183 +2013,9,19,5,30,0,0,0,24,25,1010,98.22,107.2,1.8,0.183 +2013,9,19,6,30,51,14,16,24,26,1010,93.31,104,2.1,0.183 +2013,9,19,7,30,500,67,198,25,27,1010,90.88,101.2,2.7,0.183 +2013,9,19,8,30,686,93,418,24,28,1010,83.04,102.9,3.1,0.183 +2013,9,19,9,30,778,109,616,24,29,1010,76.78,102,3.4000000000000004,0.183 +2013,9,19,10,30,823,121,770,24,30,1010,72.63,99.5,3.6,0.183 +2013,9,19,11,30,836,134,862,24,31,1010,68.65,99.10000000000001,3.9000000000000004,0.183 +2013,9,19,12,30,332,422,719,24,31,1010,72.96000000000001,101.60000000000001,4.1000000000000005,0.183 +2013,9,19,13,30,506,331,765,24,30,1000,73.15,104.4,4.3,0.183 +2013,9,19,14,30,43,323,356,24,30,1000,73.28,107.10000000000001,4.6000000000000005,0.183 +2013,9,19,15,30,242,275,425,24,29,1000,78.2,109.60000000000001,4.7,0.183 +2013,9,19,16,30,608,101,363,25,28,1000,84,112,4.6000000000000005,0.183 +2013,9,19,17,30,379,66,147,25,27,1000,90.25,113.80000000000001,4,0.183 +2013,9,19,18,30,0,0,0,25,27,1000,91.34,114.7,3.4000000000000004,0.183 +2013,9,19,19,30,0,0,0,25,27,1000,91.75,115,3.2,0.183 +2013,9,19,20,30,0,0,0,25,27,1000,97.47,115.80000000000001,3.2,0.183 +2013,9,19,21,30,0,0,0,25,27,1000,97.69,119.2,3.4000000000000004,0.183 +2013,9,19,22,30,0,0,0,25,26,1000,98.04,126.10000000000001,3.4000000000000004,0.183 +2013,9,19,23,30,0,0,0,25,26,1000,98.78,134.8,3.3000000000000003,0.183 +2013,9,20,0,30,0,0,0,25,26,1000,99.53,143.1,3.4000000000000004,0.183 +2013,9,20,1,30,0,0,0,25,26,1000,99.91,149.3,3.5,0.183 +2013,9,20,2,30,0,0,0,26,26,1000,100,154.3,3.6,0.183 +2013,9,20,3,30,0,0,0,26,26,1000,100,159.20000000000002,3.4000000000000004,0.183 +2013,9,20,4,30,0,0,0,26,26,1000,100,161.8,3,0.183 +2013,9,20,5,30,0,0,0,26,26,1000,100,162,2.9000000000000004,0.183 +2013,9,20,6,30,0,9,9,26,26,1000,100,160.60000000000002,3,0.183 +2013,9,20,7,30,174,97,143,26,27,1000,96.56,158.3,3.5,0.183 +2013,9,20,8,30,344,178,341,26,28,1000,91.58,157.3,4,0.183 +2013,9,20,9,30,0,157,157,26,29,1000,84.71000000000001,156.20000000000002,4.4,0.183 +2013,9,20,10,30,231,378,560,25,30,1000,78.62,156.70000000000002,4.4,0.183 +2013,9,20,11,30,199,435,608,25,30,1000,78.4,155.5,4.2,0.183 +2013,9,20,12,30,395,391,744,25,31,1000,78.89,151.9,4,0.183 +2013,9,20,13,30,71,401,462,26,30,1000,79.84,146.4,3.9000000000000004,0.183 +2013,9,20,14,30,5,189,193,26,30,1000,80.09,141.4,3.8000000000000003,0.183 +2013,9,20,15,30,32,241,261,26,29,1000,84.75,137.3,3.6,0.183 +2013,9,20,16,30,276,167,285,26,28,1000,90.46000000000001,134.1,3.3000000000000003,0.183 +2013,9,20,17,30,302,67,131,26,27,1000,97.95,135.20000000000002,2.8000000000000003,0.183 +2013,9,20,18,30,0,0,0,26,27,1000,98.68,140,2.4000000000000004,0.183 +2013,9,20,19,30,0,0,0,26,27,1000,100,147,2.3000000000000003,0.183 +2013,9,20,20,30,0,0,0,26,26,1000,100,153.8,2,0.183 +2013,9,20,21,30,0,0,0,26,26,1000,100,159.10000000000002,1.7000000000000002,0.183 +2013,9,20,22,30,0,0,0,26,26,1000,100,160.9,1.3,0.183 +2013,9,20,23,30,0,0,0,26,26,1000,100,159.20000000000002,0.9,0.183 +2013,9,21,0,30,0,0,0,26,26,1000,100,144.8,0.7000000000000001,0.183 +2013,9,21,1,30,0,0,0,25,25,1000,100,43.400000000000006,1.2000000000000002,0.183 +2013,9,21,2,30,0,0,0,24,24,1000,100,18.400000000000002,2.6,0.183 +2013,9,21,3,30,0,0,0,23,23,1000,100,13.100000000000001,4.5,0.183 +2013,9,21,4,30,0,0,0,22,22,1000,100,6.5,6.2,0.183 +2013,9,21,5,30,0,0,0,21,22,1000,100,6.9,7,0.183 +2013,9,21,6,30,0,7,7,21,22,1000,100,9.8,7.1000000000000005,0.183 +2013,9,21,7,30,0,31,31,20,22,1000,93.83,10.5,7.2,0.183 +2013,9,21,8,30,0,69,69,20,23,1000,87.75,10.700000000000001,7.300000000000001,0.183 +2013,9,21,9,30,0,142,142,20,24,1000,81.97,11.8,7.4,0.183 +2013,9,21,10,30,112,377,465,20,25,1000,81.99,11.3,7.4,0.183 +2013,9,21,11,30,0,133,133,20,25,1000,77.05,11.100000000000001,7.5,0.183 +2013,9,21,12,30,0,123,123,20,26,1000,72.05,12.3,7.5,0.183 +2013,9,21,13,30,0,96,96,20,26,1000,71.38,15.100000000000001,7.4,0.183 +2013,9,21,14,30,3,175,178,20,26,1000,70.4,18,7.1000000000000005,0.183 +2013,9,21,15,30,3,180,182,19,26,1000,69.27,20.3,6.800000000000001,0.183 +2013,9,21,16,30,92,175,214,19,25,1000,72.41,22.200000000000003,6.300000000000001,0.183 +2013,9,21,17,30,454,55,148,19,24,1000,76.69,23.8,5.300000000000001,0.183 +2013,9,21,18,30,0,0,0,19,23,1000,83.2,25,4.1000000000000005,0.171 +2013,9,21,19,30,0,0,0,20,23,1000,84.46000000000001,24.900000000000002,3.3000000000000003,0.171 +2013,9,21,20,30,0,0,0,20,22,1000,90.7,22.1,3,0.171 +2013,9,21,21,30,0,0,0,20,22,1000,89.85000000000001,18.2,3.1,0.171 +2013,9,21,22,30,0,0,0,19,22,1000,88.05,14.600000000000001,3.4000000000000004,0.171 +2013,9,21,23,30,0,0,0,19,21,1000,91.07000000000001,11.700000000000001,3.8000000000000003,0.171 +2013,9,22,0,30,0,0,0,18,20,1000,93.24,8.6,4.3,0.171 +2013,9,22,1,30,0,0,0,18,20,1000,89.19,5.7,4.6000000000000005,0.171 +2013,9,22,2,30,0,0,0,17,19,1000,91.05,4.1000000000000005,4.6000000000000005,0.171 +2013,9,22,3,30,0,0,0,17,19,1000,88.83,3.1,4.3,0.171 +2013,9,22,4,30,0,0,0,17,18,1000,94.04,358.40000000000003,4.1000000000000005,0.171 +2013,9,22,5,30,0,0,0,17,18,1000,94.36,353.8,4.1000000000000005,0.171 +2013,9,22,6,30,123,12,16,17,18,1000,95.01,350.40000000000003,4.4,0.171 +2013,9,22,7,30,595,57,210,17,20,1000,85.81,349.3,4.7,0.171 +2013,9,22,8,30,775,78,440,17,23,1000,73.34,356,5.1000000000000005,0.171 +2013,9,22,9,30,866,90,650,18,26,1000,61.71,6.800000000000001,5.300000000000001,0.171 +2013,9,22,10,30,917,97,813,17,27,1000,57.54,14.4,5.4,0.171 +2013,9,22,11,30,944,100,915,17,28,1000,53.9,15.5,5.4,0.171 +2013,9,22,12,30,942,108,942,17,29,1000,52.730000000000004,17.5,5.300000000000001,0.171 +2013,9,22,13,30,936,104,897,16,29,1000,48.35,19.900000000000002,5,0.171 +2013,9,22,14,30,913,97,784,16,29,1000,47.12,20.6,4.6000000000000005,0.171 +2013,9,22,15,30,859,89,609,16,28,1000,48.96,19.1,4.1000000000000005,0.171 +2013,9,22,16,30,765,73,392,16,27,1000,52.160000000000004,17.7,3.2,0.171 +2013,9,22,17,30,553,48,159,18,25,1000,65.61,21.200000000000003,2.4000000000000004,0.171 +2013,9,22,18,30,0,0,0,19,23,1000,79.12,30,2.1,0.171 +2013,9,22,19,30,0,0,0,18,22,1000,80.66,38.300000000000004,2.1,0.171 +2013,9,22,20,30,0,0,0,18,22,1000,80.46000000000001,44.400000000000006,2.1,0.171 +2013,9,22,21,30,0,0,0,18,21,1000,85.76,45.6,2,0.171 +2013,9,22,22,30,0,0,0,18,21,1000,86.04,41.800000000000004,1.8,0.171 +2013,9,22,23,30,0,0,0,18,21,1000,86.21000000000001,34.800000000000004,1.8,0.171 +2013,9,23,0,30,0,0,0,18,20,1000,92.04,24.1,1.8,0.171 +2013,9,23,1,30,0,0,0,18,20,1000,92.82000000000001,10.200000000000001,2,0.171 +2013,9,23,2,30,0,0,0,19,19,1000,100,357.1,2.2,0.171 +2013,9,23,3,30,0,0,0,19,19,1000,100,351.5,2.3000000000000003,0.171 +2013,9,23,4,30,0,0,0,18,18,1000,100,350.90000000000003,2.5,0.171 +2013,9,23,5,30,0,0,0,18,18,1000,100,351.1,2.6,0.171 +2013,9,23,6,30,164,12,16,19,19,1000,100,350.8,3.1,0.171 +2013,9,23,7,30,647,50,215,19,22,1000,90.09,349.70000000000005,3.6,0.171 +2013,9,23,8,30,144,200,267,18,24,1000,73.12,352.8,3.7,0.171 +2013,9,23,9,30,893,78,654,18,26,1000,62.910000000000004,353.6,3.9000000000000004,0.171 +2013,9,23,10,30,934,86,813,18,28,1000,54.980000000000004,351.90000000000003,4,0.171 +2013,9,23,11,30,953,91,910,17,29,1000,50.09,350.8,3.9000000000000004,0.171 +2013,9,23,12,30,940,104,933,16,30,1000,45.45,351,3.6,0.171 +2013,9,23,13,30,929,103,887,16,31,1000,42.14,352.6,3.2,0.171 +2013,9,23,14,30,899,98,771,16,31,1000,42.13,356.40000000000003,2.9000000000000004,0.171 +2013,9,23,15,30,339,248,453,16,30,1000,45,4.5,2.7,0.171 +2013,9,23,16,30,730,76,378,17,29,1000,49.94,17.400000000000002,2.5,0.171 +2013,9,23,17,30,496,51,148,19,26,1000,66.61,35.7,2.5,0.171 +2013,9,23,18,30,0,0,0,20,24,1000,79.44,45.5,2.5,0.171 +2013,9,23,19,30,0,0,0,20,23,1000,84.41,49.7,2.5,0.171 +2013,9,23,20,30,0,0,0,20,23,1000,92.21000000000001,51,2.2,0.171 +2013,9,23,21,30,0,0,0,21,23,1000,94.08,47.900000000000006,1.7000000000000002,0.171 +2013,9,23,22,30,0,0,0,21,23,1000,94.89,38.400000000000006,1.3,0.171 +2013,9,23,23,30,0,0,0,21,23,1000,89.19,18.2,1.1,0.171 +2013,9,24,0,30,0,0,0,21,23,1000,88.77,346.1,1,0.171 +2013,9,24,1,30,0,0,0,20,22,1000,93.48,323.20000000000005,1.2000000000000002,0.171 +2013,9,24,2,30,0,0,0,20,22,1000,92.67,313.6,1.5,0.171 +2013,9,24,3,30,0,0,0,20,22,1000,91.95,308.6,1.6,0.171 +2013,9,24,4,30,0,0,0,20,22,1000,91.11,307.70000000000005,1.8,0.171 +2013,9,24,5,30,0,0,0,20,22,1000,95.38,311.40000000000003,2,0.171 +2013,9,24,6,30,55,11,13,20,22,1000,88.74,316.70000000000005,2.5,0.171 +2013,9,24,7,30,509,66,195,19,24,1010,77.38,321.20000000000005,2.7,0.171 +2013,9,24,8,30,709,90,418,20,26,1010,71,325,2.6,0.171 +2013,9,24,9,30,809,103,622,21,29,1010,64.35,336.1,2.5,0.171 +2013,9,24,10,30,862,111,780,22,30,1010,63.83,340.70000000000005,2.2,0.171 +2013,9,24,11,30,890,115,878,22,31,1010,61.84,345.6,2,0.171 +2013,9,24,12,30,894,119,905,22,32,1000,58.120000000000005,351.8,2,0.171 +2013,9,24,13,30,887,116,862,22,32,1000,56.620000000000005,358.20000000000005,2,0.171 +2013,9,24,14,30,860,110,750,21,33,1000,54.61,5.6000000000000005,2.1,0.171 +2013,9,24,15,30,797,102,578,21,32,1000,52.7,16.900000000000002,2.2,0.171 +2013,9,24,16,30,690,84,366,21,31,1000,55.370000000000005,31.6,2,0.171 +2013,9,24,17,30,460,53,142,21,29,1000,64.45,49.7,1.6,0.171 +2013,9,24,18,30,0,0,0,22,26,1000,82.99,76.10000000000001,1.5,0.171 +2013,9,24,19,30,0,0,0,22,25,1000,83.78,103.7,1.6,0.171 +2013,9,24,20,30,0,0,0,22,25,1000,83.69,130.1,1.7000000000000002,0.171 +2013,9,24,21,30,0,0,0,22,24,1010,89.46000000000001,153.3,1.8,0.171 +2013,9,24,22,30,0,0,0,22,24,1010,96.45,173.60000000000002,2,0.171 +2013,9,24,23,30,0,0,0,22,23,1010,99.11,191.4,2.2,0.171 +2013,9,25,0,30,0,0,0,22,23,1010,100,206.60000000000002,2.3000000000000003,0.171 +2013,9,25,1,30,0,0,0,22,22,1010,100,219.60000000000002,2.4000000000000004,0.171 +2013,9,25,2,30,0,0,0,22,22,1000,100,230.70000000000002,2.4000000000000004,0.171 +2013,9,25,3,30,0,0,0,21,21,1000,100,239.3,2.3000000000000003,0.171 +2013,9,25,4,30,0,0,0,21,21,1000,100,247.3,2,0.171 +2013,9,25,5,30,0,0,0,21,21,1010,100,257.40000000000003,1.7000000000000002,0.171 +2013,9,25,6,30,76,11,13,22,22,1010,100,268.1,1.8,0.171 +2013,9,25,7,30,555,62,202,22,24,1010,90.66,280,1.7000000000000002,0.171 +2013,9,25,8,30,747,86,430,22,27,1010,78.29,296.3,0.9,0.171 +2013,9,25,9,30,840,99,637,21,30,1010,60.53,16.900000000000002,0.8,0.171 +2013,9,25,10,30,888,108,795,20,31,1010,53.120000000000005,70.4,1.3,0.171 +2013,9,25,11,30,911,114,892,20,32,1010,49.370000000000005,75.5,1.6,0.171 +2013,9,25,12,30,897,128,913,19,32,1000,48.49,80.60000000000001,1.9000000000000001,0.171 +2013,9,25,13,30,885,126,866,19,32,1000,47.660000000000004,85.60000000000001,2.3000000000000003,0.171 +2013,9,25,14,30,852,120,751,19,32,1000,47.14,90.10000000000001,2.7,0.171 +2013,9,25,15,30,754,124,571,19,31,1000,49.02,94.5,3.2,0.171 +2013,9,25,16,30,637,100,358,19,30,1000,52.410000000000004,99.60000000000001,3.5,0.171 +2013,9,25,17,30,399,60,135,21,27,1000,70.34,106.4,3.2,0.171 +2013,9,25,18,30,0,0,0,22,25,1000,86.24,115.30000000000001,2.9000000000000004,0.171 +2013,9,25,19,30,0,0,0,23,25,1000,95.81,125.10000000000001,2.8000000000000003,0.171 +2013,9,25,20,30,0,0,0,23,24,1000,99.26,133.6,2.6,0.171 +2013,9,25,21,30,0,0,0,24,24,1000,100,141.70000000000002,2.5,0.171 +2013,9,25,22,30,0,0,0,23,23,1000,100,149.8,2.3000000000000003,0.171 +2013,9,25,23,30,0,0,0,23,23,1000,100,157.8,2.2,0.171 +2013,9,26,0,30,0,0,0,23,23,1000,100,165.5,2,0.171 +2013,9,26,1,30,0,0,0,23,23,1000,100,172.4,1.8,0.171 +2013,9,26,2,30,0,0,0,22,23,1000,100,177.4,1.7000000000000002,0.171 +2013,9,26,3,30,0,0,0,22,23,1000,100,181.9,1.5,0.171 +2013,9,26,4,30,0,0,0,22,23,1000,100,185.10000000000002,1.4000000000000001,0.171 +2013,9,26,5,30,0,0,0,23,23,1000,100,185.5,1.3,0.171 +2013,9,26,6,30,41,10,11,24,24,1000,100,185.4,1.4000000000000001,0.171 +2013,9,26,7,30,528,63,195,24,26,1010,93.23,185.20000000000002,2,0.171 +2013,9,26,8,30,736,82,420,24,28,1010,80.58,177.4,2.4000000000000004,0.171 +2013,9,26,9,30,827,94,621,23,29,1010,74.45,166.20000000000002,2.6,0.171 +2013,9,26,10,30,356,328,603,23,30,1010,69.4,155.70000000000002,2.9000000000000004,0.171 +2013,9,26,11,30,360,368,675,23,31,1010,65.4,149.20000000000002,3.2,0.171 +2013,9,26,12,30,882,119,889,23,32,1000,61.84,143.4,3.6,0.171 +2013,9,26,13,30,861,122,839,23,32,1000,61.04,138.8,3.9000000000000004,0.171 +2013,9,26,14,30,819,120,723,23,31,1000,63.54,134.20000000000002,4.1000000000000005,0.171 +2013,9,26,15,30,750,110,552,23,30,1000,66.39,129.1,4.4,0.171 +2013,9,26,16,30,626,91,342,23,29,1000,70.29,123.60000000000001,4.6000000000000005,0.171 +2013,9,26,17,30,381,55,125,23,28,1000,76.45,119.5,4.5,0.171 +2013,9,26,18,30,0,0,0,23,27,1000,88.33,118.5,4,0.171 +2013,9,26,19,30,0,0,0,24,26,1000,90.03,121.2,3.7,0.171 +2013,9,26,20,30,0,0,0,24,26,1010,91.57000000000001,127.4,3.5,0.171 +2013,9,26,21,30,0,0,0,24,26,1010,92.76,136.20000000000002,3.4000000000000004,0.171 +2013,9,26,22,30,0,0,0,24,26,1010,93.69,145.4,3.3000000000000003,0.171 +2013,9,26,23,30,0,0,0,25,26,1010,94.4,152.4,3.4000000000000004,0.171 +2013,9,27,0,30,0,0,0,25,26,1010,94.33,156.10000000000002,3.5,0.171 +2013,9,27,1,30,0,0,0,24,26,1000,93.58,157.8,3.5,0.171 +2013,9,27,2,30,0,0,0,24,26,1000,92.33,159.10000000000002,3.5,0.171 +2013,9,27,3,30,0,0,0,24,26,1000,91.95,159,3.2,0.171 +2013,9,27,4,30,0,0,0,24,26,1000,98.28,157.10000000000002,2.9000000000000004,0.171 +2013,9,27,5,30,0,0,0,24,26,1000,99.2,153.1,2.8000000000000003,0.171 +2013,9,27,6,30,23,9,10,25,26,1010,94.65,149,3.2,0.171 +2013,9,27,7,30,445,71,181,25,28,1010,86.74,146,4.1000000000000005,0.171 +2013,9,27,8,30,640,103,396,25,29,1010,81.65,147,4.800000000000001,0.171 +2013,9,27,9,30,727,128,590,25,30,1010,76.4,148.8,5.1000000000000005,0.171 +2013,9,27,10,30,774,145,740,25,31,1010,72.22,149.20000000000002,5.2,0.171 +2013,9,27,11,30,792,158,829,25,31,1010,72.12,148.9,5.300000000000001,0.171 +2013,9,27,12,30,740,198,840,25,32,1000,67.64,147.8,5.300000000000001,0.171 +2013,9,27,13,30,714,200,793,25,31,1000,70.77,145.5,5.300000000000001,0.171 +2013,9,27,14,30,668,191,681,24,31,1000,70.41,142.70000000000002,5.4,0.171 +2013,9,27,15,30,604,164,517,24,30,1000,74.37,139.8,5.5,0.171 +2013,9,27,16,30,468,130,315,25,29,1000,79.23,136.20000000000002,5.300000000000001,0.171 +2013,9,27,17,30,210,71,109,25,28,1000,85.54,132.6,4.9,0.171 +2013,9,27,18,30,0,0,0,25,28,1000,92.81,128.4,4.6000000000000005,0.171 +2013,9,27,19,30,0,0,0,25,27,1000,93.69,128.20000000000002,4.7,0.171 +2013,9,27,20,30,0,0,0,25,27,1010,94.14,130.1,4.7,0.171 +2013,9,27,21,30,0,0,0,25,27,1010,93.77,133.6,4.800000000000001,0.171 +2013,9,27,22,30,0,0,0,25,27,1010,93.01,138.5,4.9,0.171 +2013,9,27,23,30,0,0,0,25,27,1010,92.72,142.8,5,0.171 +2013,9,28,0,30,0,0,0,25,27,1010,92.72,146.5,5,0.171 +2013,9,28,1,30,0,0,0,25,27,1010,92.79,149.6,4.9,0.171 +2013,9,28,2,30,0,0,0,25,27,1010,98.4,152.3,4.7,0.171 +2013,9,28,3,30,0,0,0,25,26,1010,98.72,153.70000000000002,4.4,0.171 +2013,9,28,4,30,0,0,0,25,26,1010,98.85000000000001,154.70000000000002,4.1000000000000005,0.171 +2013,9,28,5,30,0,0,0,25,26,1010,98.83,155.4,3.9000000000000004,0.171 +2013,9,28,6,30,22,9,9,25,26,1010,98.82000000000001,155.9,4.1000000000000005,0.171 +2013,9,28,7,30,469,67,182,26,28,1010,94.46000000000001,156.4,4.800000000000001,0.171 +2013,9,28,8,30,675,93,400,25,29,1010,82.69,159,5.300000000000001,0.171 +2013,9,28,9,30,772,109,597,25,30,1010,74.82000000000001,160.3,5.4,0.171 +2013,9,28,10,30,817,123,748,24,31,1010,69.64,160.20000000000002,5.300000000000001,0.171 +2013,9,28,11,30,831,137,838,24,32,1010,65.72,159,5.1000000000000005,0.171 +2013,9,28,12,30,837,138,862,24,32,1010,65.76,156.8,4.800000000000001,0.171 +2013,9,28,13,30,815,141,814,24,32,1010,65.72,153.20000000000002,4.6000000000000005,0.171 +2013,9,28,14,30,770,138,699,24,32,1010,65.73,148,4.5,0.171 +2013,9,28,15,30,646,146,521,24,31,1010,69.45,142,4.5,0.171 +2013,9,28,16,30,503,119,316,24,30,1010,74.15,134.70000000000002,4.5,0.171 +2013,9,28,17,30,233,67,107,25,28,1010,85.07000000000001,128.9,4.4,0.171 +2013,9,28,18,30,0,0,0,25,27,1010,91.53,126.7,4.2,0.171 +2013,9,28,19,30,0,0,0,25,27,1010,91.91,128.8,4,0.171 +2013,9,28,20,30,0,0,0,25,27,1010,92.16,132.70000000000002,3.7,0.171 +2013,9,28,21,30,0,0,0,25,27,1010,97.88,139.3,3.5,0.171 +2013,9,28,22,30,0,0,0,25,26,1010,97.89,147.5,3.4000000000000004,0.171 +2013,9,28,23,30,0,0,0,25,26,1010,97.46000000000001,156,3.3000000000000003,0.171 +2013,9,29,0,30,0,0,0,25,26,1010,96.33,163.60000000000002,3.4000000000000004,0.171 +2013,9,29,1,30,0,0,0,25,26,1010,95.15,169.5,3.2,0.171 +2013,9,29,2,30,0,0,0,24,26,1010,99.77,174.70000000000002,3,0.171 +2013,9,29,3,30,0,0,0,24,25,1010,98.73,180,2.7,0.171 +2013,9,29,4,30,0,0,0,24,25,1010,98.47,185.5,2.3000000000000003,0.171 +2013,9,29,5,30,0,0,0,24,25,1010,98.42,191.4,1.9000000000000001,0.171 +2013,9,29,6,30,0,0,0,24,25,1010,98.58,199.3,2,0.171 +2013,9,29,7,30,0,75,75,24,25,1010,99.56,209.10000000000002,2.4000000000000004,0.171 +2013,9,29,8,30,53,183,207,24,26,1010,93.06,216.10000000000002,2.8000000000000003,0.171 +2013,9,29,9,30,11,210,218,24,27,1010,85.23,221.3,3,0.171 +2013,9,29,10,30,31,306,330,24,28,1010,79.22,233,2.9000000000000004,0.171 +2013,9,29,11,30,37,339,371,23,29,1010,73.99,250.10000000000002,2.7,0.171 +2013,9,29,12,30,433,339,712,23,29,1010,72.94,264.2,2.4000000000000004,0.171 +2013,9,29,13,30,185,408,561,23,29,1010,72.34,269,2.1,0.171 +2013,9,29,14,30,234,342,511,23,29,1010,72.24,270.5,1.8,0.171 +2013,9,29,15,30,282,248,411,23,29,1010,72.18,278.8,1.5,0.171 +2013,9,29,16,30,257,155,254,23,28,1010,76.15,294.3,1.2000000000000002,0.171 +2013,9,29,17,30,116,65,85,23,27,1010,81.49,313.90000000000003,0.9,0.171 +2013,9,29,18,30,0,0,0,23,26,1010,93.71000000000001,333.90000000000003,0.9,0.179 +2013,9,29,19,30,0,0,0,23,25,1010,91.99,344.20000000000005,1.1,0.179 +2013,9,29,20,30,0,0,0,23,24,1010,95.48,346.70000000000005,1.2000000000000002,0.179 +2013,9,29,21,30,0,0,0,22,24,1010,93.9,345.40000000000003,1.2000000000000002,0.179 +2013,9,29,22,30,0,0,0,22,23,1010,98.59,343.6,1,0.179 +2013,9,29,23,30,0,0,0,22,23,1010,97.95,339.8,0.9,0.179 +2013,9,30,0,30,0,0,0,22,23,1010,97.61,324.20000000000005,0.8,0.179 +2013,9,30,1,30,0,0,0,22,23,1010,100,300.6,0.8,0.179 +2013,9,30,2,30,0,0,0,22,22,1010,100,285.8,1,0.179 +2013,9,30,3,30,0,0,0,22,22,1010,100,290.1,1.2000000000000002,0.179 +2013,9,30,4,30,0,0,0,21,22,1010,98.75,304.5,1.4000000000000001,0.179 +2013,9,30,5,30,0,0,0,21,22,1010,100,319.3,1.7000000000000002,0.179 +2013,9,30,6,30,0,0,0,21,22,1010,100,330.5,2.2,0.179 +2013,9,30,7,30,330,89,169,21,23,1010,91.92,338.3,2.6,0.179 +2013,9,30,8,30,567,131,386,21,25,1010,82.05,343.5,2.5,0.179 +2013,9,30,9,30,696,151,587,21,28,1010,68.44,342.6,2.1,0.179 +2013,9,30,10,30,767,162,745,21,29,1010,65.28,335.5,1.9000000000000001,0.179 +2013,9,30,11,30,813,162,844,21,30,1010,61.36,336,1.7000000000000002,0.179 +2013,9,30,12,30,833,157,873,21,31,1000,56.82,343.40000000000003,1.5,0.179 +2013,9,30,13,30,829,150,828,21,32,1000,52.78,357.70000000000005,1.2000000000000002,0.179 +2013,9,30,14,30,800,137,714,20,32,1000,52,16.900000000000002,1.2000000000000002,0.179 +2013,9,30,15,30,736,120,541,20,31,1000,54.47,31.700000000000003,1.2000000000000002,0.179 +2013,9,30,16,30,609,97,330,20,30,1000,57.97,51.800000000000004,1.4000000000000001,0.179 +2013,9,30,17,30,343,55,112,21,29,1000,69.02,75.2,1.6,0.179 +2013,9,30,18,30,0,0,0,23,27,1000,85.64,92.80000000000001,2,0.179 +2013,9,30,19,30,0,0,0,23,25,1000,91.72,105.80000000000001,2.4000000000000004,0.179 +2013,9,30,20,30,0,0,0,24,25,1000,94.51,118.5,2.6,0.179 +2013,9,30,21,30,0,0,0,24,25,1000,97.13,130.3,2.5,0.179 +2013,9,30,22,30,0,0,0,24,25,1000,98.26,141.8,2.5,0.179 +2013,9,30,23,30,0,0,0,24,25,1000,98.85000000000001,155.20000000000002,2.5,0.179 +2013,10,1,0,30,0,0,0,24,25,1000,100,167.8,2.5,0.179 +2013,10,1,1,30,0,0,0,24,24,1000,100,178.10000000000002,2.6,0.179 +2013,10,1,2,30,0,0,0,24,24,1000,100,185.3,2.5,0.179 +2013,10,1,3,30,0,0,0,24,24,1000,100,190.20000000000002,2.4000000000000004,0.179 +2013,10,1,4,30,0,0,0,24,24,1000,100,191.60000000000002,2.2,0.179 +2013,10,1,5,30,0,0,0,24,24,1000,100,190,2.1,0.179 +2013,10,1,6,30,0,0,0,24,25,1010,99.92,188,2.6,0.179 +2013,10,1,7,30,170,89,129,25,27,1010,91.11,184.9,3.7,0.179 +2013,10,1,8,30,579,124,383,25,28,1010,84.10000000000001,182.9,4.4,0.179 +2013,10,1,9,30,154,288,385,24,29,1010,76.95,180.8,4.5,0.179 +2013,10,1,10,30,162,361,484,24,30,1010,71.8,176.5,4.4,0.179 +2013,10,1,11,30,748,189,814,24,31,1010,67.38,169.60000000000002,4.2,0.179 +2013,10,1,12,30,763,186,838,24,32,1000,63.02,162.4,4.1000000000000005,0.179 +2013,10,1,13,30,416,343,682,23,32,1000,62.39,156.70000000000002,4.1000000000000005,0.179 +2013,10,1,14,30,690,180,674,23,31,1000,65.49,149.9,4.1000000000000005,0.179 +2013,10,1,15,30,590,168,503,23,31,1000,65.48,141.9,4.2,0.179 +2013,10,1,16,30,324,138,260,23,30,1000,70.04,133.1,4.6000000000000005,0.179 +2013,10,1,17,30,87,64,78,24,28,1000,81.43,125.60000000000001,4.800000000000001,0.179 +2013,10,1,18,30,0,0,0,25,27,1000,88.96000000000001,124.4,4.7,0.179 +2013,10,1,19,30,0,0,0,25,27,1010,90.41,129.6,4.4,0.179 +2013,10,1,20,30,0,0,0,25,26,1010,96.95,136.9,4,0.179 +2013,10,1,21,30,0,0,0,25,26,1010,97.19,146.1,3.8000000000000003,0.179 +2013,10,1,22,30,0,0,0,25,26,1010,97.13,154.9,3.6,0.179 +2013,10,1,23,30,0,0,0,25,26,1010,97.05,162.10000000000002,3.6,0.179 +2013,10,2,0,30,0,0,0,25,26,1010,96.07000000000001,168.10000000000002,3.6,0.179 +2013,10,2,1,30,0,0,0,25,26,1010,100,173.60000000000002,3.3000000000000003,0.179 +2013,10,2,2,30,0,0,0,25,25,1010,100,179.70000000000002,3.1,0.179 +2013,10,2,3,30,0,0,0,24,25,1010,99.74000000000001,185.20000000000002,2.7,0.179 +2013,10,2,4,30,0,0,0,24,24,1010,100,187.9,2.2,0.179 +2013,10,2,5,30,0,0,0,24,24,1010,100,187.5,1.9000000000000001,0.179 +2013,10,2,6,30,0,0,0,24,25,1010,98.3,185.5,2.2,0.179 +2013,10,2,7,30,453,69,176,25,27,1010,89.43,184,3,0.179 +2013,10,2,8,30,662,99,394,24,28,1010,80.44,179,3.6,0.179 +2013,10,2,9,30,761,118,592,23,30,1010,73.26,173.70000000000002,3.7,0.179 +2013,10,2,10,30,813,130,743,23,31,1010,68.47,168.60000000000002,3.6,0.179 +2013,10,2,11,30,18,291,306,23,31,1010,64.24,162.60000000000002,3.6,0.179 +2013,10,2,12,30,10,228,236,23,32,1010,60.19,155.9,3.6,0.179 +2013,10,2,13,30,830,134,807,23,32,1010,60.03,149.3,3.7,0.179 +2013,10,2,14,30,786,130,691,23,32,1000,59.800000000000004,142.4,3.9000000000000004,0.179 +2013,10,2,15,30,686,129,515,23,31,1000,63.11,137.3,4.1000000000000005,0.179 +2013,10,2,16,30,550,102,308,23,30,1000,66.96000000000001,133.4,4.3,0.179 +2013,10,2,17,30,267,56,98,23,29,1000,77.06,130,4.2,0.179 +2013,10,2,18,30,0,0,0,24,27,1010,84.42,128.70000000000002,4,0.179 +2013,10,2,19,30,0,0,0,24,27,1010,86.08,131.6,3.8000000000000003,0.179 +2013,10,2,20,30,0,0,0,24,26,1010,92.77,136.1,3.6,0.179 +2013,10,2,21,30,0,0,0,24,26,1010,93.57000000000001,142.9,3.6,0.179 +2013,10,2,22,30,0,0,0,24,26,1010,93.64,151.8,3.5,0.179 +2013,10,2,23,30,0,0,0,24,26,1010,99.13,160.5,3.4000000000000004,0.179 +2013,10,3,0,30,0,0,0,24,25,1010,98.49000000000001,168.8,3.3000000000000003,0.179 +2013,10,3,1,30,0,0,0,24,25,1010,96.79,175.70000000000002,3.1,0.179 +2013,10,3,2,30,0,0,0,24,25,1010,95.61,182.70000000000002,2.8000000000000003,0.179 +2013,10,3,3,30,0,0,0,24,25,1010,100,187.60000000000002,2.4000000000000004,0.179 +2013,10,3,4,30,0,0,0,24,24,1010,100,189.10000000000002,2.1,0.179 +2013,10,3,5,30,0,0,0,24,24,1010,100,187.9,1.9000000000000001,0.179 +2013,10,3,6,30,0,0,0,23,25,1010,93.9,184.3,2.2,0.179 +2013,10,3,7,30,521,59,181,24,27,1010,85.35000000000001,178.60000000000002,3.1,0.179 +2013,10,3,8,30,720,83,403,23,28,1010,76.52,169.5,3.7,0.179 +2013,10,3,9,30,809,100,601,22,30,1010,66.17,161.70000000000002,3.9000000000000004,0.179 +2013,10,3,10,30,857,110,754,22,31,1010,62.18,154.9,3.9000000000000004,0.179 +2013,10,3,11,30,110,406,498,22,31,1010,61.79,147.20000000000002,3.9000000000000004,0.179 +2013,10,3,12,30,859,133,861,22,32,1010,58.02,139.5,4,0.179 +2013,10,3,13,30,837,134,810,22,32,1000,57.51,133.4,4.3,0.179 +2013,10,3,14,30,793,130,692,22,31,1000,60.42,129.20000000000002,4.5,0.179 +2013,10,3,15,30,739,110,523,22,30,1000,63.440000000000005,126.4,4.800000000000001,0.179 +2013,10,3,16,30,618,86,314,22,29,1000,67.1,124.80000000000001,4.800000000000001,0.179 +2013,10,3,17,30,350,48,101,22,28,1000,72.32000000000001,124.4,4.4,0.179 +2013,10,3,18,30,0,0,0,22,26,1010,83.32000000000001,124.60000000000001,3.8000000000000003,0.179 +2013,10,3,19,30,0,0,0,23,26,1010,84.94,127.2,3.5,0.179 +2013,10,3,20,30,0,0,0,23,25,1010,91.31,132.1,3.4000000000000004,0.179 +2013,10,3,21,30,0,0,0,23,25,1010,92.13,138.1,3.3000000000000003,0.179 +2013,10,3,22,30,0,0,0,23,25,1010,92.72,144.70000000000002,3.3000000000000003,0.179 +2013,10,3,23,30,0,0,0,23,25,1010,92.87,151.9,3.3000000000000003,0.179 +2013,10,4,0,30,0,0,0,23,25,1010,92.09,158.9,3.5,0.179 +2013,10,4,1,30,0,0,0,23,25,1010,90.73,165.60000000000002,3.5,0.179 +2013,10,4,2,30,0,0,0,23,25,1010,89.7,171.5,3.2,0.179 +2013,10,4,3,30,0,0,0,23,24,1010,95.46000000000001,176.9,2.8000000000000003,0.179 +2013,10,4,4,30,0,0,0,23,24,1010,96.23,179.8,2.4000000000000004,0.179 +2013,10,4,5,30,0,0,0,23,24,1010,96.89,179,2.2,0.179 +2013,10,4,6,30,0,0,0,23,25,1010,91.71000000000001,174.9,2.5,0.179 +2013,10,4,7,30,553,54,183,24,27,1010,83.97,169.20000000000002,3.5,0.179 +2013,10,4,8,30,744,76,405,23,29,1010,71.34,165.4,4.3,0.179 +2013,10,4,9,30,828,92,603,22,30,1010,65.19,162.5,4.5,0.179 +2013,10,4,10,30,872,102,754,22,31,1010,61.93,159.10000000000002,4.6000000000000005,0.179 +2013,10,4,11,30,890,110,844,22,32,1010,58.54,154.8,4.6000000000000005,0.179 +2013,10,4,12,30,358,387,689,22,32,1010,58.08,149.5,4.6000000000000005,0.179 +2013,10,4,13,30,857,122,810,22,32,1000,57.44,143,4.6000000000000005,0.179 +2013,10,4,14,30,815,119,693,22,32,1000,57.03,135.9,4.7,0.179 +2013,10,4,15,30,734,111,518,22,31,1000,59.99,129.8,4.800000000000001,0.179 +2013,10,4,16,30,600,90,309,22,30,1000,67.08,125.30000000000001,4.9,0.179 +2013,10,4,17,30,322,49,96,22,28,1000,72.13,122,4.5,0.179 +2013,10,4,18,30,0,0,0,22,26,1010,83.48,120.60000000000001,4,0.179 +2013,10,4,19,30,0,0,0,23,26,1010,85.37,123.5,3.7,0.179 +2013,10,4,20,30,0,0,0,23,25,1010,91.96000000000001,129.8,3.4000000000000004,0.179 +2013,10,4,21,30,0,0,0,23,25,1010,92.59,137.70000000000002,3.2,0.179 +2013,10,4,22,30,0,0,0,23,25,1010,98.19,145.4,2.9000000000000004,0.179 +2013,10,4,23,30,0,0,0,23,24,1010,98.06,152.9,2.7,0.179 +2013,10,5,0,30,0,0,0,23,24,1010,97.9,160,2.5,0.179 +2013,10,5,1,30,0,0,0,23,23,1010,100,165.70000000000002,2.3000000000000003,0.179 +2013,10,5,2,30,0,0,0,23,23,1010,100,169.10000000000002,2.1,0.179 +2013,10,5,3,30,0,0,0,23,23,1010,100,171.60000000000002,1.9000000000000001,0.179 +2013,10,5,4,30,0,0,0,23,23,1010,100,173.4,1.7000000000000002,0.179 +2013,10,5,5,30,0,0,0,23,23,1010,100,172.5,1.5,0.179 +2013,10,5,6,30,0,0,0,23,24,1010,96.55,167.70000000000002,1.6,0.179 +2013,10,5,7,30,554,54,182,23,26,1010,88.7,160.10000000000002,2.2,0.179 +2013,10,5,8,30,748,76,404,23,28,1010,75.75,157.70000000000002,3,0.179 +2013,10,5,9,30,836,90,603,22,30,1010,65.97,154.70000000000002,3.3000000000000003,0.179 +2013,10,5,10,30,879,99,754,22,31,1010,62.02,149.1,3.2,0.179 +2013,10,5,11,30,894,107,842,22,32,1010,58.43,140.9,3,0.179 +2013,10,5,12,30,238,415,616,22,32,1010,58.46,129.4,2.9000000000000004,0.179 +2013,10,5,13,30,168,395,530,22,32,1010,58.68,117.5,3.1,0.179 +2013,10,5,14,30,811,118,686,22,32,1000,58.95,108.30000000000001,3.3000000000000003,0.179 +2013,10,5,15,30,726,111,511,23,31,1000,62.53,103.9,3.6,0.179 +2013,10,5,16,30,587,89,301,23,30,1010,66.77,101.2,3.8000000000000003,0.179 +2013,10,5,17,30,302,48,91,23,28,1010,77.89,99.9,3.3000000000000003,0.179 +2013,10,5,18,30,0,0,0,24,26,1010,92.37,102.30000000000001,2.6,0.179 +2013,10,5,19,30,0,0,0,24,26,1010,94.12,107.30000000000001,2.2,0.179 +2013,10,5,20,30,0,0,0,25,26,1010,100,111.5,1.8,0.179 +2013,10,5,21,30,0,0,0,25,25,1010,100,114.4,1.4000000000000001,0.179 +2013,10,5,22,30,0,0,0,24,25,1010,99.25,110.80000000000001,1.1,0.179 +2013,10,5,23,30,0,0,0,24,24,1010,100,49.2,2,0.179 +2013,10,6,0,30,0,0,0,22,22,1010,100,9.3,4.2,0.179 +2013,10,6,1,30,0,0,0,19,20,1010,99.39,6.300000000000001,6,0.179 +2013,10,6,2,30,0,0,0,16,18,1010,91.58,7,6.2,0.179 +2013,10,6,3,30,0,0,0,14,17,1010,86.29,6.6000000000000005,5.7,0.179 +2013,10,6,4,30,0,0,0,14,17,1010,84.02,4.1000000000000005,5.5,0.179 +2013,10,6,5,30,0,0,0,14,16,1010,88.44,360,5.6000000000000005,0.179 +2013,10,6,6,30,0,0,0,13,16,1010,86.9,356.1,6,0.179 +2013,10,6,7,30,71,85,102,13,17,1010,84.01,359.20000000000005,6.300000000000001,0.179 +2013,10,6,8,30,0,106,106,12,18,1010,71.01,6.5,6.300000000000001,0.179 +2013,10,6,9,30,10,204,211,12,19,1010,65.46000000000001,9.5,6.1000000000000005,0.179 +2013,10,6,10,30,93,342,411,12,19,1010,66.66,6.300000000000001,5.9,0.179 +2013,10,6,11,30,789,161,806,13,19,1010,68.67,359.40000000000003,5.6000000000000005,0.179 +2013,10,6,12,30,780,174,827,13,20,1010,65.21000000000001,357.40000000000003,4.800000000000001,0.179 +2013,10,6,13,30,783,163,785,13,22,1010,56.980000000000004,358.40000000000003,3.7,0.179 +2013,10,6,14,30,769,145,679,12,24,1010,48.92,351.1,3.1,0.179 +2013,10,6,15,30,743,113,519,11,25,1010,42.86,0.5,2.9000000000000004,0.179 +2013,10,6,16,30,643,84,313,10,24,1010,43.37,7.1000000000000005,2.4000000000000004,0.179 +2013,10,6,17,30,373,44,96,13,22,1010,59.1,2.7,1.9000000000000001,0.179 +2013,10,6,18,30,0,0,0,13,20,1010,67.03,7.5,1.8,0.179 +2013,10,6,19,30,0,0,0,12,19,1010,67.85,5.300000000000001,1.9000000000000001,0.179 +2013,10,6,20,30,0,0,0,12,19,1010,68.09,353.3,2,0.179 +2013,10,6,21,30,0,0,0,11,18,1010,70.60000000000001,342.3,2.1,0.179 +2013,10,6,22,30,0,0,0,11,17,1010,70.38,340.1,2.2,0.179 +2013,10,6,23,30,0,0,0,11,16,1010,75.65,338.90000000000003,2.3000000000000003,0.179 +2013,10,7,0,30,0,0,0,11,15,1010,78.08,336.90000000000003,2.5,0.179 +2013,10,7,1,30,0,0,0,10,15,1010,81.5,337.5,2.7,0.179 +2013,10,7,2,30,0,0,0,10,14,1010,79.83,339.70000000000005,2.8000000000000003,0.179 +2013,10,7,3,30,0,0,0,10,13,1010,84.24,342.5,2.8000000000000003,0.179 +2013,10,7,4,30,0,0,0,10,13,1010,84.06,343.40000000000003,2.8000000000000003,0.179 +2013,10,7,5,30,0,0,0,10,12,1010,90.09,343.40000000000003,2.7,0.179 +2013,10,7,6,30,0,0,0,10,13,1010,85.21000000000001,342.70000000000005,2.9000000000000004,0.179 +2013,10,7,7,30,630,50,193,10,16,1020,76.57000000000001,336.6,3.1,0.179 +2013,10,7,8,30,817,71,426,11,19,1020,60.38,325.40000000000003,2.8000000000000003,0.179 +2013,10,7,9,30,905,83,634,10,23,1020,43.85,335.20000000000005,3,0.179 +2013,10,7,10,30,949,91,792,6,26,1020,28.650000000000002,0.1,3.5,0.179 +2013,10,7,11,30,970,95,886,5,27,1010,25.8,8.700000000000001,3.7,0.179 +2013,10,7,12,30,965,102,906,5,28,1010,24.3,14.200000000000001,3.7,0.179 +2013,10,7,13,30,953,99,853,5,28,1010,24.39,19.700000000000003,3.6,0.179 +2013,10,7,14,30,922,93,731,5,28,1010,24.45,25.200000000000003,3.4000000000000004,0.179 +2013,10,7,15,30,852,87,548,5,27,1010,26.21,30.700000000000003,3,0.179 +2013,10,7,16,30,731,69,326,7,26,1010,30.04,37.800000000000004,2.4000000000000004,0.179 +2013,10,7,17,30,442,38,98,12,23,1010,50.56,54.900000000000006,1.9000000000000001,0.179 +2013,10,7,18,30,0,0,0,12,21,1010,62.620000000000005,76.10000000000001,1.9000000000000001,0.177 +2013,10,7,19,30,0,0,0,12,19,1010,65.43,91.2,2,0.177 +2013,10,7,20,30,0,0,0,12,19,1010,66.04,102.60000000000001,2.1,0.177 +2013,10,7,21,30,0,0,0,12,19,1010,66.52,108.30000000000001,2,0.177 +2013,10,7,22,30,0,0,0,12,19,1010,66.73,109.30000000000001,1.9000000000000001,0.177 +2013,10,7,23,30,0,0,0,12,19,1010,66.29,108.4,1.7000000000000002,0.177 +2013,10,8,0,30,0,0,0,12,19,1010,65.27,105.4,1.4000000000000001,0.177 +2013,10,8,1,30,0,0,0,12,20,1010,60.06,97.4,0.9,0.177 +2013,10,8,2,30,0,0,0,11,19,1010,62.14,69.7,0.6000000000000001,0.177 +2013,10,8,3,30,0,0,0,11,18,1010,64.69,357.3,0.7000000000000001,0.177 +2013,10,8,4,30,0,0,0,11,17,1010,70.34,318.20000000000005,1.1,0.177 +2013,10,8,5,30,0,0,0,12,15,1010,83.01,310.5,1.5,0.177 +2013,10,8,6,30,0,0,0,12,16,1010,81.04,315.8,1.7000000000000002,0.177 +2013,10,8,7,30,609,51,188,14,18,1010,78.47,327.8,2.2,0.177 +2013,10,8,8,30,799,73,418,14,21,1010,69.95,341.70000000000005,2.1,0.177 +2013,10,8,9,30,888,86,624,13,24,1010,53.74,15.3,1.7000000000000002,0.177 +2013,10,8,10,30,932,94,780,11,26,1010,39.08,53.6,1.6,0.177 +2013,10,8,11,30,951,99,872,10,27,1010,36.59,68.4,1.6,0.177 +2013,10,8,12,30,949,104,890,11,28,1010,35.03,82.5,1.8,0.177 +2013,10,8,13,30,935,102,837,11,28,1010,35.730000000000004,94.7,2.2,0.177 +2013,10,8,14,30,901,96,715,11,28,1010,36.53,101.5,2.5,0.177 +2013,10,8,15,30,836,86,535,12,27,1010,39.76,103.7,2.9000000000000004,0.177 +2013,10,8,16,30,712,69,316,12,26,1010,43.92,104.60000000000001,3,0.177 +2013,10,8,17,30,421,38,93,15,23,1010,61.300000000000004,105.4,2.6,0.177 +2013,10,8,18,30,0,0,0,16,21,1010,75.86,108.9,2.4000000000000004,0.177 +2013,10,8,19,30,0,0,0,16,20,1010,82.81,114.30000000000001,2.4000000000000004,0.177 +2013,10,8,20,30,0,0,0,17,20,1010,85.35000000000001,119.7,2.4000000000000004,0.177 +2013,10,8,21,30,0,0,0,17,20,1010,86.76,124.30000000000001,2.4000000000000004,0.177 +2013,10,8,22,30,0,0,0,17,20,1010,87.07000000000001,128.8,2.4000000000000004,0.177 +2013,10,8,23,30,0,0,0,17,19,1010,92.42,134,2.3000000000000003,0.177 +2013,10,9,0,30,0,0,0,17,19,1010,91.96000000000001,140.1,2.3000000000000003,0.177 +2013,10,9,1,30,0,0,0,17,19,1010,91.19,146.1,2.2,0.177 +2013,10,9,2,30,0,0,0,17,19,1010,90.49,149.70000000000002,2.1,0.177 +2013,10,9,3,30,0,0,0,17,19,1010,90.23,151.70000000000002,2,0.177 +2013,10,9,4,30,0,0,0,17,19,1010,90.63,153.4,1.9000000000000001,0.177 +2013,10,9,5,30,0,0,0,17,19,1010,91.33,155.4,1.8,0.177 +2013,10,9,6,30,0,0,0,17,20,1010,86.58,158.10000000000002,1.6,0.177 +2013,10,9,7,30,553,55,178,19,22,1010,83.46000000000001,159.70000000000002,2.1,0.177 +2013,10,9,8,30,742,82,401,18,25,1010,65.44,155.4,2.9000000000000004,0.177 +2013,10,9,9,30,833,99,601,17,26,1010,59.660000000000004,152,3.2,0.177 +2013,10,9,10,30,882,108,754,17,27,1010,56.5,148.5,3.2,0.177 +2013,10,9,11,30,908,111,845,17,28,1010,53.68,143.8,3.2,0.177 +2013,10,9,12,30,910,113,864,17,29,1010,51.06,137.70000000000002,3.4000000000000004,0.177 +2013,10,9,13,30,900,108,812,17,29,1010,51.230000000000004,131.4,3.6,0.177 +2013,10,9,14,30,868,100,693,17,29,1010,51.2,125.5,3.9000000000000004,0.177 +2013,10,9,15,30,760,104,509,17,28,1010,54.17,121.30000000000001,4.2,0.177 +2013,10,9,16,30,631,81,297,17,27,1010,57.480000000000004,119.10000000000001,4.2,0.177 +2013,10,9,17,30,332,41,83,18,25,1010,66.22,117.7,3.5,0.177 +2013,10,9,18,30,0,0,0,19,23,1010,78.3,116.7,3.1,0.177 +2013,10,9,19,30,0,0,0,19,23,1010,79.52,119.2,3,0.177 +2013,10,9,20,30,0,0,0,19,22,1010,85.66,122.80000000000001,2.9000000000000004,0.177 +2013,10,9,21,30,0,0,0,19,22,1010,86.39,128.4,2.8000000000000003,0.177 +2013,10,9,22,30,0,0,0,19,22,1010,86.79,136,2.7,0.177 +2013,10,9,23,30,0,0,0,19,22,1010,87.34,143.20000000000002,2.7,0.177 +2013,10,10,0,30,0,0,0,19,22,1010,93.57000000000001,149.8,2.7,0.177 +2013,10,10,1,30,0,0,0,20,22,1010,94.16,154.70000000000002,2.6,0.177 +2013,10,10,2,30,0,0,0,20,22,1010,89.87,158.9,2.5,0.177 +2013,10,10,3,30,0,0,0,20,22,1010,96.59,162.8,2.3000000000000003,0.177 +2013,10,10,4,30,0,0,0,20,21,1010,97.41,165.9,2.1,0.177 +2013,10,10,5,30,0,0,0,20,21,1010,97.94,168.3,1.9000000000000001,0.177 +2013,10,10,6,30,0,0,0,20,22,1010,92.39,168.9,1.8,0.177 +2013,10,10,7,30,531,56,173,21,24,1010,86.22,166.70000000000002,2.3000000000000003,0.177 +2013,10,10,8,30,742,80,396,20,27,1010,66.64,158.4,3,0.177 +2013,10,10,9,30,839,93,597,19,28,1010,58.77,150.3,3.2,0.177 +2013,10,10,10,30,890,101,750,19,29,1010,55.81,146.1,3.3000000000000003,0.177 +2013,10,10,11,30,915,104,841,19,30,1010,53.300000000000004,141.5,3.5,0.177 +2013,10,10,12,30,893,120,854,19,31,1010,50.79,136.8,3.9000000000000004,0.177 +2013,10,10,13,30,880,116,801,19,31,1010,51.06,132.5,4.3,0.177 +2013,10,10,14,30,838,111,680,19,30,1010,54.26,130.1,4.7,0.177 +2013,10,10,15,30,747,105,500,19,29,1010,57.58,129,5,0.177 +2013,10,10,16,30,593,85,287,19,28,1010,61.230000000000004,128.3,5.1000000000000005,0.177 +2013,10,10,17,30,274,42,76,20,27,1010,66.59,125.2,4.800000000000001,0.177 +2013,10,10,18,30,0,0,0,20,25,1010,78.12,124.80000000000001,4.6000000000000005,0.177 +2013,10,10,19,30,0,0,0,21,25,1010,81.21000000000001,129.4,4.4,0.177 +2013,10,10,20,30,0,0,0,22,25,1010,84.24,136.1,4.2,0.177 +2013,10,10,21,30,0,0,0,22,25,1010,86.63,141.4,4.3,0.177 +2013,10,10,22,30,0,0,0,22,25,1010,88.11,145,4.3,0.177 +2013,10,10,23,30,0,0,0,23,25,1010,89.34,147.70000000000002,4.2,0.177 +2013,10,11,0,30,0,0,0,23,25,1010,90.66,149.4,4.2,0.177 +2013,10,11,1,30,0,0,0,23,25,1010,91.52,148.8,4.2,0.177 +2013,10,11,2,30,0,0,0,23,25,1010,91.83,146.9,4,0.177 +2013,10,11,3,30,0,0,0,23,24,1010,98.21000000000001,144.9,3.6,0.177 +2013,10,11,4,30,0,0,0,23,24,1010,99.21000000000001,143.6,3.3000000000000003,0.177 +2013,10,11,5,30,0,0,0,24,24,1010,100,142.70000000000002,3.4000000000000004,0.177 +2013,10,11,6,30,0,0,0,24,25,1010,95.86,144,3.9000000000000004,0.177 +2013,10,11,7,30,0,65,65,24,27,1010,87.2,143.5,4.7,0.177 +2013,10,11,8,30,0,63,63,24,28,1010,81.93,147.8,5.4,0.177 +2013,10,11,9,30,722,125,556,24,29,1010,75.9,152.70000000000002,5.5,0.177 +2013,10,11,10,30,768,144,701,24,30,1010,70.95,155.4,5.4,0.177 +2013,10,11,11,30,783,159,786,24,31,1010,66.55,156.8,5.1000000000000005,0.177 +2013,10,11,12,30,725,198,791,23,32,1000,66.03,156.60000000000002,4.9,0.177 +2013,10,11,13,30,686,205,737,23,32,1000,62,155.20000000000002,4.6000000000000005,0.177 +2013,10,11,14,30,626,197,620,23,32,1000,65.42,151.6,4.5,0.177 +2013,10,11,15,30,622,138,465,23,31,1000,69.15,147.6,4.5,0.177 +2013,10,11,16,30,442,111,260,23,30,1000,74.24,141.4,4.6000000000000005,0.177 +2013,10,11,17,30,119,49,63,24,28,1000,81.24,135.6,4.6000000000000005,0.177 +2013,10,11,18,30,0,0,0,25,27,1000,89.61,131.9,4.4,0.177 +2013,10,11,19,30,0,0,0,25,26,1000,98.07000000000001,131.4,4.2,0.177 +2013,10,11,20,30,0,0,0,25,26,1010,99.79,134.4,4.1000000000000005,0.177 +2013,10,11,21,30,0,0,0,26,26,1010,100,141,3.9000000000000004,0.177 +2013,10,11,22,30,0,0,0,26,26,1010,100,147.4,3.7,0.177 +2013,10,11,23,30,0,0,0,25,26,1010,99.89,153.20000000000002,3.6,0.177 +2013,10,12,0,30,0,0,0,25,26,1010,98.92,159.8,3.7,0.177 +2013,10,12,1,30,0,0,0,25,26,1010,97.27,166.10000000000002,3.8000000000000003,0.177 +2013,10,12,2,30,0,0,0,25,26,1010,95.52,170.10000000000002,3.4000000000000004,0.177 +2013,10,12,3,30,0,0,0,25,25,1010,100,169.8,2.8000000000000003,0.177 +2013,10,12,4,30,0,0,0,25,25,1010,100,164.4,2.4000000000000004,0.177 +2013,10,12,5,30,0,0,0,25,25,1010,100,160.4,2.5,0.177 +2013,10,12,6,30,0,0,0,25,25,1010,100,160.3,3,0.177 +2013,10,12,7,30,308,78,145,25,27,1010,91.32000000000001,159.20000000000002,3.9000000000000004,0.177 +2013,10,12,8,30,540,123,350,25,28,1010,85.25,159.70000000000002,4.5,0.177 +2013,10,12,9,30,0,162,162,24,30,1010,78.10000000000001,160.4,4.800000000000001,0.177 +2013,10,12,10,30,728,161,687,24,31,1010,72.15,159.70000000000002,4.9,0.177 +2013,10,12,11,30,757,169,773,24,31,1010,67.2,158.4,4.9,0.177 +2013,10,12,12,30,714,201,782,24,31,1010,66.47,156.9,4.800000000000001,0.177 +2013,10,12,13,30,684,202,729,23,31,1010,65.82000000000001,154.8,4.6000000000000005,0.177 +2013,10,12,14,30,627,193,613,23,31,1010,69.48,151.20000000000002,4.6000000000000005,0.177 +2013,10,12,15,30,563,157,450,23,30,1010,69.34,146.3,4.6000000000000005,0.177 +2013,10,12,16,30,421,113,253,23,29,1010,73.75,142.4,4.6000000000000005,0.177 +2013,10,12,17,30,134,45,61,24,28,1010,80.19,136.70000000000002,4.4,0.177 +2013,10,12,18,30,0,0,0,24,27,1010,88.07000000000001,132,4.1000000000000005,0.177 +2013,10,12,19,30,0,0,0,25,27,1010,95.79,132.6,3.8000000000000003,0.177 +2013,10,12,20,30,0,0,0,25,26,1010,97.11,136.8,3.3000000000000003,0.177 +2013,10,12,21,30,0,0,0,25,26,1010,97.85000000000001,141.4,2.9000000000000004,0.177 +2013,10,12,22,30,0,0,0,25,26,1010,98.18,145.4,2.8000000000000003,0.177 +2013,10,12,23,30,0,0,0,25,25,1010,100,148.3,2.8000000000000003,0.177 +2013,10,13,0,30,0,0,0,25,25,1010,100,153.3,2.8000000000000003,0.177 +2013,10,13,1,30,0,0,0,25,25,1010,100,157.10000000000002,2.7,0.177 +2013,10,13,2,30,0,0,0,25,25,1010,100,157.5,2.5,0.177 +2013,10,13,3,30,0,0,0,25,25,1010,100,155.8,2.4000000000000004,0.177 +2013,10,13,4,30,0,0,0,25,25,1010,100,151.20000000000002,2.2,0.177 +2013,10,13,5,30,0,0,0,25,25,1010,100,146.70000000000002,2.1,0.177 +2013,10,13,6,30,0,0,0,24,25,1010,99.91,145.6,2.3000000000000003,0.177 +2013,10,13,7,30,377,63,143,25,26,1010,95.99000000000001,146.4,2.8000000000000003,0.177 +2013,10,13,8,30,264,166,277,25,27,1010,91.31,149.5,3.3000000000000003,0.177 +2013,10,13,9,30,738,114,550,25,28,1010,83.87,153.60000000000002,3.6,0.177 +2013,10,13,10,30,265,336,527,24,29,1010,76.99,155.9,3.6,0.177 +2013,10,13,11,30,385,352,657,24,30,1010,71.60000000000001,154,3.5,0.177 +2013,10,13,12,30,368,365,663,23,30,1010,70.13,149.20000000000002,3.5,0.177 +2013,10,13,13,30,365,340,619,23,30,1010,68.71000000000001,143.1,3.5,0.177 +2013,10,13,14,30,223,310,460,23,30,1010,71.73,137.4,3.7,0.177 +2013,10,13,15,30,209,225,333,23,29,1010,71.46000000000001,131.3,4.1000000000000005,0.177 +2013,10,13,16,30,65,128,150,23,28,1010,77.02,124.60000000000001,4.3,0.177 +2013,10,13,17,30,0,24,24,24,27,1010,90.21000000000001,117.7,4.2,0.177 +2013,10,13,18,30,0,0,0,24,26,1010,93.49,113.60000000000001,3.9000000000000004,0.177 +2013,10,13,19,30,0,0,0,25,26,1010,95.04,113.30000000000001,3.9000000000000004,0.177 +2013,10,13,20,30,0,0,0,25,26,1010,100,114.7,3.9000000000000004,0.177 +2013,10,13,21,30,0,0,0,25,26,1010,100,118.80000000000001,3.9000000000000004,0.177 +2013,10,13,22,30,0,0,0,24,26,1010,99.39,126,3.8000000000000003,0.177 +2013,10,13,23,30,0,0,0,24,25,1010,97.77,132.4,3.6,0.177 +2013,10,14,0,30,0,0,0,24,25,1010,96.28,137.5,3.4000000000000004,0.177 +2013,10,14,1,30,0,0,0,24,25,1010,95.08,141.70000000000002,3.2,0.177 +2013,10,14,2,30,0,0,0,23,25,1010,94,144.20000000000002,3.1,0.177 +2013,10,14,3,30,0,0,0,23,25,1010,92.78,145.70000000000002,2.9000000000000004,0.177 +2013,10,14,4,30,0,0,0,23,25,1010,91.93,147.1,2.7,0.177 +2013,10,14,5,30,0,0,0,23,25,1010,97.32000000000001,147.5,2.6,0.177 +2013,10,14,6,30,0,0,0,23,25,1010,97.42,147.9,2.7,0.177 +2013,10,14,7,30,14,74,77,23,26,1010,87.98,148.3,3.4000000000000004,0.177 +2013,10,14,8,30,426,139,316,23,27,1010,81.48,151.8,4.3,0.177 +2013,10,14,9,30,65,255,293,22,28,1010,73.48,154.10000000000002,4.6000000000000005,0.177 +2013,10,14,10,30,13,240,250,22,29,1010,67.95,154,4.800000000000001,0.177 +2013,10,14,11,30,220,388,562,22,29,1010,67.42,152.9,4.9,0.177 +2013,10,14,12,30,222,398,577,22,30,1010,62.83,150.3,5.1000000000000005,0.177 +2013,10,14,13,30,12,247,257,21,30,1010,62.11,147,5.300000000000001,0.177 +2013,10,14,14,30,750,131,628,21,29,1010,65.61,142.5,5.5,0.177 +2013,10,14,15,30,580,148,445,21,28,1010,69.54,138.3,5.6000000000000005,0.177 +2013,10,14,16,30,421,110,246,21,27,1010,73.84,135,5.4,0.177 +2013,10,14,17,30,117,42,55,22,26,1010,79.2,132.6,4.800000000000001,0.177 +2013,10,14,18,30,0,0,0,22,26,1010,80.78,131.6,4.2,0.177 +2013,10,14,19,30,0,0,0,22,25,1010,87.26,132.6,3.9000000000000004,0.177 +2013,10,14,20,30,0,0,0,22,25,1010,88.37,135.9,3.7,0.177 +2013,10,14,21,30,0,0,0,23,25,1010,88.98,142.1,3.5,0.177 +2013,10,14,22,30,0,0,0,23,25,1010,94.86,149.3,3.3000000000000003,0.177 +2013,10,14,23,30,0,0,0,23,24,1010,95.11,155.9,3.2,0.177 +2013,10,15,0,30,0,0,0,23,24,1010,95.19,161.9,3,0.177 +2013,10,15,1,30,0,0,0,23,24,1010,94.72,166.70000000000002,2.9000000000000004,0.177 +2013,10,15,2,30,0,0,0,23,24,1010,94.34,171.20000000000002,2.8000000000000003,0.177 +2013,10,15,3,30,0,0,0,23,24,1010,94.22,173.70000000000002,2.5,0.177 +2013,10,15,4,30,0,0,0,22,23,1010,99.89,174,2.3000000000000003,0.177 +2013,10,15,5,30,0,0,0,22,23,1010,99.54,172.4,2.2,0.177 +2013,10,15,6,30,0,0,0,22,24,1010,93.54,168.8,2.4000000000000004,0.177 +2013,10,15,7,30,448,58,151,23,26,1010,85.84,164.5,3.2,0.177 +2013,10,15,8,30,669,87,363,23,27,1010,78.9,162.5,3.9000000000000004,0.177 +2013,10,15,9,30,768,105,555,22,29,1010,67.24,161.4,4,0.177 +2013,10,15,10,30,820,117,701,21,30,1010,62.24,159.4,4,0.177 +2013,10,15,11,30,843,124,787,21,31,1010,61.5,156.4,3.9000000000000004,0.177 +2013,10,15,12,30,781,163,790,21,31,1010,57.51,152.3,3.9000000000000004,0.177 +2013,10,15,13,30,764,158,738,21,32,1010,56.64,147.1,3.9000000000000004,0.177 +2013,10,15,14,30,719,148,621,21,31,1000,55.620000000000005,142,4.1000000000000005,0.177 +2013,10,15,15,30,632,130,451,20,30,1000,58.36,137.1,4.3,0.177 +2013,10,15,16,30,472,98,249,21,29,1000,62.300000000000004,132.6,4.5,0.177 +2013,10,15,17,30,111,38,50,21,27,1010,72.04,128.1,4.3,0.177 +2013,10,15,18,30,0,0,0,22,26,1010,79.01,125.30000000000001,3.9000000000000004,0.17400000000000002 +2013,10,15,19,30,0,0,0,22,25,1010,85.68,126,3.7,0.17400000000000002 +2013,10,15,20,30,0,0,0,22,25,1010,87.19,130,3.5,0.17400000000000002 +2013,10,15,21,30,0,0,0,22,25,1010,88.3,137.6,3.3000000000000003,0.17400000000000002 +2013,10,15,22,30,0,0,0,23,25,1010,94.69,146.20000000000002,3,0.17400000000000002 +2013,10,15,23,30,0,0,0,23,24,1010,95.63,154.4,2.8000000000000003,0.17400000000000002 +2013,10,16,0,30,0,0,0,23,24,1010,96.32000000000001,161.60000000000002,2.7,0.17400000000000002 +2013,10,16,1,30,0,0,0,23,24,1010,96.23,168,2.5,0.17400000000000002 +2013,10,16,2,30,0,0,0,23,24,1010,96.03,173.4,2.4000000000000004,0.17400000000000002 +2013,10,16,3,30,0,0,0,23,24,1010,96.19,178.20000000000002,2.2,0.17400000000000002 +2013,10,16,4,30,0,0,0,23,23,1010,100,183.20000000000002,1.9000000000000001,0.17400000000000002 +2013,10,16,5,30,0,0,0,23,23,1010,100,192.3,1.6,0.17400000000000002 +2013,10,16,6,30,0,0,0,23,23,1010,100,209.3,1.7000000000000002,0.17400000000000002 +2013,10,16,7,30,414,61,146,23,25,1010,92.38,232.3,2.2,0.17400000000000002 +2013,10,16,8,30,0,13,13,23,26,1010,84.51,244.3,2.4000000000000004,0.17400000000000002 +2013,10,16,9,30,764,105,550,22,27,1010,75.69,248,2.2,0.17400000000000002 +2013,10,16,10,30,813,118,695,21,28,1010,69.29,252.9,1.7000000000000002,0.17400000000000002 +2013,10,16,11,30,831,128,779,21,29,1010,64.78,259.90000000000003,1.2000000000000002,0.17400000000000002 +2013,10,16,12,30,827,134,795,21,30,1010,59.9,267.8,0.7000000000000001,0.17400000000000002 +2013,10,16,13,30,801,136,741,20,30,1010,58.49,290.40000000000003,0.4,0.17400000000000002 +2013,10,16,14,30,752,130,622,20,30,1010,57.52,36,0.6000000000000001,0.17400000000000002 +2013,10,16,15,30,80,216,257,20,29,1010,60.35,51.2,1.2000000000000002,0.17400000000000002 +2013,10,16,16,30,477,95,245,20,28,1010,64.33,44.7,1.8,0.17400000000000002 +2013,10,16,17,30,144,37,51,20,26,1010,73.3,37.7,2.3000000000000003,0.17400000000000002 +2013,10,16,18,30,0,0,0,20,24,1010,82.02,29,3,0.17400000000000002 +2013,10,16,19,30,0,0,0,20,22,1010,89.64,16.400000000000002,3.8000000000000003,0.17400000000000002 +2013,10,16,20,30,0,0,0,19,21,1010,90.61,6.9,4.5,0.17400000000000002 +2013,10,16,21,30,0,0,0,18,20,1010,90.57000000000001,1.6,4.800000000000001,0.17400000000000002 +2013,10,16,22,30,0,0,0,17,19,1010,90.71000000000001,358.5,5,0.17400000000000002 +2013,10,16,23,30,0,0,0,16,19,1010,86.96000000000001,356.1,5,0.17400000000000002 +2013,10,17,0,30,0,0,0,16,18,1010,90.21000000000001,355.1,4.800000000000001,0.17400000000000002 +2013,10,17,1,30,0,0,0,16,18,1010,88.55,355.6,4.6000000000000005,0.17400000000000002 +2013,10,17,2,30,0,0,0,15,18,1010,86.99,357.5,4.4,0.17400000000000002 +2013,10,17,3,30,0,0,0,15,18,1010,90.8,1.5,4.1000000000000005,0.17400000000000002 +2013,10,17,4,30,0,0,0,15,17,1010,89.3,5.800000000000001,3.7,0.17400000000000002 +2013,10,17,5,30,0,0,0,15,17,1010,88.37,6.2,3.4000000000000004,0.17400000000000002 +2013,10,17,6,30,0,0,0,14,17,1010,87.85000000000001,4.6000000000000005,3.5,0.17400000000000002 +2013,10,17,7,30,80,75,91,14,18,1010,81.13,3.4000000000000004,3.8000000000000003,0.17400000000000002 +2013,10,17,8,30,0,109,109,14,19,1010,73.42,5.300000000000001,3.9000000000000004,0.17400000000000002 +2013,10,17,9,30,0,124,124,13,21,1010,64.16,8.8,3.8000000000000003,0.17400000000000002 +2013,10,17,10,30,17,251,263,14,22,1010,61.34,12.700000000000001,3.6,0.17400000000000002 +2013,10,17,11,30,32,316,341,14,23,1010,59.24,16.900000000000002,3.5,0.17400000000000002 +2013,10,17,12,30,829,137,796,15,24,1010,57.24,21.3,3.3000000000000003,0.17400000000000002 +2013,10,17,13,30,816,132,745,15,25,1010,55.01,26,3.1,0.17400000000000002 +2013,10,17,14,30,779,121,628,15,25,1010,55.83,31.3,3,0.17400000000000002 +2013,10,17,15,30,690,110,455,15,25,1010,59.72,37.5,2.9000000000000004,0.17400000000000002 +2013,10,17,16,30,540,83,250,15,24,1010,63.76,42.2,2.6,0.17400000000000002 +2013,10,17,17,30,209,33,53,16,23,1010,72.19,46.300000000000004,2,0.17400000000000002 +2013,10,17,18,30,0,0,0,18,22,1010,83.07000000000001,51,1.7000000000000002,0.17400000000000002 +2013,10,17,19,30,0,0,0,18,21,1010,83.26,55.2,1.8,0.17400000000000002 +2013,10,17,20,30,0,0,0,18,21,1010,83.9,58.7,1.9000000000000001,0.17400000000000002 +2013,10,17,21,30,0,0,0,18,21,1010,84.64,60,1.8,0.17400000000000002 +2013,10,17,22,30,0,0,0,18,21,1010,85.78,58.800000000000004,1.5,0.17400000000000002 +2013,10,17,23,30,0,0,0,18,21,1010,87.06,54.900000000000006,1.4000000000000001,0.17400000000000002 +2013,10,18,0,30,0,0,0,18,21,1010,87.19,52.2,1.5,0.17400000000000002 +2013,10,18,1,30,0,0,0,18,21,1010,86.56,52.7,1.8,0.17400000000000002 +2013,10,18,2,30,0,0,0,18,21,1010,91.96000000000001,51.6,2.2,0.17400000000000002 +2013,10,18,3,30,0,0,0,18,20,1010,92.39,51.7,2.7,0.17400000000000002 +2013,10,18,4,30,0,0,0,18,20,1010,93.7,51.900000000000006,2.8000000000000003,0.17400000000000002 +2013,10,18,5,30,0,0,0,19,20,1010,95.52,51.300000000000004,2.5,0.17400000000000002 +2013,10,18,6,30,0,0,0,19,21,1010,97.81,51.2,2.5,0.17400000000000002 +2013,10,18,7,30,0,9,9,20,22,1010,89.94,57,2.9000000000000004,0.17400000000000002 +2013,10,18,8,30,577,107,341,21,24,1010,83.94,69.7,3.4000000000000004,0.17400000000000002 +2013,10,18,9,30,9,192,198,21,26,1010,78.5,86.2,3.5,0.17400000000000002 +2013,10,18,10,30,0,129,129,22,27,1010,76.22,107.2,3.4000000000000004,0.17400000000000002 +2013,10,18,11,30,6,195,200,22,28,1010,73.26,123.10000000000001,3.4000000000000004,0.17400000000000002 +2013,10,18,12,30,71,369,426,23,28,1000,74.47,131.8,3.5,0.17400000000000002 +2013,10,18,13,30,164,365,488,23,28,1000,75.23,139.3,3.4000000000000004,0.17400000000000002 +2013,10,18,14,30,38,265,290,23,28,1000,80.49,146.3,3.3000000000000003,0.17400000000000002 +2013,10,18,15,30,487,176,417,23,27,1000,80.55,152.6,3,0.17400000000000002 +2013,10,18,16,30,321,124,222,23,26,1000,85.14,157.3,2.4000000000000004,0.17400000000000002 +2013,10,18,17,30,52,35,40,23,25,1000,92.04,156,1.7000000000000002,0.17400000000000002 +2013,10,18,18,30,0,0,0,23,24,1000,99.25,151,1.3,0.17400000000000002 +2013,10,18,19,30,0,0,0,23,24,1000,98.14,151.3,1.2000000000000002,0.17400000000000002 +2013,10,18,20,30,0,0,0,23,24,1010,97.09,159.4,1.1,0.17400000000000002 +2013,10,18,21,30,0,0,0,23,23,1010,100,177.20000000000002,0.9,0.17400000000000002 +2013,10,18,22,30,0,0,0,22,23,1010,99.73,211.10000000000002,0.9,0.17400000000000002 +2013,10,18,23,30,0,0,0,22,22,1010,100,279.7,1.3,0.17400000000000002 +2013,10,19,0,30,0,0,0,21,21,1010,100,323.8,2.7,0.17400000000000002 +2013,10,19,1,30,0,0,0,20,20,1010,100,342.5,4.7,0.17400000000000002 +2013,10,19,2,30,0,0,0,19,19,1010,100,353.1,6.2,0.17400000000000002 +2013,10,19,3,30,0,0,0,18,18,1010,100,1.6,6.7,0.17400000000000002 +2013,10,19,4,30,0,0,0,17,18,1010,96.19,6.300000000000001,6.7,0.17400000000000002 +2013,10,19,5,30,0,0,0,16,17,1010,95.35000000000001,7.9,6.7,0.17400000000000002 +2013,10,19,6,30,0,0,0,14,16,1010,92.24,9.200000000000001,6.9,0.17400000000000002 +2013,10,19,7,30,307,75,136,13,16,1010,84.11,9.200000000000001,7.1000000000000005,0.17400000000000002 +2013,10,19,8,30,105,168,210,12,17,1010,73.75,10.8,7,0.17400000000000002 +2013,10,19,9,30,60,250,284,11,18,1010,67.92,11.8,6.7,0.17400000000000002 +2013,10,19,10,30,86,326,386,12,20,1010,60.7,12.4,6.300000000000001,0.17400000000000002 +2013,10,19,11,30,825,149,786,12,21,1010,57.64,13.600000000000001,5.9,0.17400000000000002 +2013,10,19,12,30,851,140,811,12,23,1010,53.300000000000004,14.8,5.5,0.17400000000000002 +2013,10,19,13,30,861,125,764,11,24,1010,47.59,15.4,5,0.17400000000000002 +2013,10,19,14,30,839,109,648,10,24,1010,41.84,16.5,4.7,0.17400000000000002 +2013,10,19,15,30,772,94,474,9,23,1010,41.26,17.8,4.7,0.17400000000000002 +2013,10,19,16,30,644,69,264,8,22,1010,41.44,17.3,4.3,0.17400000000000002 +2013,10,19,17,30,305,29,55,8,20,1010,52.02,15.9,3.4000000000000004,0.17400000000000002 +2013,10,19,18,30,0,0,0,10,17,1010,66.12,16.5,2.9000000000000004,0.17400000000000002 +2013,10,19,19,30,0,0,0,10,16,1010,71.67,19.200000000000003,2.9000000000000004,0.17400000000000002 +2013,10,19,20,30,0,0,0,10,15,1010,76.71000000000001,21.900000000000002,2.9000000000000004,0.17400000000000002 +2013,10,19,21,30,0,0,0,10,15,1010,81.89,22.400000000000002,2.8000000000000003,0.17400000000000002 +2013,10,19,22,30,0,0,0,10,14,1010,81.52,20.6,2.8000000000000003,0.17400000000000002 +2013,10,19,23,30,0,0,0,10,13,1010,86.18,17.400000000000002,2.9000000000000004,0.17400000000000002 +2013,10,20,0,30,0,0,0,10,13,1010,85.01,15.4,3,0.17400000000000002 +2013,10,20,1,30,0,0,0,10,12,1010,89.72,14.9,3,0.17400000000000002 +2013,10,20,2,30,0,0,0,10,12,1010,89.18,14.8,2.7,0.17400000000000002 +2013,10,20,3,30,0,0,0,10,12,1010,89.07000000000001,17.7,2.5,0.17400000000000002 +2013,10,20,4,30,0,0,0,10,11,1010,95.39,23.6,2.3000000000000003,0.17400000000000002 +2013,10,20,5,30,0,0,0,10,11,1010,96.24000000000001,30.1,2.1,0.17400000000000002 +2013,10,20,6,30,0,0,0,10,12,1010,91.67,35.2,2.2,0.17400000000000002 +2013,10,20,7,30,0,65,65,11,14,1010,82.93,38.800000000000004,2.6,0.17400000000000002 +2013,10,20,8,30,90,168,204,11,18,1010,64.23,46.2,2.5,0.17400000000000002 +2013,10,20,9,30,98,257,313,11,21,1010,53.15,62.6,2.1,0.17400000000000002 +2013,10,20,10,30,341,306,543,10,23,1010,46.410000000000004,75.5,1.6,0.17400000000000002 +2013,10,20,11,30,887,116,797,10,24,1010,43.71,89.5,1.5,0.17400000000000002 +2013,10,20,12,30,858,133,805,11,25,1010,41.45,100.10000000000001,1.7000000000000002,0.17400000000000002 +2013,10,20,13,30,836,131,748,11,26,1010,40.03,109.5,2.1,0.17400000000000002 +2013,10,20,14,30,786,124,625,12,26,1010,42.13,115.30000000000001,2.7,0.17400000000000002 +2013,10,20,15,30,649,126,442,13,26,1010,44.93,121.10000000000001,3.2,0.17400000000000002 +2013,10,20,16,30,466,96,235,14,25,1010,51.550000000000004,121.60000000000001,3.3000000000000003,0.17400000000000002 +2013,10,20,17,30,127,32,43,16,23,1010,70.2,114.80000000000001,3,0.17400000000000002 +2013,10,20,18,30,0,0,0,17,21,1010,81.58,108.4,2.7,0.17400000000000002 +2013,10,20,19,30,0,0,0,18,21,1010,84.89,108.30000000000001,2.4000000000000004,0.17400000000000002 +2013,10,20,20,30,0,0,0,18,21,1010,87.52,114.10000000000001,2.2,0.17400000000000002 +2013,10,20,21,30,0,0,0,19,21,1010,94.71000000000001,122.4,2,0.17400000000000002 +2013,10,20,22,30,0,0,0,19,21,1010,95.57000000000001,128.70000000000002,1.9000000000000001,0.17400000000000002 +2013,10,20,23,30,0,0,0,19,21,1010,96.24000000000001,130.6,1.9000000000000001,0.17400000000000002 +2013,10,21,0,30,0,0,0,19,21,1010,91.52,129.70000000000002,1.8,0.17400000000000002 +2013,10,21,1,30,0,0,0,19,21,1010,92.83,128,1.8,0.17400000000000002 +2013,10,21,2,30,0,0,0,20,21,1010,94.49,122.30000000000001,1.9000000000000001,0.17400000000000002 +2013,10,21,3,30,0,0,0,20,21,1010,96.49000000000001,116.5,1.9000000000000001,0.17400000000000002 +2013,10,21,4,30,0,0,0,20,21,1010,98.3,113.80000000000001,2,0.17400000000000002 +2013,10,21,5,30,0,0,0,20,21,1010,99.81,113.5,2.1,0.17400000000000002 +2013,10,21,6,30,0,0,0,21,21,1010,100,113.7,2.1,0.17400000000000002 +2013,10,21,7,30,0,43,43,21,23,1010,92.98,114.2,2.4000000000000004,0.17400000000000002 +2013,10,21,8,30,16,145,152,22,24,1010,89.74,115.30000000000001,2.8000000000000003,0.17400000000000002 +2013,10,21,9,30,445,208,460,22,25,1010,84.43,120.2,2.8000000000000003,0.17400000000000002 +2013,10,21,10,30,317,310,530,22,26,1010,80.12,124.60000000000001,2.6,0.17400000000000002 +2013,10,21,11,30,225,373,545,22,27,1010,81.94,126.30000000000001,2.3000000000000003,0.17400000000000002 +2013,10,21,12,30,11,239,247,23,27,1010,79.06,124.5,1.9000000000000001,0.17400000000000002 +2013,10,21,13,30,0,33,33,23,27,1000,79.82000000000001,113.7,1.6,0.17400000000000002 +2013,10,21,14,30,0,15,15,23,28,1000,79.49,94.60000000000001,1.5,0.17400000000000002 +2013,10,21,15,30,0,132,132,23,27,1000,78.84,68.5,1.7000000000000002,0.17400000000000002 +2013,10,21,16,30,0,64,64,22,26,1000,83.02,50.1,2.1,0.17400000000000002 +2013,10,21,17,30,0,11,11,23,24,1010,94.16,41.800000000000004,2.7,0.17400000000000002 +2013,10,21,18,30,0,0,0,22,23,1010,97.8,37.9,3.2,0.17400000000000002 +2013,10,21,19,30,0,0,0,22,22,1010,100,37.9,3.6,0.17400000000000002 +2013,10,21,20,30,0,0,0,21,21,1010,100,43.300000000000004,3.7,0.17400000000000002 +2013,10,21,21,30,0,0,0,21,21,1010,100,41.900000000000006,3.8000000000000003,0.17400000000000002 +2013,10,21,22,30,0,0,0,20,20,1010,100,32.2,4,0.17400000000000002 +2013,10,21,23,30,0,0,0,19,20,1010,100,24.200000000000003,4,0.17400000000000002 +2013,10,22,0,30,0,0,0,19,19,1010,100,16.3,3.9000000000000004,0.17400000000000002 +2013,10,22,1,30,0,0,0,18,19,1010,100,4.6000000000000005,3.9000000000000004,0.17400000000000002 +2013,10,22,2,30,0,0,0,18,18,1010,100,349.70000000000005,4.1000000000000005,0.17400000000000002 +2013,10,22,3,30,0,0,0,17,17,1010,100,340,4.4,0.17400000000000002 +2013,10,22,4,30,0,0,0,16,16,1010,100,339.1,4.5,0.17400000000000002 +2013,10,22,5,30,0,0,0,15,16,1010,100,342.70000000000005,4.5,0.17400000000000002 +2013,10,22,6,30,0,0,0,15,16,1010,100,349.8,4.7,0.17400000000000002 +2013,10,22,7,30,204,67,106,14,16,1010,90.98,354,5.1000000000000005,0.17400000000000002 +2013,10,22,8,30,358,141,282,14,18,1010,78.61,358.3,5.1000000000000005,0.17400000000000002 +2013,10,22,9,30,678,153,534,14,20,1010,70.12,358.3,4.9,0.17400000000000002 +2013,10,22,10,30,570,221,614,15,22,1010,65.06,354.40000000000003,4.5,0.17400000000000002 +2013,10,22,11,30,779,177,770,15,24,1010,60.45,348.70000000000005,4.2,0.17400000000000002 +2013,10,22,12,30,822,158,795,16,25,1010,58.08,342.70000000000005,4.2,0.17400000000000002 +2013,10,22,13,30,826,143,746,15,26,1010,53.99,342.5,4.1000000000000005,0.17400000000000002 +2013,10,22,14,30,804,123,630,15,27,1010,52.09,347.3,4.1000000000000005,0.17400000000000002 +2013,10,22,15,30,749,99,458,14,26,1010,49.57,354,4,0.17400000000000002 +2013,10,22,16,30,616,71,250,13,24,1010,53.11,1.8,3.5,0.17400000000000002 +2013,10,22,17,30,266,26,46,14,21,1010,66.48,10.600000000000001,3,0.17400000000000002 +2013,10,22,18,30,0,0,0,14,19,1010,74.83,16.5,3.1,0.17400000000000002 +2013,10,22,19,30,0,0,0,13,18,1010,76.45,18.5,3.5,0.17400000000000002 +2013,10,22,20,30,0,0,0,13,17,1010,78.83,20.200000000000003,3.5,0.17400000000000002 +2013,10,22,21,30,0,0,0,12,16,1010,81.63,21.3,3.3000000000000003,0.17400000000000002 +2013,10,22,22,30,0,0,0,12,15,1010,84.31,22.1,2.9000000000000004,0.17400000000000002 +2013,10,22,23,30,0,0,0,11,14,1010,86.91,22.1,2.5,0.17400000000000002 +2013,10,23,0,30,0,0,0,11,14,1010,89.75,21.3,2.2,0.17400000000000002 +2013,10,23,1,30,0,0,0,10,13,1010,87.41,18.900000000000002,2.2,0.17400000000000002 +2013,10,23,2,30,0,0,0,10,13,1010,85.56,13.4,2.2,0.17400000000000002 +2013,10,23,3,30,0,0,0,10,12,1010,90.09,9.600000000000001,2.2,0.17400000000000002 +2013,10,23,4,30,0,0,0,10,12,1010,89.7,8.1,2.3000000000000003,0.17400000000000002 +2013,10,23,5,30,0,0,0,10,12,1010,89.47,7.6000000000000005,2.3000000000000003,0.17400000000000002 +2013,10,23,6,30,0,0,0,10,13,1020,83.91,7,2.5,0.17400000000000002 +2013,10,23,7,30,584,44,153,11,15,1020,77.57000000000001,6.2,3,0.17400000000000002 +2013,10,23,8,30,791,66,375,10,18,1020,63.29,5.4,3,0.17400000000000002 +2013,10,23,9,30,883,80,574,10,21,1020,52.160000000000004,18.900000000000002,2.9000000000000004,0.17400000000000002 +2013,10,23,10,30,929,88,725,9,24,1020,39.72,43.1,3,0.17400000000000002 +2013,10,23,11,30,950,93,812,9,25,1020,37.51,55.400000000000006,3.1,0.17400000000000002 +2013,10,23,12,30,946,98,827,9,26,1010,35.27,66.10000000000001,3.2,0.17400000000000002 +2013,10,23,13,30,933,95,772,9,27,1010,33.51,73.8,3.2,0.17400000000000002 +2013,10,23,14,30,897,88,649,9,26,1010,35.69,79,3.2,0.17400000000000002 +2013,10,23,15,30,818,80,469,9,25,1010,38.08,83,3.1,0.17400000000000002 +2013,10,23,16,30,676,60,255,10,24,1010,42.050000000000004,86.5,2.5,0.17400000000000002 +2013,10,23,17,30,304,24,46,14,21,1010,64.93,91.80000000000001,1.9000000000000001,0.17400000000000002 +2013,10,23,18,30,0,0,0,14,19,1010,77.53,97.7,1.9000000000000001,0.17200000000000001 +2013,10,23,19,30,0,0,0,14,18,1010,77.83,101.2,2,0.17200000000000001 +2013,10,23,20,30,0,0,0,14,18,1010,83.72,104.80000000000001,2,0.17200000000000001 +2013,10,23,21,30,0,0,0,14,17,1010,84.54,107.30000000000001,1.9000000000000001,0.17200000000000001 +2013,10,23,22,30,0,0,0,14,17,1010,85.05,109.9,1.8,0.17200000000000001 +2013,10,23,23,30,0,0,0,14,17,1010,85.15,112.30000000000001,1.7000000000000002,0.17200000000000001 +2013,10,24,0,30,0,0,0,14,17,1010,85.46000000000001,112,1.6,0.17200000000000001 +2013,10,24,1,30,0,0,0,14,17,1010,86.27,107.7,1.5,0.17200000000000001 +2013,10,24,2,30,0,0,0,14,17,1010,86.91,100.30000000000001,1.2000000000000002,0.17200000000000001 +2013,10,24,3,30,0,0,0,14,17,1010,87.7,89.10000000000001,1.1,0.17200000000000001 +2013,10,24,4,30,0,0,0,15,17,1010,88.69,69.2,1,0.17200000000000001 +2013,10,24,5,30,0,0,0,15,16,1020,95.82000000000001,46.800000000000004,1.2000000000000002,0.17200000000000001 +2013,10,24,6,30,0,0,0,15,16,1020,97.60000000000001,33.4,1.4000000000000001,0.17200000000000001 +2013,10,24,7,30,544,46,147,16,17,1020,94.23,28.6,2,0.17200000000000001 +2013,10,24,8,30,760,71,365,16,20,1020,79.18,34.7,2.5,0.17200000000000001 +2013,10,24,9,30,858,84,562,15,23,1020,61.82,65.60000000000001,2.7,0.17200000000000001 +2013,10,24,10,30,906,93,711,14,25,1020,52.97,76,2.8000000000000003,0.17200000000000001 +2013,10,24,11,30,926,99,797,14,26,1020,49.51,80,3,0.17200000000000001 +2013,10,24,12,30,919,105,810,14,27,1020,49.44,85.2,3.2,0.17200000000000001 +2013,10,24,13,30,901,103,754,14,27,1010,46.72,90.2,3.4000000000000004,0.17200000000000001 +2013,10,24,14,30,860,97,631,14,26,1010,49.92,93.80000000000001,3.7,0.17200000000000001 +2013,10,24,15,30,766,90,452,14,25,1010,53.46,94.5,3.8000000000000003,0.17200000000000001 +2013,10,24,16,30,610,68,241,15,24,1010,57.54,94.60000000000001,3.3000000000000003,0.17200000000000001 +2013,10,24,17,30,228,24,40,16,22,1010,70.54,95.2,2.5,0.17200000000000001 +2013,10,24,18,30,0,0,0,17,20,1020,83.02,96.7,2.3000000000000003,0.17200000000000001 +2013,10,24,19,30,0,0,0,17,20,1020,83.76,99.30000000000001,2.2,0.17200000000000001 +2013,10,24,20,30,0,0,0,17,19,1020,89.71000000000001,101,2.2,0.17200000000000001 +2013,10,24,21,30,0,0,0,17,19,1020,89.92,103,2.1,0.17200000000000001 +2013,10,24,22,30,0,0,0,17,19,1020,89.86,106.7,2,0.17200000000000001 +2013,10,24,23,30,0,0,0,17,19,1020,90.53,110.2,2,0.17200000000000001 +2013,10,25,0,30,0,0,0,17,19,1020,91.38,113.4,1.9000000000000001,0.17200000000000001 +2013,10,25,1,30,0,0,0,17,19,1020,91.43,115.9,1.8,0.17200000000000001 +2013,10,25,2,30,0,0,0,17,19,1020,91.67,116.5,1.8,0.17200000000000001 +2013,10,25,3,30,0,0,0,17,19,1020,91.86,113.9,1.8,0.17200000000000001 +2013,10,25,4,30,0,0,0,17,19,1020,92.46000000000001,108.7,1.8,0.17200000000000001 +2013,10,25,5,30,0,0,0,17,19,1020,92.89,102.60000000000001,1.9000000000000001,0.17200000000000001 +2013,10,25,6,30,0,0,0,17,19,1020,93.36,94.7,2,0.17200000000000001 +2013,10,25,7,30,396,59,131,18,21,1020,86.79,87.30000000000001,2.8000000000000003,0.17200000000000001 +2013,10,25,8,30,641,93,340,18,24,1020,72.8,83.7,3.7,0.17200000000000001 +2013,10,25,9,30,761,111,532,18,25,1020,67.01,88.9,4.1000000000000005,0.17200000000000001 +2013,10,25,10,30,818,123,677,18,26,1020,62.38,96.30000000000001,4.5,0.17200000000000001 +2013,10,25,11,30,13,249,259,18,27,1020,58.53,100.80000000000001,4.800000000000001,0.17200000000000001 +2013,10,25,12,30,43,328,361,18,28,1020,54.9,104.5,5.2,0.17200000000000001 +2013,10,25,13,30,16,255,267,17,28,1020,57.65,107.80000000000001,5.5,0.17200000000000001 +2013,10,25,14,30,818,106,611,17,27,1020,57.2,110.4,5.6000000000000005,0.17200000000000001 +2013,10,25,15,30,685,110,430,17,26,1020,60.18,111.4,5.7,0.17200000000000001 +2013,10,25,16,30,563,72,230,17,25,1020,64.33,110.7,5.300000000000001,0.17200000000000001 +2013,10,25,17,30,198,24,37,18,24,1020,70.23,109.30000000000001,4.2,0.17200000000000001 +2013,10,25,18,30,0,0,0,18,22,1020,82.29,106.60000000000001,3.6,0.17200000000000001 +2013,10,25,19,30,0,0,0,19,22,1020,83.2,107.60000000000001,3.5,0.17200000000000001 +2013,10,25,20,30,0,0,0,19,22,1020,83.65,110.60000000000001,3.5,0.17200000000000001 +2013,10,25,21,30,0,0,0,19,22,1020,83.92,114.10000000000001,3.6,0.17200000000000001 +2013,10,25,22,30,0,0,0,19,22,1020,84,117.60000000000001,3.5,0.17200000000000001 +2013,10,25,23,30,0,0,0,19,22,1020,83.88,121.7,3.4000000000000004,0.17200000000000001 +2013,10,26,0,30,0,0,0,19,22,1020,83.98,123,3.2,0.17200000000000001 +2013,10,26,1,30,0,0,0,19,22,1020,89.36,122.60000000000001,3.1,0.17200000000000001 +2013,10,26,2,30,0,0,0,19,21,1020,89.58,122.80000000000001,2.9000000000000004,0.17200000000000001 +2013,10,26,3,30,0,0,0,19,21,1010,89.83,122.60000000000001,2.8000000000000003,0.17200000000000001 +2013,10,26,4,30,0,0,0,19,21,1010,89.97,122.30000000000001,2.8000000000000003,0.17200000000000001 +2013,10,26,5,30,0,0,0,19,21,1010,90.2,123.9,2.9000000000000004,0.17200000000000001 +2013,10,26,6,30,0,0,0,19,21,1010,90.28,126.80000000000001,3.1,0.17200000000000001 +2013,10,26,7,30,149,65,91,19,23,1020,81.18,130.8,3.7,0.17200000000000001 +2013,10,26,8,30,524,121,321,19,25,1020,71.82000000000001,134.5,4.5,0.17200000000000001 +2013,10,26,9,30,682,138,513,18,26,1020,64.7,138.70000000000002,4.800000000000001,0.17200000000000001 +2013,10,26,10,30,755,148,657,18,27,1020,60.25,140.20000000000002,4.800000000000001,0.17200000000000001 +2013,10,26,11,30,115,359,445,18,28,1010,56.1,140.20000000000002,4.800000000000001,0.17200000000000001 +2013,10,26,12,30,111,368,453,18,29,1010,55.77,138.20000000000002,4.800000000000001,0.17200000000000001 +2013,10,26,13,30,727,175,694,18,28,1010,55.550000000000004,136.20000000000002,4.9,0.17200000000000001 +2013,10,26,14,30,670,164,576,18,28,1010,55.32,134,5,0.17200000000000001 +2013,10,26,15,30,296,187,325,18,27,1010,58.83,133.1,4.9,0.17200000000000001 +2013,10,26,16,30,344,92,187,18,26,1010,63.370000000000005,131.8,4.4,0.17200000000000001 +2013,10,26,17,30,77,25,30,19,24,1010,74.44,128.5,3.5,0.17200000000000001 +2013,10,26,18,30,0,0,0,20,23,1010,83.56,124.2,3.1,0.17200000000000001 +2013,10,26,19,30,0,0,0,20,23,1010,90.82000000000001,125.10000000000001,3.1,0.17200000000000001 +2013,10,26,20,30,0,0,0,20,22,1010,92.12,129.20000000000002,2.9000000000000004,0.17200000000000001 +2013,10,26,21,30,0,0,0,20,22,1010,92.89,136,2.7,0.17200000000000001 +2013,10,26,22,30,0,0,0,20,22,1010,93.23,142.70000000000002,2.6,0.17200000000000001 +2013,10,26,23,30,0,0,0,20,21,1010,99.27,149.4,2.5,0.17200000000000001 +2013,10,27,0,30,0,0,0,20,21,1010,99.3,156.70000000000002,2.4000000000000004,0.17200000000000001 +2013,10,27,1,30,0,0,0,20,21,1010,99.22,165.10000000000002,2.3000000000000003,0.17200000000000001 +2013,10,27,2,30,0,0,0,20,21,1010,100,172.5,2,0.17200000000000001 +2013,10,27,3,30,0,0,0,20,20,1010,100,177.10000000000002,1.7000000000000002,0.17200000000000001 +2013,10,27,4,30,0,0,0,20,20,1010,100,176.3,1.5,0.17200000000000001 +2013,10,27,5,30,0,0,0,20,20,1010,100,170.3,1.4000000000000001,0.17200000000000001 +2013,10,27,6,30,0,0,0,20,20,1010,100,164.20000000000002,1.2000000000000002,0.17200000000000001 +2013,10,27,7,30,323,63,120,21,22,1010,97.28,160.3,1.5,0.17200000000000001 +2013,10,27,8,30,589,102,324,21,25,1010,79.45,159.4,1.9000000000000001,0.17200000000000001 +2013,10,27,9,30,727,118,516,20,26,1010,71.3,166,1.8,0.17200000000000001 +2013,10,27,10,30,789,131,660,20,27,1010,66.29,167.70000000000002,1.8,0.17200000000000001 +2013,10,27,11,30,827,133,747,19,28,1010,61.83,164.9,1.8,0.17200000000000001 +2013,10,27,12,30,819,141,760,19,29,1010,57.04,159.20000000000002,1.9000000000000001,0.17200000000000001 +2013,10,27,13,30,805,134,707,19,30,1010,55.76,148.70000000000002,2.2,0.17200000000000001 +2013,10,27,14,30,6,192,196,19,29,1010,54.99,141.9,2.5,0.17200000000000001 +2013,10,27,15,30,102,199,246,18,28,1010,57.730000000000004,137.70000000000002,2.9000000000000004,0.17200000000000001 +2013,10,27,16,30,388,99,204,18,27,1010,61.480000000000004,133.6,3.2,0.17200000000000001 +2013,10,27,17,30,42,23,26,19,25,1010,73.46000000000001,128.9,3.3000000000000003,0.17200000000000001 +2013,10,27,18,30,0,0,0,20,24,1010,81.81,126.60000000000001,3.3000000000000003,0.17200000000000001 +2013,10,27,19,30,0,0,0,21,23,1010,89.42,128.6,3.1,0.17200000000000001 +2013,10,27,20,30,0,0,0,21,23,1010,91.24,133.4,2.9000000000000004,0.17200000000000001 +2013,10,27,21,30,0,0,0,21,23,1010,97.67,140.4,2.7,0.17200000000000001 +2013,10,27,22,30,0,0,0,21,22,1010,97.84,146.9,2.7,0.17200000000000001 +2013,10,27,23,30,0,0,0,21,22,1010,98.11,154.10000000000002,2.6,0.17200000000000001 +2013,10,28,0,30,0,0,0,21,22,1010,98.43,160.20000000000002,2.5,0.17200000000000001 +2013,10,28,1,30,0,0,0,21,22,1010,100,165.4,2.4000000000000004,0.17200000000000001 +2013,10,28,2,30,0,0,0,21,21,1010,100,169.9,2.3000000000000003,0.17200000000000001 +2013,10,28,3,30,0,0,0,21,21,1010,100,170.3,2.1,0.17200000000000001 +2013,10,28,4,30,0,0,0,21,21,1010,100,166.70000000000002,2.1,0.17200000000000001 +2013,10,28,5,30,0,0,0,20,21,1010,100,160.8,2.1,0.17200000000000001 +2013,10,28,6,30,0,0,0,21,21,1010,100,154.10000000000002,2.2,0.17200000000000001 +2013,10,28,7,30,468,47,128,22,23,1010,94.56,147.3,3.1,0.17200000000000001 +2013,10,28,8,30,707,72,337,21,26,1010,77.06,145.5,4.1000000000000005,0.17200000000000001 +2013,10,28,9,30,812,87,528,21,27,1010,70.09,146.9,4.5,0.17200000000000001 +2013,10,28,10,30,865,95,672,20,28,1010,65.01,145.6,4.6000000000000005,0.17200000000000001 +2013,10,28,11,30,886,100,755,20,29,1010,60.300000000000004,143.3,4.9,0.17200000000000001 +2013,10,28,12,30,877,108,768,20,30,1010,56.15,140.4,5.1000000000000005,0.17200000000000001 +2013,10,28,13,30,853,108,712,20,30,1010,55.870000000000005,137.20000000000002,5.4,0.17200000000000001 +2013,10,28,14,30,801,105,591,20,29,1010,59.550000000000004,134.3,5.6000000000000005,0.17200000000000001 +2013,10,28,15,30,721,90,420,20,28,1010,63.71,131.3,5.800000000000001,0.17200000000000001 +2013,10,28,16,30,542,69,216,20,27,1010,68.64,128.8,5.7,0.17200000000000001 +2013,10,28,17,30,118,22,29,21,25,1010,79.31,126.5,5.2,0.17200000000000001 +2013,10,28,18,30,0,0,0,21,24,1010,86.99,124.30000000000001,4.800000000000001,0.17200000000000001 +2013,10,28,19,30,0,0,0,21,24,1010,88.52,126.9,4.6000000000000005,0.17200000000000001 +2013,10,28,20,30,0,0,0,22,24,1010,88.96000000000001,131.70000000000002,4.4,0.17200000000000001 +2013,10,28,21,30,0,0,0,22,24,1010,89.08,135.4,4.1000000000000005,0.17200000000000001 +2013,10,28,22,30,0,0,0,22,24,1010,89.39,138.8,4.1000000000000005,0.17200000000000001 +2013,10,28,23,30,0,0,0,22,24,1010,89.82000000000001,141.9,4.1000000000000005,0.17200000000000001 +2013,10,29,0,30,0,0,0,22,24,1010,90.15,144.5,4.2,0.17200000000000001 +2013,10,29,1,30,0,0,0,22,24,1010,90.41,146.4,4.2,0.17200000000000001 +2013,10,29,2,30,0,0,0,22,24,1010,96.43,149.4,4.1000000000000005,0.17200000000000001 +2013,10,29,3,30,0,0,0,22,24,1010,96.91,150.5,4,0.17200000000000001 +2013,10,29,4,30,0,0,0,22,24,1010,97.35000000000001,151.9,4.1000000000000005,0.17200000000000001 +2013,10,29,5,30,0,0,0,22,24,1010,91.64,151.8,4.1000000000000005,0.17200000000000001 +2013,10,29,6,30,0,0,0,22,24,1010,91.98,151.70000000000002,4.1000000000000005,0.17200000000000001 +2013,10,29,7,30,306,60,113,22,25,1010,87.34,151,4.6000000000000005,0.17200000000000001 +2013,10,29,8,30,571,100,313,22,26,1010,82.34,151.1,5.2,0.17200000000000001 +2013,10,29,9,30,697,123,499,22,27,1010,75.46000000000001,155,5.6000000000000005,0.17200000000000001 +2013,10,29,10,30,765,135,643,22,28,1010,70.03,154.60000000000002,5.7,0.17200000000000001 +2013,10,29,11,30,797,141,726,21,29,1010,65.1,152.1,5.7,0.17200000000000001 +2013,10,29,12,30,453,290,630,21,29,1010,63.940000000000005,149.3,5.7,0.17200000000000001 +2013,10,29,13,30,415,292,583,21,29,1010,63.08,145.70000000000002,5.9,0.17200000000000001 +2013,10,29,14,30,758,119,576,21,28,1010,66.55,141.3,6,0.17200000000000001 +2013,10,29,15,30,660,106,406,21,27,1010,71.13,137,5.9,0.17200000000000001 +2013,10,29,16,30,0,62,62,21,26,1010,76.77,133.4,5.6000000000000005,0.17200000000000001 +2013,10,29,17,30,80,22,26,22,25,1010,83.77,130.1,5,0.17200000000000001 +2013,10,29,18,30,0,0,0,22,24,1010,92.21000000000001,125.9,4.3,0.17200000000000001 +2013,10,29,19,30,0,0,0,23,24,1010,95.19,124.30000000000001,3.8000000000000003,0.17200000000000001 +2013,10,29,20,30,0,0,0,23,24,1010,97.97,122,3.4000000000000004,0.17200000000000001 +2013,10,29,21,30,0,0,0,24,24,1010,100,121.7,3.5,0.17200000000000001 +2013,10,29,22,30,0,0,0,24,24,1010,100,126.7,4.1000000000000005,0.17200000000000001 +2013,10,29,23,30,0,0,0,24,25,1010,96.49000000000001,132.5,4.6000000000000005,0.17200000000000001 +2013,10,30,0,30,0,0,0,24,25,1010,97.23,136.70000000000002,4.6000000000000005,0.17200000000000001 +2013,10,30,1,30,0,0,0,24,25,1010,97.78,140.8,4.6000000000000005,0.17200000000000001 +2013,10,30,2,30,0,0,0,24,25,1010,97.45,145.5,4.800000000000001,0.17200000000000001 +2013,10,30,3,30,0,0,0,24,25,1010,97.21000000000001,148.6,4.800000000000001,0.17200000000000001 +2013,10,30,4,30,0,0,0,24,25,1010,97.51,150.6,4.9,0.17200000000000001 +2013,10,30,5,30,0,0,0,24,25,1010,100,150.3,4.9,0.17200000000000001 +2013,10,30,6,30,0,0,0,24,25,1010,100,149.9,4.7,0.17200000000000001 +2013,10,30,7,30,371,52,114,24,25,1010,98.39,147.3,5,0.17200000000000001 +2013,10,30,8,30,653,77,318,24,27,1010,86.29,151.8,5.800000000000001,0.17200000000000001 +2013,10,30,9,30,134,242,314,23,28,1010,76.96000000000001,159.9,6.2,0.17200000000000001 +2013,10,30,10,30,34,269,292,23,29,1010,70.64,163.20000000000002,6.4,0.17200000000000001 +2013,10,30,11,30,200,356,503,23,30,1010,66.34,164.10000000000002,6.5,0.17200000000000001 +2013,10,30,12,30,817,128,736,23,30,1010,66.19,163.20000000000002,6.5,0.17200000000000001 +2013,10,30,13,30,304,320,533,23,30,1010,66.19,161.4,6.5,0.17200000000000001 +2013,10,30,14,30,460,223,498,23,30,1000,70.24,159,6.5,0.17200000000000001 +2013,10,30,15,30,272,184,307,23,29,1000,70.53,157.70000000000002,6.4,0.17200000000000001 +2013,10,30,16,30,165,101,145,23,28,1000,75.64,154.9,6,0.17200000000000001 +2013,10,30,17,30,0,14,14,23,26,1000,87.57000000000001,149.20000000000002,5.5,0.17200000000000001 +2013,10,30,18,30,0,0,0,24,26,1000,90.66,145.3,5.1000000000000005,0.17200000000000001 +2013,10,30,19,30,0,0,0,24,26,1010,97.94,146.3,4.800000000000001,0.17200000000000001 +2013,10,30,20,30,0,0,0,24,25,1010,98.82000000000001,148.70000000000002,4.6000000000000005,0.17200000000000001 +2013,10,30,21,30,0,0,0,24,25,1000,99.31,153,4.5,0.17200000000000001 +2013,10,30,22,30,0,0,0,24,25,1000,99.86,159.10000000000002,4.4,0.17200000000000001 +2013,10,30,23,30,0,0,0,25,25,1000,100,166.4,4.3,0.17200000000000001 +2013,10,31,0,30,0,0,0,25,25,1000,100,173.4,4.6000000000000005,0.17200000000000001 +2013,10,31,1,30,0,0,0,24,25,1000,99.88,180.3,4.800000000000001,0.17200000000000001 +2013,10,31,2,30,0,0,0,24,25,1000,98.98,183.70000000000002,4.800000000000001,0.17200000000000001 +2013,10,31,3,30,0,0,0,24,25,1000,98.31,183.20000000000002,4.9,0.17200000000000001 +2013,10,31,4,30,0,0,0,24,25,1000,97.84,182.10000000000002,5,0.17200000000000001 +2013,10,31,5,30,0,0,0,24,25,1000,97.63,183,4.9,0.17200000000000001 +2013,10,31,6,30,0,0,0,24,25,1000,97.7,186.70000000000002,4.800000000000001,0.17200000000000001 +2013,10,31,7,30,0,28,28,24,25,1000,97.95,194,4.4,0.17200000000000001 +2013,10,31,8,30,0,120,120,24,26,1010,98.73,205,4.2,0.17200000000000001 +2013,10,31,9,30,0,109,109,24,26,1010,92.46000000000001,216.8,4.3,0.17200000000000001 +2013,10,31,10,30,1,175,176,23,27,1010,83.58,232.4,3.9000000000000004,0.17200000000000001 +2013,10,31,11,30,46,312,346,22,28,1010,73.04,258,3.3000000000000003,0.17200000000000001 +2013,10,31,12,30,51,327,364,21,28,1000,65.82000000000001,293,3,0.17200000000000001 +2013,10,31,13,30,36,287,312,19,29,1000,56.63,328.40000000000003,3,0.17200000000000001 +2013,10,31,14,30,304,258,439,18,30,1000,51.02,347.8,2.9000000000000004,0.17200000000000001 +2013,10,31,15,30,691,94,403,18,30,1000,49.75,352.70000000000005,2.4000000000000004,0.17200000000000001 +2013,10,31,16,30,548,65,207,18,29,1000,52.26,358,1.6,0.17200000000000001 +2013,10,31,17,30,150,18,26,20,26,1000,72.26,24.5,1.1,0.17200000000000001 +2013,10,31,18,30,0,0,0,19,24,1000,76.4,37.7,1.2000000000000002,0.17 +2013,10,31,19,30,0,0,0,19,23,1000,83.39,38.400000000000006,1.5,0.17 +2013,10,31,20,30,0,0,0,19,22,1010,84.48,43.1,1.8,0.17 +2013,10,31,21,30,0,0,0,19,21,1010,92.76,51.1,2.3000000000000003,0.17 +2013,10,31,22,30,0,0,0,20,21,1010,96.3,59,2.7,0.17 +2013,10,31,23,30,0,0,0,20,21,1010,99.67,68.5,2.8000000000000003,0.17 +2013,11,1,0,30,0,0,0,21,21,1010,100,76.7,2.6,0.17 +2013,11,1,1,30,0,0,0,20,20,1010,100,82.7,2.4000000000000004,0.17 +2013,11,1,2,30,0,0,0,20,20,1010,100,85.4,2.2,0.17 +2013,11,1,3,30,0,0,0,20,20,1010,100,88.5,2,0.17 +2013,11,1,4,30,0,0,0,19,20,1010,100,92.30000000000001,1.8,0.17 +2013,11,1,5,30,0,0,0,19,19,1010,100,95.80000000000001,1.8,0.17 +2013,11,1,6,30,0,0,0,19,20,1010,95.46000000000001,98.4,1.7000000000000002,0.17 +2013,11,1,7,30,478,43,121,19,22,1010,84.86,101.2,2.1,0.17 +2013,11,1,8,30,717,69,329,19,25,1010,69.60000000000001,106.10000000000001,2.6,0.17 +2013,11,1,9,30,820,84,519,17,27,1010,55.88,117.9,2.7,0.17 +2013,11,1,10,30,869,94,661,16,29,1010,49.800000000000004,129.6,2.6,0.17 +2013,11,1,11,30,887,101,743,16,30,1010,46.52,141.4,2.5,0.17 +2013,11,1,12,30,860,117,750,16,30,1010,44.7,152.4,2.5,0.17 +2013,11,1,13,30,826,120,692,17,31,1000,43.72,158.60000000000002,2.5,0.17 +2013,11,1,14,30,757,120,568,17,31,1000,45.38,162.20000000000002,2.4000000000000004,0.17 +2013,11,1,15,30,599,123,389,18,30,1000,49.32,166.70000000000002,2.3000000000000003,0.17 +2013,11,1,16,30,374,93,189,18,29,1000,54.6,166.5,2,0.17 +2013,11,1,17,30,0,18,18,21,27,1000,75.37,154.70000000000002,1.9000000000000001,0.17 +2013,11,1,18,30,0,0,0,21,25,1010,81.96000000000001,149.4,1.8,0.17 +2013,11,1,19,30,0,0,0,21,24,1010,86.22,154.4,1.3,0.17 +2013,11,1,20,30,0,0,0,21,22,1010,94.57000000000001,169.20000000000002,0.8,0.17 +2013,11,1,21,30,0,0,0,19,21,1010,92.77,262.7,1.1,0.17 +2013,11,1,22,30,0,0,0,17,20,1010,86.45,320.3,2.7,0.17 +2013,11,1,23,30,0,0,0,14,18,1010,80.11,339.5,4.6000000000000005,0.17 +2013,11,2,0,30,0,0,0,11,17,1010,67.77,352.40000000000003,5.6000000000000005,0.17 +2013,11,2,1,30,0,0,0,9,17,1010,62.13,359.20000000000005,5.4,0.17 +2013,11,2,2,30,0,0,0,9,16,1010,66.24,359.1,5.2,0.17 +2013,11,2,3,30,0,0,0,9,16,1010,66.8,356.6,5.2,0.17 +2013,11,2,4,30,0,0,0,9,15,1010,71.05,355.6,5.2,0.17 +2013,11,2,5,30,0,0,0,9,15,1010,74.56,356.3,5.1000000000000005,0.17 +2013,11,2,6,30,0,0,0,9,15,1020,74.05,359.6,5,0.17 +2013,11,2,7,30,592,38,132,9,16,1020,65.31,1.6,5.5,0.17 +2013,11,2,8,30,830,59,357,8,18,1020,54.5,12.3,6.300000000000001,0.17 +2013,11,2,9,30,929,71,560,6,21,1020,39.15,21.200000000000003,6.800000000000001,0.17 +2013,11,2,10,30,976,78,712,4,23,1020,30.02,20.3,6.800000000000001,0.17 +2013,11,2,11,30,993,84,798,3,24,1020,26.44,16.8,6.7,0.17 +2013,11,2,12,30,982,90,811,3,25,1020,24.39,15,6.5,0.17 +2013,11,2,13,30,965,88,752,3,25,1020,24.23,16.1,6.300000000000001,0.17 +2013,11,2,14,30,926,82,626,3,25,1020,24.22,18.5,6,0.17 +2013,11,2,15,30,834,76,443,3,24,1020,26.07,21.1,5.6000000000000005,0.17 +2013,11,2,16,30,672,56,227,3,22,1020,30.5,23.6,4.6000000000000005,0.17 +2013,11,2,17,30,218,17,26,6,19,1020,44.77,27.400000000000002,3.4000000000000004,0.17 +2013,11,2,18,30,0,0,0,8,17,1020,58.620000000000005,31.900000000000002,3,0.17 +2013,11,2,19,30,0,0,0,9,16,1020,65.28,34.1,2.8000000000000003,0.17 +2013,11,2,20,30,0,0,0,9,16,1020,67.18,35.4,2.8000000000000003,0.17 +2013,11,2,21,30,0,0,0,10,15,1020,72.82000000000001,34.9,2.8000000000000003,0.17 +2013,11,2,22,30,0,0,0,10,15,1020,78.52,33.7,2.9000000000000004,0.17 +2013,11,2,23,30,0,0,0,10,14,1020,78.88,33.9,2.9000000000000004,0.17 +2013,11,3,0,30,0,0,0,10,13,1020,83.81,33.9,3,0.17 +2013,11,3,1,30,0,0,0,10,13,1020,87.86,34.7,2.9000000000000004,0.17 +2013,11,3,2,30,0,0,0,9,12,1020,85.45,34.5,2.8000000000000003,0.17 +2013,11,3,3,30,0,0,0,9,11,1020,88.94,33.4,2.7,0.17 +2013,11,3,4,30,0,0,0,9,11,1020,87.74,34.7,2.6,0.17 +2013,11,3,5,30,0,0,0,9,11,1020,88,38.400000000000006,2.5,0.17 +2013,11,3,6,30,0,0,0,9,11,1020,89.5,44,2.2,0.17 +2013,11,3,7,30,552,40,126,10,14,1020,78.10000000000001,47.7,2.1,0.17 +2013,11,3,8,30,781,65,343,10,18,1020,60.300000000000004,44.300000000000004,1.8,0.17 +2013,11,3,9,30,874,80,538,9,21,1020,47.78,72.4,1.4000000000000001,0.17 +2013,11,3,10,30,920,90,684,9,22,1010,43.83,108.2,1.4000000000000001,0.17 +2013,11,3,11,30,937,96,768,9,23,1010,41.87,117.60000000000001,1.8,0.17 +2013,11,3,12,30,925,104,779,9,24,1010,40.5,119.9,2.5,0.17 +2013,11,3,13,30,902,102,720,10,25,1010,39.36,121.4,3.4000000000000004,0.17 +2013,11,3,14,30,123,269,341,10,25,1010,40.79,122.80000000000001,4.1000000000000005,0.17 +2013,11,3,15,30,754,87,417,11,24,1010,44.69,121.7,4.4,0.17 +2013,11,3,16,30,259,89,154,11,23,1010,51.94,120.9,4.1000000000000005,0.17 +2013,11,3,17,30,0,22,22,12,20,1010,62.53,121.30000000000001,3.4000000000000004,0.17 +2013,11,3,18,30,0,0,0,13,19,1010,71.78,123.5,2.9000000000000004,0.17 +2013,11,3,19,30,0,0,0,14,19,1010,78.75,128.3,2.8000000000000003,0.17 +2013,11,3,20,30,0,0,0,14,18,1010,80.18,136.6,2.7,0.17 +2013,11,3,21,30,0,0,0,14,18,1010,80.84,144.5,2.5,0.17 +2013,11,3,22,30,0,0,0,15,18,1010,82.76,148.3,2.3000000000000003,0.17 +2013,11,3,23,30,0,0,0,15,18,1010,84.56,151.1,2.3000000000000003,0.17 +2013,11,4,0,30,0,0,0,15,19,1010,86.99,153.4,2.4000000000000004,0.17 +2013,11,4,1,30,0,0,0,16,19,1010,84.02,153.9,2.5,0.17 +2013,11,4,2,30,0,0,0,16,18,1010,90.82000000000001,155.20000000000002,2.5,0.17 +2013,11,4,3,30,0,0,0,16,18,1010,92.23,159.8,2.2,0.17 +2013,11,4,4,30,0,0,0,16,18,1010,92.93,163.60000000000002,1.8,0.17 +2013,11,4,5,30,0,0,0,17,18,1010,94.5,157.3,1.6,0.17 +2013,11,4,6,30,0,0,0,17,18,1010,96.33,150.20000000000002,1,0.17 +2013,11,4,7,30,161,54,79,17,20,1010,87.65,163.3,0.7000000000000001,0.17 +2013,11,4,8,30,0,51,51,17,23,1010,75.66,150.70000000000002,1.5,0.17 +2013,11,4,9,30,70,224,260,16,24,1010,64.32000000000001,142.1,2.8000000000000003,0.17 +2013,11,4,10,30,22,243,257,16,25,1010,61.1,140.1,3.6,0.17 +2013,11,4,11,30,23,271,288,16,26,1010,57.480000000000004,141.1,4.1000000000000005,0.17 +2013,11,4,12,30,36,301,328,16,26,1010,57.19,137.3,4.6000000000000005,0.17 +2013,11,4,13,30,74,311,362,16,26,1010,60.95,131.6,4.9,0.17 +2013,11,4,14,30,82,260,308,17,25,1010,62.13,127,4.800000000000001,0.17 +2013,11,4,15,30,224,182,279,17,25,1010,68.14,122.4,4.6000000000000005,0.17 +2013,11,4,16,30,68,95,112,18,24,1010,74.85000000000001,119,3.9000000000000004,0.17 +2013,11,4,17,30,0,10,10,19,23,1010,83.63,117.5,3,0.17 +2013,11,4,18,30,0,0,0,19,22,1010,85.96000000000001,121.10000000000001,2.8000000000000003,0.17 +2013,11,4,19,30,0,0,0,19,22,1010,86.43,126.7,3,0.17 +2013,11,4,20,30,0,0,0,19,22,1010,87.11,129.6,3.1,0.17 +2013,11,4,21,30,0,0,0,19,21,1010,93.29,134.20000000000002,3,0.17 +2013,11,4,22,30,0,0,0,20,21,1010,94.28,142,2.5,0.17 +2013,11,4,23,30,0,0,0,20,21,1010,95.25,149.3,2.3000000000000003,0.17 +2013,11,5,0,30,0,0,0,20,21,1010,95.88,153,2.1,0.17 +2013,11,5,1,30,0,0,0,20,21,1010,96.17,151.1,2.1,0.17 +2013,11,5,2,30,0,0,0,20,21,1010,96.64,147.3,2.2,0.17 +2013,11,5,3,30,0,0,0,20,21,1010,97.63,145.20000000000002,2.3000000000000003,0.17 +2013,11,5,4,30,0,0,0,20,21,1010,99.09,142.8,2.4000000000000004,0.17 +2013,11,5,5,30,0,0,0,21,21,1010,100,140,2.4000000000000004,0.17 +2013,11,5,6,30,0,0,0,21,21,1010,100,136.20000000000002,2.5,0.17 +2013,11,5,7,30,354,47,101,21,23,1010,92.14,133.4,3.3000000000000003,0.17 +2013,11,5,8,30,630,79,299,21,25,1010,81.93,139.70000000000002,4.2,0.17 +2013,11,5,9,30,766,90,486,21,26,1010,75.49,149.70000000000002,4.800000000000001,0.17 +2013,11,5,10,30,829,97,627,20,27,1010,69.55,153.5,5.1000000000000005,0.17 +2013,11,5,11,30,110,340,418,20,28,1010,64.36,154.8,5.4,0.17 +2013,11,5,12,30,829,118,717,20,28,1010,63.92,154.10000000000002,5.7,0.17 +2013,11,5,13,30,801,119,662,20,29,1010,63.84,152,6,0.17 +2013,11,5,14,30,0,157,157,20,28,1010,64.12,149.3,6.1000000000000005,0.17 +2013,11,5,15,30,604,113,373,20,27,1010,68.48,146.70000000000002,6,0.17 +2013,11,5,16,30,389,83,178,20,26,1010,73.78,144.20000000000002,5.6000000000000005,0.17 +2013,11,5,17,30,21,13,14,21,25,1010,80.64,141.1,4.800000000000001,0.17 +2013,11,5,18,30,0,0,0,22,24,1010,88.92,138.1,4.2,0.17 +2013,11,5,19,30,0,0,0,22,24,1010,91.11,138.5,3.9000000000000004,0.17 +2013,11,5,20,30,0,0,0,22,23,1010,98.01,139.6,3.5,0.17 +2013,11,5,21,30,0,0,0,22,23,1010,98.44,142.8,3.1,0.17 +2013,11,5,22,30,0,0,0,22,23,1010,98.51,145.6,2.7,0.17 +2013,11,5,23,30,0,0,0,22,22,1010,100,147.5,2.4000000000000004,0.17 +2013,11,6,0,30,0,0,0,22,22,1010,100,147.9,2.3000000000000003,0.17 +2013,11,6,1,30,0,0,0,22,22,1010,100,149.20000000000002,2.3000000000000003,0.17 +2013,11,6,2,30,0,0,0,22,22,1010,100,148,2.2,0.17 +2013,11,6,3,30,0,0,0,22,22,1010,100,145.4,2.1,0.17 +2013,11,6,4,30,0,0,0,21,21,1010,100,143.20000000000002,2,0.17 +2013,11,6,5,30,0,0,0,21,21,1010,100,142.1,1.8,0.17 +2013,11,6,6,30,0,0,0,21,21,1010,100,141,1.7000000000000002,0.17 +2013,11,6,7,30,386,43,100,23,23,1010,100,137.9,2,0.17 +2013,11,6,8,30,149,142,193,23,26,1010,91.11,137,2.4000000000000004,0.17 +2013,11,6,9,30,121,229,291,22,27,1010,78.19,146.5,2.4000000000000004,0.17 +2013,11,6,10,30,130,293,376,22,28,1010,70.11,151.1,2,0.17 +2013,11,6,11,30,320,320,546,21,29,1010,63.59,151.9,1.7000000000000002,0.17 +2013,11,6,12,30,10,225,233,21,29,1010,62.660000000000004,141.3,1.4000000000000001,0.17 +2013,11,6,13,30,840,100,666,21,28,1010,65.96000000000001,115.80000000000001,1.5,0.17 +2013,11,6,14,30,0,24,24,21,27,1010,70.27,91.60000000000001,1.9000000000000001,0.17 +2013,11,6,15,30,197,181,265,21,26,1010,75.38,75.60000000000001,2.6,0.17 +2013,11,6,16,30,17,88,92,21,24,1010,84.5,57.300000000000004,3.5,0.17 +2013,11,6,17,30,0,7,7,20,22,1010,91.65,40.900000000000006,4.9,0.17 +2013,11,6,18,30,0,0,0,18,20,1010,93.24,31.900000000000002,6.300000000000001,0.17 +2013,11,6,19,30,0,0,0,16,18,1020,90.37,27.6,6.800000000000001,0.17 +2013,11,6,20,30,0,0,0,14,17,1020,83.11,25.400000000000002,6.5,0.17 +2013,11,6,21,30,0,0,0,12,16,1020,80.66,20.3,6.1000000000000005,0.17 +2013,11,6,22,30,0,0,0,11,16,1020,81.87,14.100000000000001,6,0.17 +2013,11,6,23,30,0,0,0,11,15,1020,78.85000000000001,9.8,6.300000000000001,0.17 +2013,11,7,0,30,0,0,0,10,14,1020,80.35000000000001,10.100000000000001,6.6000000000000005,0.17 +2013,11,7,1,30,0,0,0,10,14,1020,82.29,10.100000000000001,6.800000000000001,0.17 +2013,11,7,2,30,0,0,0,9,13,1020,78.76,8.1,6.800000000000001,0.17 +2013,11,7,3,30,0,0,0,8,13,1020,75.76,6.6000000000000005,6.7,0.17 +2013,11,7,4,30,0,0,0,8,13,1020,78.11,6.2,6.6000000000000005,0.17 +2013,11,7,5,30,0,0,0,7,12,1020,75.39,5.5,6.5,0.17 +2013,11,7,6,30,0,0,0,7,12,1020,71.98,5.1000000000000005,6.5,0.17 +2013,11,7,7,30,0,20,20,6,12,1020,67.95,6.1000000000000005,6.6000000000000005,0.17 +2013,11,7,8,30,0,93,93,5,13,1020,59.19,7.9,6.6000000000000005,0.17 +2013,11,7,9,30,6,173,177,3,14,1020,50.9,9.1,6.4,0.17 +2013,11,7,10,30,264,287,454,3,16,1020,42.06,8.5,6.1000000000000005,0.17 +2013,11,7,11,30,79,324,380,2,17,1020,37.56,7.6000000000000005,5.800000000000001,0.17 +2013,11,7,12,30,50,313,349,1,18,1020,33.980000000000004,9.3,5.6000000000000005,0.17 +2013,11,7,13,30,908,88,697,1,19,1020,31.900000000000002,13.4,5.4,0.17 +2013,11,7,14,30,380,229,446,2,20,1020,30.76,18.6,5.2,0.17 +2013,11,7,15,30,319,164,300,2,19,1020,34.46,22.5,4.9,0.17 +2013,11,7,16,30,134,92,124,3,18,1020,39.21,25.1,4.1000000000000005,0.17 +2013,11,7,17,30,0,11,11,6,16,1020,52.2,24.5,3.2,0.17 +2013,11,7,18,30,0,0,0,8,15,1020,63.65,20.3,2.9000000000000004,0.17 +2013,11,7,19,30,0,0,0,8,14,1020,70.4,15.5,3,0.17 +2013,11,7,20,30,0,0,0,9,13,1020,77.10000000000001,10.600000000000001,3.2,0.17 +2013,11,7,21,30,0,0,0,9,13,1020,78.42,5.7,3.4000000000000004,0.17 +2013,11,7,22,30,0,0,0,9,13,1020,84.60000000000001,1.8,3.6,0.17 +2013,11,7,23,30,0,0,0,9,12,1020,84.99,0.30000000000000004,3.7,0.17 +2013,11,8,0,30,0,0,0,9,12,1020,85.32000000000001,3.2,3.8000000000000003,0.17 +2013,11,8,1,30,0,0,0,9,11,1020,91.79,7.6000000000000005,3.8000000000000003,0.17 +2013,11,8,2,30,0,0,0,9,11,1020,92.53,9.4,3.8000000000000003,0.17 +2013,11,8,3,30,0,0,0,9,11,1020,93.23,9.3,3.8000000000000003,0.17 +2013,11,8,4,30,0,0,0,10,11,1020,93.87,9.4,3.9000000000000004,0.17 +2013,11,8,5,30,0,0,0,10,11,1020,94.32000000000001,10,4,0.17 +2013,11,8,6,30,0,0,0,10,11,1020,94.27,10,4.1000000000000005,0.17 +2013,11,8,7,30,96,51,65,10,12,1020,88.04,9.5,4.4,0.17 +2013,11,8,8,30,602,80,285,9,14,1020,75.62,17.1,4.6000000000000005,0.17 +2013,11,8,9,30,403,190,394,9,17,1020,62.17,30.400000000000002,4.5,0.17 +2013,11,8,10,30,820,111,626,10,18,1020,60.35,35.5,4,0.17 +2013,11,8,11,30,839,121,707,10,19,1020,58.1,37.800000000000004,3.5,0.17 +2013,11,8,12,30,848,119,723,10,20,1020,55.38,37,3.1,0.17 +2013,11,8,13,30,829,116,669,10,21,1020,52.42,33,2.9000000000000004,0.17 +2013,11,8,14,30,783,107,552,10,21,1020,52.39,30.1,2.8000000000000003,0.17 +2013,11,8,15,30,695,91,384,10,20,1020,55.57,34.4,2.8000000000000003,0.17 +2013,11,8,16,30,507,65,185,10,19,1020,59.69,42.400000000000006,2.5,0.17 +2013,11,8,17,30,62,12,14,12,18,1020,71.85000000000001,48.6,2.2,0.17 +2013,11,8,18,30,0,0,0,13,17,1020,84.64,51.300000000000004,2.2,0.168 +2013,11,8,19,30,0,0,0,13,16,1020,85.22,52.300000000000004,2.1,0.168 +2013,11,8,20,30,0,0,0,13,16,1020,85.9,52.900000000000006,2,0.168 +2013,11,8,21,30,0,0,0,13,16,1020,86.52,51.300000000000004,1.8,0.168 +2013,11,8,22,30,0,0,0,13,15,1020,92.54,47.900000000000006,1.7000000000000002,0.168 +2013,11,8,23,30,0,0,0,13,15,1020,92.66,44.7,1.6,0.168 +2013,11,9,0,30,0,0,0,13,15,1010,92.68,42.6,1.6,0.168 +2013,11,9,1,30,0,0,0,13,15,1010,92.55,40.6,1.6,0.168 +2013,11,9,2,30,0,0,0,13,15,1010,92.53,38.400000000000006,1.6,0.168 +2013,11,9,3,30,0,0,0,13,15,1010,98.93,36.6,1.7000000000000002,0.168 +2013,11,9,4,30,0,0,0,13,15,1010,99.60000000000001,36.4,1.8,0.168 +2013,11,9,5,30,0,0,0,14,15,1010,94.37,39.300000000000004,1.8,0.168 +2013,11,9,6,30,0,0,0,14,15,1010,95.46000000000001,43.7,1.9000000000000001,0.168 +2013,11,9,7,30,85,50,62,14,17,1020,86.49,48.300000000000004,2.3000000000000003,0.168 +2013,11,9,8,30,592,84,284,15,19,1020,77.66,52.7,2.6,0.168 +2013,11,9,9,30,713,107,465,15,22,1020,65.4,74.2,2.2,0.168 +2013,11,9,10,30,50,266,298,15,23,1020,62.75,93.7,1.9000000000000001,0.168 +2013,11,9,11,30,50,303,338,15,24,1010,59.84,104.2,1.8,0.168 +2013,11,9,12,30,31,287,309,15,25,1010,57.28,111.7,1.9000000000000001,0.168 +2013,11,9,13,30,105,312,382,16,25,1010,58.01,116.5,2,0.168 +2013,11,9,14,30,94,254,307,16,25,1010,58.69,118.4,2.2,0.168 +2013,11,9,15,30,0,113,113,16,24,1010,62.65,117.9,2.3000000000000003,0.168 +2013,11,9,16,30,357,85,168,16,23,1010,67.27,113.10000000000001,2.1,0.168 +2013,11,9,17,30,0,10,10,17,21,1010,82.15,105.60000000000001,1.9000000000000001,0.168 +2013,11,9,18,30,0,0,0,18,20,1010,88.7,99.2,1.9000000000000001,0.168 +2013,11,9,19,30,0,0,0,18,20,1010,94.21000000000001,98,2,0.168 +2013,11,9,20,30,0,0,0,18,19,1010,94.32000000000001,98.2,1.9000000000000001,0.168 +2013,11,9,21,30,0,0,0,18,19,1010,94.41,98.10000000000001,1.7000000000000002,0.168 +2013,11,9,22,30,0,0,0,18,19,1020,100,96.9,1.5,0.168 +2013,11,9,23,30,0,0,0,18,19,1010,100,93.5,1.3,0.168 +2013,11,10,0,30,0,0,0,18,19,1010,100,87.2,1.2000000000000002,0.168 +2013,11,10,1,30,0,0,0,18,18,1020,100,79.7,1.1,0.168 +2013,11,10,2,30,0,0,0,18,18,1020,100,70.3,1.1,0.168 +2013,11,10,3,30,0,0,0,18,18,1020,100,56.5,1.2000000000000002,0.168 +2013,11,10,4,30,0,0,0,17,18,1020,100,44.6,1.4000000000000001,0.168 +2013,11,10,5,30,0,0,0,17,17,1020,100,37.5,1.8,0.168 +2013,11,10,6,30,0,0,0,17,17,1020,100,36.6,2.4000000000000004,0.168 +2013,11,10,7,30,251,51,85,18,19,1020,96.24000000000001,38.400000000000006,3.4000000000000004,0.168 +2013,11,10,8,30,59,135,155,18,21,1020,85.61,42.5,4.1000000000000005,0.168 +2013,11,10,9,30,0,145,145,18,22,1020,80.44,46.5,4.2,0.168 +2013,11,10,10,30,4,190,193,18,23,1020,74.95,47.5,4.2,0.168 +2013,11,10,11,30,7,212,217,18,24,1020,69.55,49.900000000000006,4.1000000000000005,0.168 +2013,11,10,12,30,0,150,150,17,24,1020,68.5,54.400000000000006,4.1000000000000005,0.168 +2013,11,10,13,30,0,163,163,17,24,1020,68,57.900000000000006,4,0.168 +2013,11,10,14,30,0,148,148,17,24,1020,67.77,60.2,4,0.168 +2013,11,10,15,30,0,62,62,17,23,1020,71.28,61.7,4.1000000000000005,0.168 +2013,11,10,16,30,378,81,169,17,22,1020,74.61,61.2,3.8000000000000003,0.168 +2013,11,10,17,30,0,10,10,17,21,1020,85.08,60.1,3.2,0.168 +2013,11,10,18,30,0,0,0,17,20,1020,85.62,58.900000000000006,2.8000000000000003,0.168 +2013,11,10,19,30,0,0,0,17,19,1020,89.5,56.900000000000006,2.7,0.168 +2013,11,10,20,30,0,0,0,16,19,1020,88.11,54.5,2.6,0.168 +2013,11,10,21,30,0,0,0,16,18,1020,92.78,52.6,2.4000000000000004,0.168 +2013,11,10,22,30,0,0,0,16,18,1020,92.13,49.7,2.3000000000000003,0.168 +2013,11,10,23,30,0,0,0,16,18,1020,91.06,45.300000000000004,2.3000000000000003,0.168 +2013,11,11,0,30,0,0,0,16,17,1020,95.32000000000001,40.6,2.2,0.168 +2013,11,11,1,30,0,0,0,15,17,1020,93.14,35.6,2.2,0.168 +2013,11,11,2,30,0,0,0,15,17,1020,96.46000000000001,31.900000000000002,2.3000000000000003,0.168 +2013,11,11,3,30,0,0,0,14,16,1020,93.45,30.200000000000003,2.4000000000000004,0.168 +2013,11,11,4,30,0,0,0,14,16,1020,90.63,29.5,2.5,0.168 +2013,11,11,5,30,0,0,0,14,16,1020,88.23,29.200000000000003,2.6,0.168 +2013,11,11,6,30,0,0,0,13,16,1020,86.37,27.6,3,0.168 +2013,11,11,7,30,0,23,23,13,16,1020,84.87,25.700000000000003,3.5,0.168 +2013,11,11,8,30,0,75,75,13,18,1020,74.38,23.5,3.7,0.168 +2013,11,11,9,30,12,177,183,13,20,1020,66.69,28.200000000000003,3.7,0.168 +2013,11,11,10,30,112,287,357,13,22,1020,59.47,33.7,3.6,0.168 +2013,11,11,11,30,104,326,398,13,23,1020,56.47,35.300000000000004,3.4000000000000004,0.168 +2013,11,11,12,30,316,319,541,14,24,1020,53.74,36,3.3000000000000003,0.168 +2013,11,11,13,30,386,275,529,14,24,1020,54.01,38.400000000000006,3.3000000000000003,0.168 +2013,11,11,14,30,731,122,531,14,24,1010,53.93,42.300000000000004,3.3000000000000003,0.168 +2013,11,11,15,30,618,109,364,14,23,1010,57.11,47.400000000000006,3.1,0.168 +2013,11,11,16,30,433,73,173,14,22,1010,63.07,52.900000000000006,2.6,0.168 +2013,11,11,17,30,43,9,10,16,20,1010,78.76,58.300000000000004,2.3000000000000003,0.168 +2013,11,11,18,30,0,0,0,16,19,1020,85.07000000000001,62.300000000000004,2.3000000000000003,0.168 +2013,11,11,19,30,0,0,0,16,19,1020,86.54,64.10000000000001,2.3000000000000003,0.168 +2013,11,11,20,30,0,0,0,17,19,1020,93.96000000000001,64.9,2.2,0.168 +2013,11,11,21,30,0,0,0,17,18,1020,94.84,63.2,2.1,0.168 +2013,11,11,22,30,0,0,0,17,18,1020,94.67,58.6,2.1,0.168 +2013,11,11,23,30,0,0,0,17,18,1020,94.08,52.900000000000006,2.1,0.168 +2013,11,12,0,30,0,0,0,16,18,1020,93.11,46.6,2.2,0.168 +2013,11,12,1,30,0,0,0,16,17,1020,97.47,38.2,2.4000000000000004,0.168 +2013,11,12,2,30,0,0,0,16,17,1020,94.89,29.3,2.8000000000000003,0.168 +2013,11,12,3,30,0,0,0,15,17,1020,98.03,23.1,3.3000000000000003,0.168 +2013,11,12,4,30,0,0,0,15,16,1020,94.91,20.5,3.8000000000000003,0.168 +2013,11,12,5,30,0,0,0,14,16,1020,91.78,16.3,4,0.168 +2013,11,12,6,30,0,0,0,14,16,1020,88.7,12.8,4.2,0.168 +2013,11,12,7,30,0,39,39,13,16,1020,85.86,11.8,4.6000000000000005,0.168 +2013,11,12,8,30,0,97,97,13,17,1020,78.97,13.5,5.1000000000000005,0.168 +2013,11,12,9,30,188,217,310,12,19,1020,67.57000000000001,19.3,5.9,0.168 +2013,11,12,10,30,457,237,518,12,20,1020,60.35,25,6.9,0.168 +2013,11,12,11,30,68,310,357,11,21,1020,54.67,28.3,7.7,0.168 +2013,11,12,12,30,133,337,429,11,21,1020,53.64,28.6,8.1,0.168 +2013,11,12,13,30,386,274,527,11,20,1020,56.65,27.400000000000002,8.1,0.168 +2013,11,12,14,30,211,257,374,11,20,1020,56.28,26.200000000000003,7.800000000000001,0.168 +2013,11,12,15,30,0,135,135,11,19,1020,59.77,23.8,7.5,0.168 +2013,11,12,16,30,289,78,143,10,18,1020,63.52,19.6,7,0.168 +2013,11,12,17,30,34,9,10,10,17,1020,71.48,15.200000000000001,6.7,0.168 +2013,11,12,18,30,0,0,0,10,15,1020,74.87,12.4,6.7,0.168 +2013,11,12,19,30,0,0,0,9,14,1030,76.19,12.200000000000001,7,0.168 +2013,11,12,20,30,0,0,0,8,13,1030,76.59,12.100000000000001,7.1000000000000005,0.168 +2013,11,12,21,30,0,0,0,8,13,1030,77.02,12.200000000000001,7.2,0.168 +2013,11,12,22,30,0,0,0,7,12,1030,73.65,12.9,7.300000000000001,0.168 +2013,11,12,23,30,0,0,0,7,12,1030,72.33,13.100000000000001,7.2,0.168 +2013,11,13,0,30,0,0,0,7,12,1030,71.97,13.200000000000001,7,0.168 +2013,11,13,1,30,0,0,0,6,12,1030,75.97,13.200000000000001,6.7,0.168 +2013,11,13,2,30,0,0,0,6,11,1030,73.72,12.600000000000001,6.5,0.168 +2013,11,13,3,30,0,0,0,5,10,1030,75.61,11,6.4,0.168 +2013,11,13,4,30,0,0,0,5,9,1030,77.98,10.4,6.300000000000001,0.168 +2013,11,13,5,30,0,0,0,5,8,1030,81.85000000000001,11.200000000000001,6.2,0.168 +2013,11,13,6,30,0,0,0,4,8,1030,80.51,12.8,6.1000000000000005,0.168 +2013,11,13,7,30,64,45,53,4,8,1030,77.15,14.3,6,0.168 +2013,11,13,8,30,394,107,235,3,8,1030,71.08,13.8,5.800000000000001,0.168 +2013,11,13,9,30,605,130,426,1,8,1030,63.77,13.3,5.4,0.168 +2013,11,13,10,30,495,217,520,0,9,1030,54.46,12,5,0.168 +2013,11,13,11,30,683,180,645,0,10,1030,47.56,9.200000000000001,4.5,0.168 +2013,11,13,12,30,944,102,757,-1,11,1030,42.45,5.9,4.1000000000000005,0.168 +2013,11,13,13,30,495,238,561,-1,12,1030,38.31,5,3.8000000000000003,0.168 +2013,11,13,14,30,889,90,582,-2,12,1030,37.51,6.9,3.5,0.168 +2013,11,13,15,30,807,60,389,-2,12,1020,37.04,11.3,3.2,0.168 +2013,11,13,16,30,490,58,169,-2,11,1020,40.27,17.3,2.4000000000000004,0.168 +2013,11,13,17,30,0,0,0,2,10,1020,57.9,24.400000000000002,1.8,0.168 +2013,11,13,18,30,0,0,0,3,9,1020,66.3,32.9,1.6,0.168 +2013,11,13,19,30,0,0,0,3,9,1020,67.22,39.2,1.5,0.168 +2013,11,13,20,30,0,0,0,3,9,1020,68.44,42.7,1.5,0.168 +2013,11,13,21,30,0,0,0,3,9,1020,69.81,39,1.5,0.168 +2013,11,13,22,30,0,0,0,3,9,1020,70.76,30,1.5,0.168 +2013,11,13,23,30,0,0,0,4,9,1020,71.7,20.5,1.5,0.168 +2013,11,14,0,30,0,0,0,4,8,1020,77.64,11.100000000000001,1.5,0.168 +2013,11,14,1,30,0,0,0,4,8,1020,78.11,3.4000000000000004,1.6,0.168 +2013,11,14,2,30,0,0,0,4,8,1020,77.71000000000001,1.3,1.7000000000000002,0.168 +2013,11,14,3,30,0,0,0,4,8,1020,77.47,3.6,1.8,0.168 +2013,11,14,4,30,0,0,0,4,8,1020,78.46000000000001,7.9,1.8,0.168 +2013,11,14,5,30,0,0,0,4,8,1020,80.3,14.700000000000001,1.8,0.168 +2013,11,14,6,30,0,0,0,5,8,1020,82.74,22.5,1.8,0.168 +2013,11,14,7,30,21,43,45,5,9,1020,80.66,27.900000000000002,1.9000000000000001,0.168 +2013,11,14,8,30,126,130,171,6,10,1020,79.49,29.1,2.2,0.168 +2013,11,14,9,30,394,182,374,7,12,1020,71.72,30.700000000000003,2.4000000000000004,0.168 +2013,11,14,10,30,164,284,384,7,14,1020,66.32000000000001,35.2,2.3000000000000003,0.168 +2013,11,14,11,30,47,292,325,8,15,1020,66,49.7,2.1,0.168 +2013,11,14,12,30,23,265,282,9,16,1020,66.6,69.8,2,0.168 +2013,11,14,13,30,36,267,290,10,17,1020,66.98,95.30000000000001,2.1,0.168 +2013,11,14,14,30,7,184,188,11,18,1010,66.84,112.30000000000001,2.2,0.168 +2013,11,14,15,30,0,122,122,12,18,1010,71.56,122.7,2,0.168 +2013,11,14,16,30,26,82,88,14,17,1010,84.8,126.10000000000001,1.6,0.168 +2013,11,14,17,30,0,0,0,14,16,1010,90.57000000000001,126.2,1.4000000000000001,0.168 +2013,11,14,18,30,0,0,0,14,16,1010,89.03,132.4,1.3,0.168 +2013,11,14,19,30,0,0,0,14,16,1010,90.41,143.4,1.4000000000000001,0.168 +2013,11,14,20,30,0,0,0,14,16,1010,92.82000000000001,147,1.6,0.168 +2013,11,14,21,30,0,0,0,15,15,1010,100,151.70000000000002,1.6,0.168 +2013,11,14,22,30,0,0,0,15,15,1010,100,160.20000000000002,1.4000000000000001,0.168 +2013,11,14,23,30,0,0,0,15,15,1010,100,176,1.2000000000000002,0.168 +2013,11,15,0,30,0,0,0,15,15,1010,100,194.4,1.1,0.168 +2013,11,15,1,30,0,0,0,14,14,1010,100,225.20000000000002,1.1,0.168 +2013,11,15,2,30,0,0,0,14,14,1010,100,267.1,1.1,0.168 +2013,11,15,3,30,0,0,0,14,14,1010,100,289.1,1.1,0.168 +2013,11,15,4,30,0,0,0,14,14,1010,100,301.6,0.9,0.168 +2013,11,15,5,30,0,0,0,14,14,1010,100,315.1,0.7000000000000001,0.168 +2013,11,15,6,30,0,0,0,14,14,1010,100,341.5,0.6000000000000001,0.168 +2013,11,15,7,30,254,45,76,14,15,1010,98.55,7.800000000000001,0.7000000000000001,0.168 +2013,11,15,8,30,571,85,267,15,18,1010,89.9,34.1,0.9,0.168 +2013,11,15,9,30,720,105,452,15,20,1010,77.22,80.4,1.3,0.168 +2013,11,15,10,30,795,115,595,16,23,1010,66.04,153,2,0.168 +2013,11,15,11,30,828,121,679,16,24,1010,62.96,168.60000000000002,2.4000000000000004,0.168 +2013,11,15,12,30,845,117,699,16,25,1010,59.76,169.3,2.4000000000000004,0.168 +2013,11,15,13,30,827,114,647,16,26,1010,59.92,164,2.5,0.168 +2013,11,15,14,30,779,105,532,16,25,1010,59.95,156.20000000000002,2.6,0.168 +2013,11,15,15,30,675,92,365,16,24,1010,63.56,150,2.7,0.168 +2013,11,15,16,30,475,65,170,16,23,1010,67.99,142.8,2.4000000000000004,0.168 +2013,11,15,17,30,0,0,0,17,21,1010,81.58,131.3,2.3000000000000003,0.168 +2013,11,15,18,30,0,0,0,18,19,1010,94.5,124.60000000000001,2.6,0.168 +2013,11,15,19,30,0,0,0,18,19,1010,97.67,126,2.8000000000000003,0.168 +2013,11,15,20,30,0,0,0,18,18,1010,100,131.8,2.7,0.168 +2013,11,15,21,30,0,0,0,18,18,1010,100,141.3,2.6,0.168 +2013,11,15,22,30,0,0,0,18,18,1010,100,150.20000000000002,2.6,0.168 +2013,11,15,23,30,0,0,0,18,18,1010,100,157,2.6,0.168 +2013,11,16,0,30,0,0,0,18,18,1010,100,161.3,2.5,0.168 +2013,11,16,1,30,0,0,0,18,18,1010,100,164.4,2.4000000000000004,0.168 +2013,11,16,2,30,0,0,0,17,17,1010,100,166.70000000000002,2.3000000000000003,0.168 +2013,11,16,3,30,0,0,0,17,17,1010,100,167.10000000000002,2.1,0.168 +2013,11,16,4,30,0,0,0,17,17,1010,100,165.10000000000002,1.9000000000000001,0.168 +2013,11,16,5,30,0,0,0,17,18,1010,100,161.20000000000002,1.9000000000000001,0.168 +2013,11,16,6,30,0,0,0,18,18,1010,100,155.60000000000002,2.1,0.168 +2013,11,16,7,30,0,29,29,20,20,1010,100,151.20000000000002,2.8000000000000003,0.168 +2013,11,16,8,30,0,73,73,21,23,1010,95.73,149.3,3.6,0.168 +2013,11,16,9,30,35,191,208,21,24,1010,91.82000000000001,154.10000000000002,4.1000000000000005,0.168 +2013,11,16,10,30,0,148,148,21,24,1010,86.85000000000001,160,4.4,0.168 +2013,11,16,11,30,12,228,236,21,25,1010,82.3,165.4,4.4,0.168 +2013,11,16,12,30,0,116,116,21,25,1010,82.55,168.8,4.4,0.168 +2013,11,16,13,30,2,181,183,21,26,1000,77.55,169,4.3,0.168 +2013,11,16,14,30,0,111,111,21,26,1000,77.42,164.5,4.1000000000000005,0.168 +2013,11,16,15,30,75,167,198,21,25,1000,82.66,157.10000000000002,3.9000000000000004,0.168 +2013,11,16,16,30,0,67,67,22,24,1000,89.79,148.3,3.5,0.168 +2013,11,16,17,30,0,0,0,22,23,1000,98.11,142.70000000000002,3.4000000000000004,0.168 +2013,11,16,18,30,0,0,0,22,23,1000,99.34,144.6,3.7,0.163 +2013,11,16,19,30,0,0,0,22,23,1000,99.92,149.6,4,0.163 +2013,11,16,20,30,0,0,0,22,23,1000,100,155,4.1000000000000005,0.163 +2013,11,16,21,30,0,0,0,22,22,1000,100,159.8,4.2,0.163 +2013,11,16,22,30,0,0,0,22,22,1000,100,162.3,4.3,0.163 +2013,11,16,23,30,0,0,0,22,22,1000,100,166.20000000000002,4.1000000000000005,0.163 +2013,11,17,0,30,0,0,0,22,22,1000,100,171.4,3.8000000000000003,0.163 +2013,11,17,1,30,0,0,0,21,21,1000,100,176.3,3.4000000000000004,0.163 +2013,11,17,2,30,0,0,0,21,21,1000,100,178.4,3.2,0.163 +2013,11,17,3,30,0,0,0,21,21,1000,100,175.10000000000002,3.1,0.163 +2013,11,17,4,30,0,0,0,21,21,1000,100,169,3.1,0.163 +2013,11,17,5,30,0,0,0,21,21,1000,100,164.20000000000002,3.2,0.163 +2013,11,17,6,30,0,0,0,21,21,1000,100,162.4,3.4000000000000004,0.163 +2013,11,17,7,30,0,33,33,22,22,1000,100,162.9,3.9000000000000004,0.163 +2013,11,17,8,30,0,64,64,22,24,1010,90.89,168.3,4.5,0.163 +2013,11,17,9,30,81,206,244,22,26,1010,85.14,181.3,4.6000000000000005,0.163 +2013,11,17,10,30,90,271,325,22,27,1010,75.14,189.60000000000002,4.2,0.163 +2013,11,17,11,30,40,281,308,22,28,1010,70.54,194,3.6,0.163 +2013,11,17,12,30,358,300,544,22,29,1000,70.17,195.60000000000002,2.9000000000000004,0.163 +2013,11,17,13,30,764,129,617,21,29,1000,65.79,197.9,2.2,0.163 +2013,11,17,14,30,722,116,508,21,30,1000,65.09,197.3,1.5,0.163 +2013,11,17,15,30,647,92,350,21,29,1000,64.74,180,1.2000000000000002,0.163 +2013,11,17,16,30,451,63,162,21,28,1000,73.16,146.1,1.1,0.163 +2013,11,17,17,30,0,0,0,23,25,1000,90.46000000000001,125.5,1.4000000000000001,0.163 +2013,11,17,18,30,0,0,0,22,23,1010,99.64,126.30000000000001,2.3000000000000003,0.163 +2013,11,17,19,30,0,0,0,23,23,1010,100,134,2.9000000000000004,0.163 +2013,11,17,20,30,0,0,0,22,22,1010,100,142.8,2.8000000000000003,0.163 +2013,11,17,21,30,0,0,0,22,22,1010,100,152.20000000000002,2.6,0.163 +2013,11,17,22,30,0,0,0,21,22,1010,100,160.9,2.4000000000000004,0.163 +2013,11,17,23,30,0,0,0,21,21,1010,100,169,2.2,0.163 +2013,11,18,0,30,0,0,0,21,21,1010,100,176.10000000000002,2.1,0.163 +2013,11,18,1,30,0,0,0,20,20,1010,100,182.5,2,0.163 +2013,11,18,2,30,0,0,0,20,20,1010,100,188.60000000000002,1.7000000000000002,0.163 +2013,11,18,3,30,0,0,0,20,20,1010,100,193.3,1.4000000000000001,0.163 +2013,11,18,4,30,0,0,0,20,20,1010,100,197.3,1.1,0.163 +2013,11,18,5,30,0,0,0,20,20,1010,100,202.9,0.8,0.163 +2013,11,18,6,30,0,0,0,21,21,1010,100,210.4,0.4,0.163 +2013,11,18,7,30,242,41,69,21,22,1010,97.88,240.60000000000002,0.4,0.163 +2013,11,18,8,30,539,87,253,22,24,1010,89.39,32.1,1.1,0.163 +2013,11,18,9,30,668,115,431,22,26,1010,79.85000000000001,45.5,1.9000000000000001,0.163 +2013,11,18,10,30,742,130,571,22,27,1010,74.77,49.400000000000006,2.4000000000000004,0.163 +2013,11,18,11,30,784,134,655,21,28,1010,69.34,52.5,2.7,0.163 +2013,11,18,12,30,801,130,674,21,29,1010,64.38,57.400000000000006,2.8000000000000003,0.163 +2013,11,18,13,30,786,124,625,21,29,1010,63.22,61.800000000000004,2.9000000000000004,0.163 +2013,11,18,14,30,89,241,289,21,28,1010,65.95,63,3.1,0.163 +2013,11,18,15,30,614,104,348,20,27,1010,68.73,61.400000000000006,3.3000000000000003,0.163 +2013,11,18,16,30,95,85,106,20,26,1010,72.9,61.6,3.3000000000000003,0.163 +2013,11,18,17,30,0,0,0,21,24,1010,85.91,66.10000000000001,3.2,0.163 +2013,11,18,18,30,0,0,0,21,23,1010,99.93,69.4,2.9000000000000004,0.163 +2013,11,18,19,30,0,0,0,22,22,1010,100,66.10000000000001,2.7,0.163 +2013,11,18,20,30,0,0,0,22,22,1010,100,57.6,2.8000000000000003,0.163 +2013,11,18,21,30,0,0,0,22,22,1010,100,48.400000000000006,3.3000000000000003,0.163 +2013,11,18,22,30,0,0,0,21,21,1010,100,43.800000000000004,4.1000000000000005,0.163 +2013,11,18,23,30,0,0,0,20,20,1010,100,43.400000000000006,4.7,0.163 +2013,11,19,0,30,0,0,0,18,19,1010,99.85000000000001,43.300000000000004,4.800000000000001,0.163 +2013,11,19,1,30,0,0,0,17,19,1010,95.79,43.300000000000004,4.6000000000000005,0.163 +2013,11,19,2,30,0,0,0,16,18,1010,88.60000000000001,42.300000000000004,4.4,0.163 +2013,11,19,3,30,0,0,0,15,18,1010,85.15,41.800000000000004,4.1000000000000005,0.163 +2013,11,19,4,30,0,0,0,15,18,1010,84.45,40,4.1000000000000005,0.163 +2013,11,19,5,30,0,0,0,15,18,1010,84.63,36.2,4,0.163 +2013,11,19,6,30,0,0,0,15,18,1010,84.5,31.900000000000002,4.1000000000000005,0.163 +2013,11,19,7,30,0,19,19,15,18,1010,83.79,27.6,4.5,0.163 +2013,11,19,8,30,0,99,99,15,20,1010,73.74,35.7,5.1000000000000005,0.163 +2013,11,19,9,30,9,166,171,15,21,1010,71.16,45.400000000000006,5.5,0.163 +2013,11,19,10,30,53,255,286,16,22,1010,69.25,49,5.800000000000001,0.163 +2013,11,19,11,30,29,264,283,16,23,1010,66.52,48.2,5.800000000000001,0.163 +2013,11,19,12,30,43,288,317,16,24,1010,63.160000000000004,45.900000000000006,5.6000000000000005,0.163 +2013,11,19,13,30,47,274,304,16,24,1010,63.27,45.400000000000006,5.4,0.163 +2013,11,19,14,30,7,185,189,16,23,1010,67.24,46.300000000000004,5.300000000000001,0.163 +2013,11,19,15,30,589,113,345,16,22,1010,71.27,48.6,5.300000000000001,0.163 +2013,11,19,16,30,352,79,155,16,21,1010,75.61,51.2,5.300000000000001,0.163 +2013,11,19,17,30,0,0,0,16,20,1010,85.77,52.6,5.300000000000001,0.163 +2013,11,19,18,30,0,0,0,16,19,1010,86.14,51.900000000000006,5.300000000000001,0.163 +2013,11,19,19,30,0,0,0,16,19,1010,86.15,50.1,5.300000000000001,0.163 +2013,11,19,20,30,0,0,0,16,18,1010,92.21000000000001,48.400000000000006,5.1000000000000005,0.163 +2013,11,19,21,30,0,0,0,16,18,1010,92.87,47.900000000000006,5,0.163 +2013,11,19,22,30,0,0,0,17,18,1010,93.93,51.6,4.800000000000001,0.163 +2013,11,19,23,30,0,0,0,17,18,1010,95.67,54.300000000000004,4.4,0.163 +2013,11,20,0,30,0,0,0,17,19,1010,97.63,56.6,4.1000000000000005,0.163 +2013,11,20,1,30,0,0,0,17,19,1010,93.74,58,3.9000000000000004,0.163 +2013,11,20,2,30,0,0,0,18,19,1010,95.74000000000001,58.5,3.8000000000000003,0.163 +2013,11,20,3,30,0,0,0,18,19,1010,97.57000000000001,59,3.8000000000000003,0.163 +2013,11,20,4,30,0,0,0,18,19,1010,99.18,59.400000000000006,3.8000000000000003,0.163 +2013,11,20,5,30,0,0,0,19,19,1010,100,59.300000000000004,3.7,0.163 +2013,11,20,6,30,0,0,0,19,19,1010,100,59.7,3.7,0.163 +2013,11,20,7,30,104,45,56,19,20,1010,97.47,61.5,3.7,0.163 +2013,11,20,8,30,411,109,233,20,22,1010,89.57000000000001,66.10000000000001,3.6,0.163 +2013,11,20,9,30,586,137,411,21,24,1010,83.38,80.80000000000001,3.2,0.163 +2013,11,20,10,30,689,147,552,21,26,1010,80.7,104.9,3,0.163 +2013,11,20,11,30,751,144,638,21,27,1010,75.9,128.8,3,0.163 +2013,11,20,12,30,766,141,657,21,27,1010,70.37,146.8,3.1,0.163 +2013,11,20,13,30,761,130,611,20,28,1010,65.17,156.9,3.3000000000000003,0.163 +2013,11,20,14,30,124,244,311,20,27,1000,68.15,159.70000000000002,3.5,0.163 +2013,11,20,15,30,598,103,339,20,26,1000,72.42,156,3.5,0.163 +2013,11,20,16,30,3,75,75,20,25,1010,78.48,150.20000000000002,3.1,0.163 +2013,11,20,17,30,0,0,0,21,24,1010,87.78,142.4,2.9000000000000004,0.163 +2013,11,20,18,30,0,0,0,22,23,1010,95.99000000000001,140,3.2,0.163 +2013,11,20,19,30,0,0,0,22,23,1010,98.06,142.9,3.4000000000000004,0.163 +2013,11,20,20,30,0,0,0,22,23,1010,99.5,145.6,3.3000000000000003,0.163 +2013,11,20,21,30,0,0,0,22,23,1010,100,146.6,3.1,0.163 +2013,11,20,22,30,0,0,0,22,22,1010,100,149.20000000000002,3,0.163 +2013,11,20,23,30,0,0,0,22,22,1010,100,151.70000000000002,2.8000000000000003,0.163 +2013,11,21,0,30,0,0,0,21,22,1010,100,152.9,2.6,0.163 +2013,11,21,1,30,0,0,0,21,21,1010,100,153.1,2.5,0.163 +2013,11,21,2,30,0,0,0,21,21,1010,100,152.70000000000002,2.4000000000000004,0.163 +2013,11,21,3,30,0,0,0,21,21,1010,100,154.3,2.5,0.163 +2013,11,21,4,30,0,0,0,21,21,1010,100,155.9,2.5,0.163 +2013,11,21,5,30,0,0,0,21,21,1010,100,155.4,2.3000000000000003,0.163 +2013,11,21,6,30,0,0,0,21,22,1010,100,154,2.5,0.163 +2013,11,21,7,30,230,37,61,22,23,1010,99.36,153.5,3.3000000000000003,0.163 +2013,11,21,8,30,553,79,244,23,25,1010,95.94,153.1,4.3,0.163 +2013,11,21,9,30,708,96,425,23,26,1010,83.7,155.60000000000002,5,0.163 +2013,11,21,10,30,775,110,563,22,27,1010,75.75,158.4,5.4,0.163 +2013,11,21,11,30,798,120,643,21,28,1010,69.59,159.9,5.4,0.163 +2013,11,21,12,30,743,151,649,21,29,1010,68.34,160.3,5.300000000000001,0.163 +2013,11,21,13,30,701,155,597,21,29,1010,63.82,159.4,5.1000000000000005,0.163 +2013,11,21,14,30,631,148,485,21,28,1010,67.2,157.60000000000002,5,0.163 +2013,11,21,15,30,494,131,325,21,27,1010,71.59,153.9,4.800000000000001,0.163 +2013,11,21,16,30,269,86,143,21,26,1010,77.72,147.20000000000002,4.4,0.163 +2013,11,21,17,30,0,0,0,22,24,1010,91.10000000000001,138.70000000000002,4.1000000000000005,0.163 +2013,11,21,18,30,0,0,0,23,24,1010,100,132,3.9000000000000004,0.163 +2013,11,21,19,30,0,0,0,23,23,1010,100,129.5,3.6,0.163 +2013,11,21,20,30,0,0,0,23,23,1010,100,129,3.2,0.163 +2013,11,21,21,30,0,0,0,23,23,1010,100,133.6,2.9000000000000004,0.163 +2013,11,21,22,30,0,0,0,23,23,1010,100,140.3,2.7,0.163 +2013,11,21,23,30,0,0,0,22,22,1010,100,144.4,2.5,0.163 +2013,11,22,0,30,0,0,0,22,22,1010,100,146.1,2.5,0.163 +2013,11,22,1,30,0,0,0,22,22,1010,100,146.6,2.4000000000000004,0.163 +2013,11,22,2,30,0,0,0,22,22,1010,100,144.70000000000002,2,0.163 +2013,11,22,3,30,0,0,0,22,22,1010,100,137.5,1.8,0.163 +2013,11,22,4,30,0,0,0,21,22,1010,100,125.2,1.7000000000000002,0.163 +2013,11,22,5,30,0,0,0,21,22,1010,100,114.30000000000001,1.7000000000000002,0.163 +2013,11,22,6,30,0,0,0,21,22,1010,100,104.5,1.8,0.163 +2013,11,22,7,30,0,2,2,23,23,1010,100,96.2,2.3000000000000003,0.163 +2013,11,22,8,30,0,50,50,23,24,1010,97.23,90.5,2.6,0.163 +2013,11,22,9,30,0,8,8,23,24,1010,96.96000000000001,88.10000000000001,2.5,0.163 +2013,11,22,10,30,0,28,28,22,23,1010,97.25,76.9,2.8000000000000003,0.163 +2013,11,22,11,30,0,93,93,20,22,1010,93.05,57.1,4,0.163 +2013,11,22,12,30,0,56,56,18,19,1010,97.87,35.9,5.800000000000001,0.163 +2013,11,22,13,30,0,95,95,16,17,1010,94.11,24.5,7.1000000000000005,0.163 +2013,11,22,14,30,0,49,49,13,15,1020,89.05,16.8,7.300000000000001,0.163 +2013,11,22,15,30,0,96,96,11,13,1020,87.89,9.8,6.9,0.163 +2013,11,22,16,30,0,63,63,10,12,1020,88.53,2.2,6.300000000000001,0.163 +2013,11,22,17,30,0,0,0,9,11,1020,92.33,356.1,6,0.163 +2013,11,22,18,30,0,0,0,9,10,1020,95.56,352.5,6.1000000000000005,0.163 +2013,11,22,19,30,0,0,0,8,9,1020,97.24000000000001,349.3,6.4,0.163 +2013,11,22,20,30,0,0,0,7,8,1020,97.18,345.3,6.7,0.163 +2013,11,22,21,30,0,0,0,6,8,1020,97.26,342.90000000000003,6.800000000000001,0.163 +2013,11,22,22,30,0,0,0,5,7,1020,92.43,344,6.7,0.163 +2013,11,22,23,30,0,0,0,5,7,1020,95.36,345.70000000000005,6.6000000000000005,0.163 +2013,11,23,0,30,0,0,0,4,6,1020,92.16,344.20000000000005,6.4,0.163 +2013,11,23,1,30,0,0,0,4,6,1020,89.28,341.6,6.4,0.163 +2013,11,23,2,30,0,0,0,4,6,1020,93.41,340.3,6.4,0.163 +2013,11,23,3,30,0,0,0,3,6,1020,92.17,341.3,6.300000000000001,0.163 +2013,11,23,4,30,0,0,0,3,6,1020,91.79,342.90000000000003,6.300000000000001,0.163 +2013,11,23,5,30,0,0,0,3,6,1020,91.92,344.3,6.300000000000001,0.163 +2013,11,23,6,30,0,0,0,3,6,1020,85.79,345.40000000000003,6.300000000000001,0.163 +2013,11,23,7,30,0,10,10,3,6,1020,85.44,346.1,6.5,0.163 +2013,11,23,8,30,429,105,231,3,6,1020,84.97,347.6,6.6000000000000005,0.163 +2013,11,23,9,30,0,61,61,3,7,1020,79.46000000000001,349.70000000000005,6.5,0.163 +2013,11,23,10,30,0,140,140,3,8,1020,75.39,350.90000000000003,6.300000000000001,0.163 +2013,11,23,11,30,23,250,265,4,9,1020,72.28,351.20000000000005,6.1000000000000005,0.163 +2013,11,23,12,30,705,178,647,4,10,1020,69.37,351.1,5.9,0.163 +2013,11,23,13,30,692,168,600,5,11,1020,71.19,352.40000000000003,5.800000000000001,0.163 +2013,11,23,14,30,642,151,491,5,10,1020,72.8,354.70000000000005,5.800000000000001,0.163 +2013,11,23,15,30,0,82,82,5,10,1020,74.04,356.6,5.7,0.163 +2013,11,23,16,30,321,81,148,5,9,1020,80.10000000000001,357.6,5.6000000000000005,0.163 +2013,11,23,17,30,0,0,0,5,8,1020,86.60000000000001,357.1,5.6000000000000005,0.163 +2013,11,23,18,30,0,0,0,6,8,1020,87.77,356.40000000000003,5.6000000000000005,0.163 +2013,11,23,19,30,0,0,0,6,8,1020,88.74,356.5,5.5,0.163 +2013,11,23,20,30,0,0,0,6,8,1020,89.58,357.90000000000003,5.300000000000001,0.163 +2013,11,23,21,30,0,0,0,6,8,1020,90.53,357.40000000000003,5,0.163 +2013,11,23,22,30,0,0,0,6,8,1020,91.36,352,4.800000000000001,0.163 +2013,11,23,23,30,0,0,0,6,8,1020,92.02,346.6,4.7,0.163 +2013,11,24,0,30,0,0,0,6,8,1020,92.84,345.5,4.800000000000001,0.163 +2013,11,24,1,30,0,0,0,7,8,1020,93.96000000000001,346.1,4.7,0.163 +2013,11,24,2,30,0,0,0,7,8,1020,95.13,345.40000000000003,4.6000000000000005,0.163 +2013,11,24,3,30,0,0,0,7,8,1020,96.41,344.90000000000003,4.6000000000000005,0.163 +2013,11,24,4,30,0,0,0,7,8,1020,97.56,344.40000000000003,4.800000000000001,0.163 +2013,11,24,5,30,0,0,0,7,8,1020,98.38,346.1,4.9,0.163 +2013,11,24,6,30,0,0,0,7,8,1020,98.52,352.70000000000005,5.1000000000000005,0.163 +2013,11,24,7,30,0,3,3,7,8,1020,97.10000000000001,358.20000000000005,5.300000000000001,0.163 +2013,11,24,8,30,0,8,8,7,8,1020,94.04,2.8000000000000003,5.6000000000000005,0.163 +2013,11,24,9,30,0,9,9,6,9,1020,89.7,5.9,5.7,0.163 +2013,11,24,10,30,0,46,46,5,9,1020,79.49,6.5,5.6000000000000005,0.163 +2013,11,24,11,30,0,44,44,5,9,1020,76.32000000000001,5.2,5.300000000000001,0.163 +2013,11,24,12,30,0,146,146,4,9,1020,74.93,1.6,5.1000000000000005,0.163 +2013,11,24,13,30,0,124,124,4,9,1020,74.62,357.20000000000005,4.9,0.163 +2013,11,24,14,30,0,72,72,4,9,1020,74.75,355.70000000000005,4.7,0.163 +2013,11,24,15,30,0,103,103,4,9,1020,74.91,358.20000000000005,4.7,0.163 +2013,11,24,16,30,388,72,152,4,9,1020,80.25,2.2,4.6000000000000005,0.163 +2013,11,24,17,30,0,0,0,4,8,1020,80.53,5,4.4,0.163 +2013,11,24,18,30,0,0,0,4,8,1020,80.9,6.9,4.5,0.164 +2013,11,24,19,30,0,0,0,4,7,1020,86.41,7.7,4.800000000000001,0.164 +2013,11,24,20,30,0,0,0,4,7,1020,85.83,5.300000000000001,5,0.164 +2013,11,24,21,30,0,0,0,4,6,1020,91.07000000000001,0.4,5.1000000000000005,0.164 +2013,11,24,22,30,0,0,0,4,6,1020,90.01,357.70000000000005,5.300000000000001,0.164 +2013,11,24,23,30,0,0,0,4,5,1020,95.29,358.6,5.2,0.164 +2013,11,25,0,30,0,0,0,4,5,1020,94.47,359.90000000000003,5.1000000000000005,0.164 +2013,11,25,1,30,0,0,0,4,5,1020,93.89,359.5,4.800000000000001,0.164 +2013,11,25,2,30,0,0,0,4,5,1020,93.51,356.8,4.6000000000000005,0.164 +2013,11,25,3,30,0,0,0,4,5,1020,93.25,352.6,4.6000000000000005,0.164 +2013,11,25,4,30,0,0,0,3,5,1020,93.09,348.20000000000005,4.9,0.164 +2013,11,25,5,30,0,0,0,3,5,1020,92.81,345.40000000000003,5.1000000000000005,0.164 +2013,11,25,6,30,0,0,0,3,5,1020,92.34,346.40000000000003,5.2,0.164 +2013,11,25,7,30,0,2,2,3,5,1020,92.11,349,5.2,0.164 +2013,11,25,8,30,0,84,84,3,5,1020,92.49,350.70000000000005,5.300000000000001,0.164 +2013,11,25,9,30,557,145,396,4,6,1020,87.16,351.70000000000005,5.4,0.164 +2013,11,25,10,30,0,42,42,4,7,1020,88.74,352.70000000000005,5.5,0.164 +2013,11,25,11,30,0,28,28,4,8,1020,84.84,354,5.5,0.164 +2013,11,25,12,30,0,72,72,5,9,1010,81.48,353,5.4,0.164 +2013,11,25,13,30,676,171,591,5,9,1010,78.26,351.6,5.300000000000001,0.164 +2013,11,25,14,30,0,133,133,5,10,1010,80.08,351.90000000000003,5.300000000000001,0.164 +2013,11,25,15,30,0,54,54,5,9,1010,81.29,353,5.2,0.164 +2013,11,25,16,30,0,24,24,6,9,1010,87.44,352.40000000000003,5.1000000000000005,0.164 +2013,11,25,17,30,0,0,0,6,8,1010,87.51,349.70000000000005,5.1000000000000005,0.164 +2013,11,25,18,30,0,0,0,5,7,1010,93.28,347.90000000000003,5.300000000000001,0.164 +2013,11,25,19,30,0,0,0,5,7,1010,97.89,348.1,5.7,0.164 +2013,11,25,20,30,0,0,0,5,6,1010,94.5,349.3,5.9,0.164 +2013,11,25,21,30,0,0,0,4,6,1010,91.08,348.8,5.9,0.164 +2013,11,25,22,30,0,0,0,4,5,1010,95.76,342.90000000000003,6,0.164 +2013,11,25,23,30,0,0,0,4,5,1010,94.89,339.3,6,0.164 +2013,11,26,0,30,0,0,0,4,5,1020,94.92,333,5.9,0.164 +2013,11,26,1,30,0,0,0,4,5,1020,94.42,336.70000000000005,5.7,0.164 +2013,11,26,2,30,0,0,0,4,5,1020,100,334.70000000000005,5.7,0.164 +2013,11,26,3,30,0,0,0,3,4,1020,99.68,331.5,5.6000000000000005,0.164 +2013,11,26,4,30,0,0,0,3,4,1020,99.03,332.6,5.5,0.164 +2013,11,26,5,30,0,0,0,3,4,1020,97.85000000000001,334.8,5.4,0.164 +2013,11,26,6,30,0,0,0,3,4,1020,96.96000000000001,334.3,5.4,0.164 +2013,11,26,7,30,257,34,57,3,5,1020,89.54,333.5,5.9,0.164 +2013,11,26,8,30,615,77,252,3,7,1020,76.22,333.1,6.800000000000001,0.164 +2013,11,26,9,30,391,165,341,1,8,1020,65.16,331.40000000000003,7.6000000000000005,0.164 +2013,11,26,10,30,37,233,254,1,9,1020,57.89,324.90000000000003,8.1,0.164 +2013,11,26,11,30,1,178,178,0,10,1020,52.9,320,8.5,0.164 +2013,11,26,12,30,1,178,180,0,11,1020,48.870000000000005,318,8.6,0.164 +2013,11,26,13,30,10,212,218,0,12,1020,46,318.40000000000003,8.5,0.164 +2013,11,26,14,30,873,86,544,0,12,1020,46.75,320.90000000000003,8.200000000000001,0.164 +2013,11,26,15,30,785,75,377,1,12,1020,51.18,323.90000000000003,7.800000000000001,0.164 +2013,11,26,16,30,603,52,176,1,11,1020,56.49,327,6.800000000000001,0.164 +2013,11,26,17,30,0,0,0,2,9,1020,63.84,331.1,5.1000000000000005,0.164 +2013,11,26,18,30,0,0,0,3,7,1020,80.16,334.1,3.7,0.164 +2013,11,26,19,30,0,0,0,4,7,1020,83.26,334.1,3.3000000000000003,0.164 +2013,11,26,20,30,0,0,0,4,6,1020,90.46000000000001,331.1,3.2,0.164 +2013,11,26,21,30,0,0,0,4,6,1020,90.56,325,3.5,0.164 +2013,11,26,22,30,0,0,0,4,5,1020,96.15,320,3.9000000000000004,0.164 +2013,11,26,23,30,0,0,0,4,5,1020,94.09,319.90000000000003,4.3,0.164 +2013,11,27,0,30,0,0,0,3,4,1020,97.05,323.90000000000003,4.5,0.164 +2013,11,27,1,30,0,0,0,2,4,1020,100,327.40000000000003,4.6000000000000005,0.164 +2013,11,27,2,30,0,0,0,2,3,1020,98.57000000000001,331.6,4.6000000000000005,0.164 +2013,11,27,3,30,0,0,0,2,3,1020,96.93,333.40000000000003,4.5,0.164 +2013,11,27,4,30,0,0,0,2,3,1020,95.59,332.1,4.4,0.164 +2013,11,27,5,30,0,0,0,2,3,1020,100,334.6,4.4,0.164 +2013,11,27,6,30,0,0,0,2,3,1020,100,339.6,4.5,0.164 +2013,11,27,7,30,444,26,64,1,4,1030,86.59,345.3,5,0.164 +2013,11,27,8,30,772,52,269,1,6,1030,71.3,357,5.5,0.164 +2013,11,27,9,30,899,65,464,0,8,1030,53.53,8.6,5.300000000000001,0.164 +2013,11,27,10,30,960,71,616,-1,9,1030,46.15,5.5,4.6000000000000005,0.164 +2013,11,27,11,30,990,75,707,-2,10,1020,40.93,358.20000000000005,4,0.164 +2013,11,27,12,30,986,82,728,-3,11,1020,36.63,350.40000000000003,3.6,0.164 +2013,11,27,13,30,975,79,679,-3,12,1020,32.84,344.70000000000005,3.5,0.164 +2013,11,27,14,30,939,73,564,-4,13,1020,29.61,341.3,3.5,0.164 +2013,11,27,15,30,848,66,392,-4,12,1020,30.64,342.5,3.3000000000000003,0.164 +2013,11,27,16,30,670,48,185,-4,10,1020,34.77,351.3,2.6,0.164 +2013,11,27,17,30,0,0,0,0,8,1020,59.230000000000004,1.3,2,0.164 +2013,11,27,18,30,0,0,0,0,6,1020,62.82,6.4,2,0.164 +2013,11,27,19,30,0,0,0,0,5,1020,67.44,17.3,2,0.164 +2013,11,27,20,30,0,0,0,0,5,1020,67.98,30.200000000000003,2,0.164 +2013,11,27,21,30,0,0,0,0,5,1020,68.64,36.1,1.9000000000000001,0.164 +2013,11,27,22,30,0,0,0,0,5,1020,71.16,40.300000000000004,1.8,0.164 +2013,11,27,23,30,0,0,0,0,5,1020,74.42,39.5,1.6,0.164 +2013,11,28,0,30,0,0,0,1,4,1020,81.35000000000001,27.700000000000003,1.5,0.164 +2013,11,28,1,30,0,0,0,1,3,1020,87.84,24.400000000000002,1.6,0.164 +2013,11,28,2,30,0,0,0,0,3,1020,85.17,21.6,1.7000000000000002,0.164 +2013,11,28,3,30,0,0,0,0,3,1020,85.82000000000001,21.200000000000003,1.8,0.164 +2013,11,28,4,30,0,0,0,1,3,1020,87.88,21.200000000000003,1.9000000000000001,0.164 +2013,11,28,5,30,0,0,0,1,3,1020,92.01,21.1,1.8,0.164 +2013,11,28,6,30,0,0,0,2,3,1020,93.51,15.100000000000001,1.8,0.164 +2013,11,28,7,30,0,21,21,2,4,1020,88.94,16.5,2,0.164 +2013,11,28,8,30,274,102,178,2,7,1020,75.25,13,2.1,0.164 +2013,11,28,9,30,648,104,391,2,9,1020,64.92,12.600000000000001,2.1,0.164 +2013,11,28,10,30,586,167,498,2,10,1020,59.480000000000004,7,2,0.164 +2013,11,28,11,30,930,92,683,2,11,1020,56.03,4,1.9000000000000001,0.164 +2013,11,28,12,30,586,206,588,2,12,1020,52.96,1.8,1.9000000000000001,0.164 +2013,11,28,13,30,356,261,480,2,13,1020,50.26,356.70000000000005,2.1,0.164 +2013,11,28,14,30,523,171,444,3,13,1020,50.83,0.2,2.2,0.164 +2013,11,28,15,30,394,134,284,3,13,1020,55.35,7.2,2.1,0.164 +2013,11,28,16,30,131,77,104,4,12,1020,63.43,13.700000000000001,1.7000000000000002,0.164 +2013,11,28,17,30,0,0,0,6,10,1020,78.52,18.7,1.6,0.164 +2013,11,28,18,30,0,0,0,6,9,1020,82.92,26.400000000000002,1.7000000000000002,0.164 +2013,11,28,19,30,0,0,0,6,9,1020,85.26,28,1.8,0.164 +2013,11,28,20,30,0,0,0,7,9,1020,87.54,28.400000000000002,1.9000000000000001,0.164 +2013,11,28,21,30,0,0,0,7,9,1020,89.81,27.8,2,0.164 +2013,11,28,22,30,0,0,0,7,8,1020,98.11,27.6,2.1,0.164 +2013,11,28,23,30,0,0,0,8,8,1020,100,27.400000000000002,2.2,0.164 +2013,11,29,0,30,0,0,0,7,7,1020,100,27,2.3000000000000003,0.164 +2013,11,29,1,30,0,0,0,7,7,1020,100,24.5,2.5,0.164 +2013,11,29,2,30,0,0,0,8,8,1020,100,19.200000000000003,2.6,0.164 +2013,11,29,3,30,0,0,0,8,8,1020,100,18.8,2.6,0.164 +2013,11,29,4,30,0,0,0,8,8,1020,100,17.7,2.5,0.164 +2013,11,29,5,30,0,0,0,8,8,1020,100,18.5,2.5,0.164 +2013,11,29,6,30,0,0,0,8,8,1020,100,21.5,2.6,0.164 +2013,11,29,7,30,199,33,49,9,9,1020,100,26,3.1,0.164 +2013,11,29,8,30,574,77,235,10,12,1020,94.14,32,3.7,0.164 +2013,11,29,9,30,743,95,422,11,14,1020,82.48,42.7,3.6,0.164 +2013,11,29,10,30,828,103,568,11,17,1020,71.7,54.1,3.2,0.164 +2013,11,29,11,30,864,108,655,12,19,1020,64.91,66.2,2.5,0.164 +2013,11,29,12,30,859,114,674,12,20,1020,61.74,68.60000000000001,2.2,0.164 +2013,11,29,13,30,825,118,623,12,20,1020,62.07,66.7,2.2,0.164 +2013,11,29,14,30,761,114,510,12,19,1020,66.72,66.5,2.5,0.164 +2013,11,29,15,30,667,94,349,12,18,1020,72.32000000000001,68.9,2.9000000000000004,0.164 +2013,11,29,16,30,449,65,157,13,17,1020,79.62,71.10000000000001,3.1,0.164 +2013,11,29,17,30,0,0,0,14,15,1020,94.51,72.60000000000001,3.1,0.164 +2013,11,29,18,30,0,0,0,14,15,1020,95.75,74.60000000000001,3.3000000000000003,0.164 +2013,11,29,19,30,0,0,0,14,14,1020,100,77.9,3.2,0.164 +2013,11,29,20,30,0,0,0,14,14,1020,100,82.7,2.9000000000000004,0.164 +2013,11,29,21,30,0,0,0,14,14,1020,100,87.7,2.6,0.164 +2013,11,29,22,30,0,0,0,14,14,1020,100,91,2.4000000000000004,0.164 +2013,11,29,23,30,0,0,0,14,14,1020,100,92.80000000000001,2.2,0.164 +2013,11,30,0,30,0,0,0,14,14,1020,100,94.80000000000001,2.1,0.164 +2013,11,30,1,30,0,0,0,14,14,1020,100,97.80000000000001,2,0.164 +2013,11,30,2,30,0,0,0,14,14,1020,100,99.4,1.9000000000000001,0.164 +2013,11,30,3,30,0,0,0,14,14,1020,100,99.4,1.8,0.164 +2013,11,30,4,30,0,0,0,14,14,1020,100,98.5,1.7000000000000002,0.164 +2013,11,30,5,30,0,0,0,14,14,1020,100,98,1.7000000000000002,0.164 +2013,11,30,6,30,0,0,0,14,14,1020,100,99.10000000000001,1.7000000000000002,0.164 +2013,11,30,7,30,217,30,47,15,15,1020,100,100.5,1.9000000000000001,0.164 +2013,11,30,8,30,585,71,230,15,18,1020,88.02,103.10000000000001,2.6,0.164 +2013,11,30,9,30,740,91,414,15,20,1020,77.24,113.2,3.3000000000000003,0.164 +2013,11,30,10,30,816,101,558,15,21,1020,71.42,126.5,3.5,0.164 +2013,11,30,11,30,0,172,173,15,22,1020,66.27,136.1,3.5,0.164 +2013,11,30,12,30,844,115,662,15,22,1020,65.51,139.6,3.3000000000000003,0.164 +2013,11,30,13,30,92,283,339,15,22,1020,64.88,137.9,3.3000000000000003,0.164 +2013,11,30,14,30,170,239,327,15,22,1020,64.83,133.20000000000002,3.4000000000000004,0.164 +2013,11,30,15,30,672,89,345,15,21,1020,69.14,127.80000000000001,3.5,0.164 +2013,11,30,16,30,468,61,156,15,20,1020,73.85000000000001,123.60000000000001,3,0.164 +2013,11,30,17,30,0,0,0,15,18,1020,86.60000000000001,120.80000000000001,2.4000000000000004,0.164 +2013,11,30,18,30,0,0,0,15,17,1020,91.95,122.2,2.3000000000000003,0.164 +2013,11,30,19,30,0,0,0,15,16,1020,97.83,126.5,2.2,0.164 +2013,11,30,20,30,0,0,0,15,16,1020,98.32000000000001,133,2.1,0.164 +2013,11,30,21,30,0,0,0,15,15,1020,100,143.5,2,0.164 +2013,11,30,22,30,0,0,0,15,15,1020,100,153.9,2,0.164 +2013,11,30,23,30,0,0,0,14,14,1020,100,160.9,1.9000000000000001,0.164 +2013,12,1,0,30,0,0,0,14,14,1020,100,168.70000000000002,1.8,0.164 +2013,12,1,1,30,0,0,0,14,14,1020,100,175.60000000000002,1.7000000000000002,0.164 +2013,12,1,2,30,0,0,0,14,14,1020,100,181,1.5,0.164 +2013,12,1,3,30,0,0,0,14,15,1020,100,187.5,1.2000000000000002,0.164 +2013,12,1,4,30,0,0,0,14,15,1020,100,184.60000000000002,1.2000000000000002,0.164 +2013,12,1,5,30,0,0,0,14,14,1020,100,170,1.3,0.164 +2013,12,1,6,30,0,0,0,14,14,1020,100,159.10000000000002,1.4000000000000001,0.164 +2013,12,1,7,30,259,26,46,15,16,1020,100,152.20000000000002,1.6,0.164 +2013,12,1,8,30,620,61,228,16,18,1020,93.12,148,2,0.164 +2013,12,1,9,30,764,78,410,16,21,1020,77.67,160.4,2.4000000000000004,0.164 +2013,12,1,10,30,830,89,551,17,22,1020,73.45,178.3,2.9000000000000004,0.164 +2013,12,1,11,30,857,97,636,16,23,1010,68.9,184.70000000000002,3.3000000000000003,0.164 +2013,12,1,12,30,153,310,410,16,24,1010,64.76,183.8,3.2,0.164 +2013,12,1,13,30,307,270,457,16,24,1010,64.78,189,2.9000000000000004,0.164 +2013,12,1,14,30,738,111,493,17,24,1010,65.13,187.8,2.7,0.164 +2013,12,1,15,30,689,81,343,17,23,1010,69.77,181,2.4000000000000004,0.164 +2013,12,1,16,30,484,57,156,17,21,1010,80.59,170.4,1.9000000000000001,0.164 +2013,12,1,17,30,0,0,0,18,19,1010,96.28,156.3,1.7000000000000002,0.164 +2013,12,1,18,30,0,0,0,17,18,1010,99.73,154.5,2,0.164 +2013,12,1,19,30,0,0,0,17,18,1010,99.55,158.5,2.3000000000000003,0.164 +2013,12,1,20,30,0,0,0,17,17,1010,100,167.4,2.6,0.164 +2013,12,1,21,30,0,0,0,17,17,1010,100,178,2.8000000000000003,0.164 +2013,12,1,22,30,0,0,0,16,17,1010,100,187,3,0.164 +2013,12,1,23,30,0,0,0,16,16,1010,100,194.10000000000002,3.1,0.164 +2013,12,2,0,30,0,0,0,16,16,1010,100,200.3,3,0.164 +2013,12,2,1,30,0,0,0,15,15,1010,100,206.10000000000002,2.8000000000000003,0.164 +2013,12,2,2,30,0,0,0,15,15,1010,100,211.8,2.4000000000000004,0.164 +2013,12,2,3,30,0,0,0,14,14,1010,100,216.3,1.9000000000000001,0.164 +2013,12,2,4,30,0,0,0,14,14,1010,100,220.3,1.6,0.164 +2013,12,2,5,30,0,0,0,14,14,1010,100,218.60000000000002,1.5,0.164 +2013,12,2,6,30,0,0,0,14,14,1010,100,213,1.5,0.164 +2013,12,2,7,30,240,26,44,15,15,1010,100,206.8,1.9000000000000001,0.164 +2013,12,2,8,30,599,64,224,16,18,1010,89.85000000000001,202.20000000000002,2.6,0.164 +2013,12,2,9,30,748,82,405,16,20,1010,82.58,202.9,2.9000000000000004,0.164 +2013,12,2,10,30,433,211,451,17,22,1010,74.43,204.4,2.8000000000000003,0.164 +2013,12,2,11,30,852,99,633,17,23,1010,70.67,210.60000000000002,2.3000000000000003,0.164 +2013,12,2,12,30,861,99,655,17,24,1000,66.28,216.9,2,0.164 +2013,12,2,13,30,848,95,611,17,25,1000,61.81,215.70000000000002,1.8,0.164 +2013,12,2,14,30,807,87,504,16,25,1000,60.74,216.10000000000002,1.9000000000000001,0.164 +2013,12,2,15,30,722,73,347,16,24,1000,63.92,211.60000000000002,1.9000000000000001,0.164 +2013,12,2,16,30,539,51,160,17,22,1000,75.07000000000001,202,1.5,0.164 +2013,12,2,17,30,0,0,0,18,20,1000,91.03,188.4,1.4000000000000001,0.164 +2013,12,2,18,30,0,0,0,17,19,1000,92.81,189.70000000000002,1.8,0.162 +2013,12,2,19,30,0,0,0,17,18,1000,98.67,191.4,2.3000000000000003,0.162 +2013,12,2,20,30,0,0,0,17,18,1000,100,193.3,2.7,0.162 +2013,12,2,21,30,0,0,0,17,17,1000,100,197,2.8000000000000003,0.162 +2013,12,2,22,30,0,0,0,16,16,1000,100,199.10000000000002,2.9000000000000004,0.162 +2013,12,2,23,30,0,0,0,16,16,1000,100,197.60000000000002,3,0.162 +2013,12,3,0,30,0,0,0,15,15,1000,100,197,2.8000000000000003,0.162 +2013,12,3,1,30,0,0,0,15,15,1000,100,198.20000000000002,2.6,0.162 +2013,12,3,2,30,0,0,0,14,14,1000,100,198.8,2.5,0.162 +2013,12,3,3,30,0,0,0,14,14,1000,100,196.60000000000002,2.4000000000000004,0.162 +2013,12,3,4,30,0,0,0,14,14,1000,100,193.3,2.4000000000000004,0.162 +2013,12,3,5,30,0,0,0,14,14,1000,100,191,2.3000000000000003,0.162 +2013,12,3,6,30,0,0,0,14,14,1000,100,191.8,2.2,0.162 +2013,12,3,7,30,253,25,43,15,15,1000,100,193.60000000000002,2.6,0.162 +2013,12,3,8,30,620,63,227,16,18,1000,92.68,194.5,3.4000000000000004,0.162 +2013,12,3,9,30,770,82,412,17,21,1000,79.31,195.3,3.9000000000000004,0.162 +2013,12,3,10,30,840,93,556,17,23,1000,72.16,194,3.9000000000000004,0.162 +2013,12,3,11,30,408,256,511,17,24,1000,68.41,192.8,3.6,0.162 +2013,12,3,12,30,560,212,573,17,25,1000,63.85,189.70000000000002,3.3000000000000003,0.162 +2013,12,3,13,30,567,194,538,17,26,1000,57.870000000000005,186.9,2.9000000000000004,0.162 +2013,12,3,14,30,573,157,453,16,27,1000,52.93,184.9,2.7,0.162 +2013,12,3,15,30,500,115,304,16,26,1000,55.59,180.60000000000002,2.2,0.162 +2013,12,3,16,30,475,59,156,18,23,1000,74.84,167,1.9000000000000001,0.162 +2013,12,3,17,30,0,0,0,18,21,1000,87.42,155.20000000000002,2.4000000000000004,0.162 +2013,12,3,18,30,0,0,0,19,20,1000,94.78,156.10000000000002,3.3000000000000003,0.162 +2013,12,3,19,30,0,0,0,19,20,1000,100,161.70000000000002,3.8000000000000003,0.162 +2013,12,3,20,30,0,0,0,19,19,1000,100,168.3,3.9000000000000004,0.162 +2013,12,3,21,30,0,0,0,19,19,1000,100,174.8,3.8000000000000003,0.162 +2013,12,3,22,30,0,0,0,19,19,1000,100,177.70000000000002,3.6,0.162 +2013,12,3,23,30,0,0,0,18,19,1000,100,178.8,3.6,0.162 +2013,12,4,0,30,0,0,0,18,18,1000,100,179.60000000000002,3.5,0.162 +2013,12,4,1,30,0,0,0,18,18,1000,100,178.8,3.4000000000000004,0.162 +2013,12,4,2,30,0,0,0,18,18,1000,100,177.10000000000002,3.4000000000000004,0.162 +2013,12,4,3,30,0,0,0,18,18,1000,100,175.10000000000002,3.3000000000000003,0.162 +2013,12,4,4,30,0,0,0,18,18,1000,100,172.10000000000002,3.2,0.162 +2013,12,4,5,30,0,0,0,18,18,1000,100,169.5,3.1,0.162 +2013,12,4,6,30,0,0,0,18,18,1000,100,167.5,3.1,0.162 +2013,12,4,7,30,0,21,21,19,19,1000,100,165.5,3.5,0.162 +2013,12,4,8,30,71,103,122,20,22,1000,95.06,164.3,4.5,0.162 +2013,12,4,9,30,220,181,275,20,23,1000,87.17,169.3,5.2,0.162 +2013,12,4,10,30,422,212,444,20,25,1000,81.96000000000001,173.9,5.300000000000001,0.162 +2013,12,4,11,30,764,131,607,20,26,1000,76.4,175.70000000000002,5,0.162 +2013,12,4,12,30,384,272,519,20,26,1000,71.52,175.70000000000002,4.6000000000000005,0.162 +2013,12,4,13,30,579,189,539,20,27,1000,67.32000000000001,175.8,4.1000000000000005,0.162 +2013,12,4,14,30,238,228,351,20,27,1000,67.34,175.5,3.6,0.162 +2013,12,4,15,30,264,151,251,20,26,1000,71.55,172.70000000000002,3.1,0.162 +2013,12,4,16,30,261,71,124,20,24,1000,82.28,163.4,2.5,0.162 +2013,12,4,17,30,0,0,0,21,22,1000,97.27,145,2.7,0.162 +2013,12,4,18,30,0,0,0,21,21,1000,100,141,3.4000000000000004,0.162 +2013,12,4,19,30,0,0,0,21,21,1000,100,144.6,3.5,0.162 +2013,12,4,20,30,0,0,0,21,21,1000,100,150.20000000000002,3.3000000000000003,0.162 +2013,12,4,21,30,0,0,0,20,21,1000,100,156.60000000000002,3.2,0.162 +2013,12,4,22,30,0,0,0,20,20,1000,100,162.70000000000002,3.1,0.162 +2013,12,4,23,30,0,0,0,20,20,1000,100,167.3,3.1,0.162 +2013,12,5,0,30,0,0,0,20,20,1000,100,169.60000000000002,3.1,0.162 +2013,12,5,1,30,0,0,0,19,19,1000,100,170.5,3,0.162 +2013,12,5,2,30,0,0,0,19,19,1000,100,171.3,2.8000000000000003,0.162 +2013,12,5,3,30,0,0,0,19,19,1000,100,171.10000000000002,2.7,0.162 +2013,12,5,4,30,0,0,0,19,19,1000,100,169.9,2.5,0.162 +2013,12,5,5,30,0,0,0,18,18,1000,100,168.9,2.3000000000000003,0.162 +2013,12,5,6,30,0,0,0,18,18,1000,100,168.3,2.2,0.162 +2013,12,5,7,30,0,11,11,20,20,1000,100,167.4,2.6,0.162 +2013,12,5,8,30,0,90,90,21,22,1010,94.49,164.5,3.1,0.162 +2013,12,5,9,30,225,179,274,21,24,1010,85.69,168.10000000000002,3,0.162 +2013,12,5,10,30,413,214,439,21,25,1010,80.89,165.70000000000002,2.6,0.162 +2013,12,5,11,30,146,293,384,21,26,1010,75.7,151.1,2.4000000000000004,0.162 +2013,12,5,12,30,22,244,259,21,27,1000,70.36,130.6,2.5,0.162 +2013,12,5,13,30,36,249,271,20,27,1000,73.38,115.2,3,0.162 +2013,12,5,14,30,0,108,108,20,26,1000,76.60000000000001,106,3.3000000000000003,0.162 +2013,12,5,15,30,0,77,77,20,24,1000,84.07000000000001,95.4,3.5,0.162 +2013,12,5,16,30,279,82,138,19,21,1000,94.59,74.60000000000001,4.4,0.162 +2013,12,5,17,30,0,0,0,16,17,1010,98.53,50.900000000000006,5.6000000000000005,0.162 +2013,12,5,18,30,0,0,0,13,14,1010,95.05,34.7,6.6000000000000005,0.162 +2013,12,5,19,30,0,0,0,9,11,1010,90.22,25.1,6.9,0.162 +2013,12,5,20,30,0,0,0,6,9,1010,84.83,17,6.800000000000001,0.162 +2013,12,5,21,30,0,0,0,5,8,1010,83.34,11.9,6.2,0.162 +2013,12,5,22,30,0,0,0,5,8,1010,87.36,8.8,5.7,0.162 +2013,12,5,23,30,0,0,0,4,7,1010,85.96000000000001,5.5,5.4,0.162 +2013,12,6,0,30,0,0,0,4,6,1010,90.27,1.6,5.300000000000001,0.162 +2013,12,6,1,30,0,0,0,4,6,1010,87.96000000000001,355.6,5.5,0.162 +2013,12,6,2,30,0,0,0,3,5,1010,91.10000000000001,347.20000000000005,5.800000000000001,0.162 +2013,12,6,3,30,0,0,0,3,5,1010,87.24,341.90000000000003,6,0.162 +2013,12,6,4,30,0,0,0,2,5,1010,89.92,339.5,6,0.162 +2013,12,6,5,30,0,0,0,2,4,1010,87.62,338.90000000000003,5.800000000000001,0.162 +2013,12,6,6,30,0,0,0,1,4,1010,86.59,338.5,5.7,0.162 +2013,12,6,7,30,85,25,30,1,4,1020,85.76,338.1,6.1000000000000005,0.162 +2013,12,6,8,30,412,93,199,1,5,1020,79.18,338.1,6.6000000000000005,0.162 +2013,12,6,9,30,581,130,375,1,6,1020,73.5,340.20000000000005,6.9,0.162 +2013,12,6,10,30,0,126,126,1,7,1020,68.86,344,6.9,0.162 +2013,12,6,11,30,2,184,186,1,9,1020,60.84,346.8,6.800000000000001,0.162 +2013,12,6,12,30,8,211,217,2,10,1020,57.63,348.6,6.6000000000000005,0.162 +2013,12,6,13,30,49,258,288,2,11,1020,54.93,349.6,6.4,0.162 +2013,12,6,14,30,216,229,340,2,11,1020,55.35,351.1,6.300000000000001,0.162 +2013,12,6,15,30,12,138,143,2,11,1020,55.58,352.70000000000005,6.2,0.162 +2013,12,6,16,30,0,66,66,2,10,1020,58.77,354.90000000000003,6,0.162 +2013,12,6,17,30,0,0,0,1,8,1020,65.5,357.40000000000003,5.9,0.162 +2013,12,6,18,30,0,0,0,1,7,1020,68.3,0.4,6.1000000000000005,0.162 +2013,12,6,19,30,0,0,0,0,6,1020,70.17,3.2,6.5,0.162 +2013,12,6,20,30,0,0,0,0,5,1020,71.85000000000001,4,6.800000000000001,0.162 +2013,12,6,21,30,0,0,0,0,3,1020,78.37,4,6.9,0.162 +2013,12,6,22,30,0,0,0,-1,3,1020,74.46000000000001,3,6.7,0.162 +2013,12,6,23,30,0,0,0,-1,2,1020,76.83,2.4000000000000004,6.4,0.162 +2013,12,7,0,30,0,0,0,-1,2,1020,75.02,2.5,6,0.162 +2013,12,7,1,30,0,0,0,-2,2,1020,74.35000000000001,2.1,5.800000000000001,0.162 +2013,12,7,2,30,0,0,0,-2,2,1020,74.2,1.1,5.6000000000000005,0.162 +2013,12,7,3,30,0,0,0,-2,2,1020,79.72,359.90000000000003,5.4,0.162 +2013,12,7,4,30,0,0,0,-2,2,1020,79.85000000000001,359.1,5.4,0.162 +2013,12,7,5,30,0,0,0,-2,1,1020,79.84,359,5.300000000000001,0.162 +2013,12,7,6,30,0,0,0,-2,1,1020,79.91,359.3,5.2,0.162 +2013,12,7,7,30,71,24,28,-2,1,1020,80.14,0,5.2,0.162 +2013,12,7,8,30,381,98,195,-2,2,1030,74.51,1.4000000000000001,5.1000000000000005,0.162 +2013,12,7,9,30,558,137,371,-2,2,1030,74.55,2.8000000000000003,4.9,0.162 +2013,12,7,10,30,0,148,148,-2,3,1020,69.68,2.9000000000000004,4.6000000000000005,0.162 +2013,12,7,11,30,0,174,175,-1,4,1020,65.43,0.2,4.3,0.162 +2013,12,7,12,30,757,153,636,-1,5,1020,61.68,356.70000000000005,4.1000000000000005,0.162 +2013,12,7,13,30,755,143,597,-1,6,1020,58.44,354.3,3.9000000000000004,0.162 +2013,12,7,14,30,716,128,495,-1,6,1020,59.57,353.90000000000003,3.7,0.162 +2013,12,7,15,30,620,106,340,-1,6,1020,60.56,356.1,3.5,0.162 +2013,12,7,16,30,410,71,155,0,5,1020,65.82000000000001,358.20000000000005,3.4000000000000004,0.162 +2013,12,7,17,30,0,0,0,0,4,1020,71.77,0,3.3000000000000003,0.162 +2013,12,7,18,30,0,0,0,0,3,1020,78.29,0.9,3.3000000000000003,0.162 +2013,12,7,19,30,0,0,0,0,3,1020,78.55,0.5,3.3000000000000003,0.162 +2013,12,7,20,30,0,0,0,0,2,1020,84.49,0.30000000000000004,3.3000000000000003,0.162 +2013,12,7,21,30,0,0,0,0,2,1020,84.66,356.1,3.3000000000000003,0.162 +2013,12,7,22,30,0,0,0,0,2,1020,84.89,350,3.4000000000000004,0.162 +2013,12,7,23,30,0,0,0,0,2,1020,84.87,347.3,3.3000000000000003,0.162 +2013,12,8,0,30,0,0,0,0,2,1020,84.98,347.1,3.2,0.162 +2013,12,8,1,30,0,0,0,0,2,1020,85.04,349.3,3.1,0.162 +2013,12,8,2,30,0,0,0,0,2,1020,85.39,350.5,3.1,0.162 +2013,12,8,3,30,0,0,0,0,2,1020,86.05,346,3.3000000000000003,0.162 +2013,12,8,4,30,0,0,0,0,2,1020,86.36,342.20000000000005,3.3000000000000003,0.162 +2013,12,8,5,30,0,0,0,0,2,1020,86.34,345.40000000000003,2.9000000000000004,0.162 +2013,12,8,6,30,0,0,0,0,2,1020,86.61,349.5,2.6,0.162 +2013,12,8,7,30,110,23,30,0,2,1020,87.51,348.40000000000003,2.4000000000000004,0.162 +2013,12,8,8,30,472,81,200,0,3,1020,82.83,345.20000000000005,2.2,0.162 +2013,12,8,9,30,0,141,141,0,4,1020,79.12,341.1,2,0.162 +2013,12,8,10,30,748,122,527,1,6,1020,71.09,335.8,1.9000000000000001,0.162 +2013,12,8,11,30,798,127,618,1,7,1010,68.98,329.8,1.9000000000000001,0.162 +2013,12,8,12,30,810,129,644,2,8,1010,68.25,326.20000000000005,1.8,0.162 +2013,12,8,13,30,800,123,603,3,9,1010,67.17,326.3,1.7000000000000002,0.162 +2013,12,8,14,30,758,111,499,3,10,1010,65.45,336.40000000000003,1.7000000000000002,0.162 +2013,12,8,15,30,680,89,345,4,10,1010,68.09,354.20000000000005,1.6,0.162 +2013,12,8,16,30,485,61,159,4,9,1010,75.25,15.4,1.3,0.162 +2013,12,8,17,30,0,0,0,6,8,1010,87.39,32.9,1.1,0.162 +2013,12,8,18,30,0,0,0,6,8,1010,90.57000000000001,42.6,1.1,0.162 +2013,12,8,19,30,0,0,0,6,8,1010,98.18,40.400000000000006,1.2000000000000002,0.162 +2013,12,8,20,30,0,0,0,6,8,1010,99.62,34.800000000000004,1.5,0.162 +2013,12,8,21,30,0,0,0,7,8,1010,94.59,29.5,1.8,0.162 +2013,12,8,22,30,0,0,0,7,8,1010,95.34,27.400000000000002,2.1,0.162 +2013,12,8,23,30,0,0,0,7,8,1010,100,29.6,2.2,0.162 +2013,12,9,0,30,0,0,0,7,8,1010,100,33.7,2.2,0.162 +2013,12,9,1,30,0,0,0,7,8,1010,100,38.5,2.2,0.162 +2013,12,9,2,30,0,0,0,8,8,1010,100,39.7,2.2,0.162 +2013,12,9,3,30,0,0,0,8,8,1010,100,34.6,2.3000000000000003,0.162 +2013,12,9,4,30,0,0,0,8,8,1010,100,27,2.5,0.162 +2013,12,9,5,30,0,0,0,8,8,1010,100,22.200000000000003,2.9000000000000004,0.162 +2013,12,9,6,30,0,0,0,8,8,1010,100,15.4,3.4000000000000004,0.162 +2013,12,9,7,30,74,22,26,8,8,1010,100,15.600000000000001,3.8000000000000003,0.162 +2013,12,9,8,30,392,92,190,8,9,1010,98.94,25.8,4,0.162 +2013,12,9,9,30,548,136,363,9,11,1010,92.43,28,4.1000000000000005,0.162 +2013,12,9,10,30,639,161,505,10,12,1010,90.2,29.700000000000003,3.8000000000000003,0.162 +2013,12,9,11,30,0,116,116,10,13,1010,86.63,27.700000000000003,3.3000000000000003,0.162 +2013,12,9,12,30,0,160,160,11,14,1010,82.58,15.700000000000001,3.1,0.162 +2013,12,9,13,30,649,188,577,11,14,1010,88.11,355.20000000000005,3.6,0.162 +2013,12,9,14,30,601,169,477,10,13,1010,85.97,344.90000000000003,4.2,0.162 +2013,12,9,15,30,489,141,325,10,12,1010,88.09,345.70000000000005,4.5,0.162 +2013,12,9,16,30,287,87,146,9,11,1010,90.44,350,4.5,0.162 +2013,12,9,17,30,0,0,0,9,10,1010,93.60000000000001,354,4.5,0.162 +2013,12,9,18,30,0,0,0,8,9,1010,97.94,357.70000000000005,4.800000000000001,0.162 +2013,12,9,19,30,0,0,0,8,8,1020,100,0.4,5.4,0.162 +2013,12,9,20,30,0,0,0,7,7,1020,100,2.9000000000000004,6.1000000000000005,0.162 +2013,12,9,21,30,0,0,0,6,6,1020,100,2.6,6.9,0.162 +2013,12,9,22,30,0,0,0,4,5,1020,98.45,1.7000000000000002,7.300000000000001,0.162 +2013,12,9,23,30,0,0,0,3,5,1020,90.18,2,7.5,0.162 +2013,12,10,0,30,0,0,0,2,5,1020,90.76,1.3,7.6000000000000005,0.162 +2013,12,10,1,30,0,0,0,1,4,1020,86.37,358.6,7.5,0.162 +2013,12,10,2,30,0,0,0,1,4,1020,81.93,355.90000000000003,7.2,0.162 +2013,12,10,3,30,0,0,0,0,3,1020,83.2,354.6,7,0.162 +2013,12,10,4,30,0,0,0,0,2,1020,85.21000000000001,354,6.800000000000001,0.162 +2013,12,10,5,30,0,0,0,0,2,1020,81.94,354,6.7,0.162 +2013,12,10,6,30,0,0,0,-1,2,1020,79.64,354.70000000000005,6.6000000000000005,0.162 +2013,12,10,7,30,198,21,31,-1,2,1030,77.65,355.70000000000005,6.5,0.162 +2013,12,10,8,30,596,64,212,-2,3,1030,69.32000000000001,358.6,6.4,0.162 +2013,12,10,9,30,752,87,397,-2,5,1030,58.21,1.7000000000000002,5.9,0.162 +2013,12,10,10,30,818,104,542,-2,6,1030,53.22,2.2,5.1000000000000005,0.162 +2013,12,10,11,30,845,115,632,-2,8,1030,45.85,359.6,4.4,0.162 +2013,12,10,12,30,88,293,348,-3,9,1020,41.95,355.20000000000005,3.8000000000000003,0.162 +2013,12,10,13,30,816,123,612,-3,10,1020,41.26,351.1,3.4000000000000004,0.162 +2013,12,10,14,30,767,114,506,-3,10,1020,37.87,352.5,3.1,0.162 +2013,12,10,15,30,614,110,342,-3,10,1020,37.57,1.2000000000000002,3,0.162 +2013,12,10,16,30,422,71,158,-3,9,1020,40.85,11.600000000000001,2.5,0.162 +2013,12,10,17,30,0,0,0,0,7,1020,59.89,18.8,1.9000000000000001,0.162 +2013,12,10,18,30,0,0,0,0,7,1020,64.93,23.6,1.9000000000000001,0.16 +2013,12,10,19,30,0,0,0,0,6,1020,70.26,26.700000000000003,1.9000000000000001,0.16 +2013,12,10,20,30,0,0,0,1,6,1020,72.03,28.400000000000002,1.7000000000000002,0.16 +2013,12,10,21,30,0,0,0,1,6,1020,74.16,27.1,1.6,0.16 +2013,12,10,22,30,0,0,0,2,6,1020,81.37,23.6,1.4000000000000001,0.16 +2013,12,10,23,30,0,0,0,2,5,1020,83.22,18,1.3,0.16 +2013,12,11,0,30,0,0,0,2,5,1020,84.26,12.100000000000001,1.3,0.16 +2013,12,11,1,30,0,0,0,2,5,1020,84.29,9.200000000000001,1.2000000000000002,0.16 +2013,12,11,2,30,0,0,0,2,5,1020,84.26,6,1.2000000000000002,0.16 +2013,12,11,3,30,0,0,0,2,5,1020,85.68,4.7,1.2000000000000002,0.16 +2013,12,11,4,30,0,0,0,3,5,1020,88.7,3.5,1.2000000000000002,0.16 +2013,12,11,5,30,0,0,0,3,5,1020,90.85000000000001,2.5,1.5,0.16 +2013,12,11,6,30,0,0,0,3,6,1020,91.95,3.6,1.7000000000000002,0.16 +2013,12,11,7,30,106,21,26,3,6,1020,86.44,5,2.4000000000000004,0.16 +2013,12,11,8,30,475,77,193,3,8,1020,73.43,7.300000000000001,2.9000000000000004,0.16 +2013,12,11,9,30,0,64,64,4,10,1020,66.3,12.600000000000001,2.8000000000000003,0.16 +2013,12,11,10,30,0,143,143,4,12,1020,65.56,16.3,2.8000000000000003,0.16 +2013,12,11,11,30,775,131,604,5,13,1020,62.190000000000005,19.700000000000003,2.7,0.16 +2013,12,11,12,30,774,139,628,6,14,1020,62.440000000000005,20,2.7,0.16 +2013,12,11,13,30,0,167,167,7,15,1020,65.62,17.8,2.7,0.16 +2013,12,11,14,30,59,219,249,8,15,1020,63.29,17.2,2.9000000000000004,0.16 +2013,12,11,15,30,50,153,172,8,14,1020,68.34,19.200000000000003,3,0.16 +2013,12,11,16,30,142,78,107,8,13,1020,73.73,23,2.8000000000000003,0.16 +2013,12,11,17,30,0,0,0,9,12,1020,89.32000000000001,26.6,2.5,0.16 +2013,12,11,18,30,0,0,0,8,11,1020,87.09,28.3,2.5,0.16 +2013,12,11,19,30,0,0,0,8,11,1020,84.36,28.8,2.5,0.16 +2013,12,11,20,30,0,0,0,8,11,1030,81.83,31.200000000000003,2.5,0.16 +2013,12,11,21,30,0,0,0,7,11,1030,85.14,32.800000000000004,2.6,0.16 +2013,12,11,22,30,0,0,0,7,10,1030,82.17,27.900000000000002,2.9000000000000004,0.16 +2013,12,11,23,30,0,0,0,6,10,1030,85.07000000000001,20.3,3.2,0.16 +2013,12,12,0,30,0,0,0,6,9,1030,82.46000000000001,14,3.5,0.16 +2013,12,12,1,30,0,0,0,5,8,1030,85.49,16.1,3.7,0.16 +2013,12,12,2,30,0,0,0,5,8,1030,90.06,16.1,3.8000000000000003,0.16 +2013,12,12,3,30,0,0,0,5,7,1030,89.52,12.700000000000001,3.9000000000000004,0.16 +2013,12,12,4,30,0,0,0,5,7,1030,89.48,10.9,4,0.16 +2013,12,12,5,30,0,0,0,5,7,1030,95.73,11.600000000000001,4.4,0.16 +2013,12,12,6,30,0,0,0,5,7,1030,94.2,10.4,4.7,0.16 +2013,12,12,7,30,0,4,4,4,7,1030,92.33,13.5,4.800000000000001,0.16 +2013,12,12,8,30,38,92,101,4,8,1030,78.52,16.3,5,0.16 +2013,12,12,9,30,319,158,288,4,9,1030,71.71000000000001,16.6,4.9,0.16 +2013,12,12,10,30,108,241,298,3,10,1030,65.71000000000001,19.5,4.6000000000000005,0.16 +2013,12,12,11,30,219,284,418,3,11,1030,59.58,17.2,4.3,0.16 +2013,12,12,12,30,444,249,529,2,12,1030,53.99,12,3.9000000000000004,0.16 +2013,12,12,13,30,831,110,607,2,13,1020,48.800000000000004,18.7,3.6,0.16 +2013,12,12,14,30,789,100,504,2,14,1020,44.32,22.5,3.2,0.16 +2013,12,12,15,30,27,146,156,1,13,1020,46.75,25.5,2.8000000000000003,0.16 +2013,12,12,16,30,356,65,138,2,12,1020,50.95,35.2,2.2,0.16 +2013,12,12,17,30,0,0,0,5,11,1020,69.3,42.300000000000004,1.6,0.16 +2013,12,12,18,30,0,0,0,6,11,1020,72.97,42.800000000000004,1.7000000000000002,0.16 +2013,12,12,19,30,0,0,0,6,11,1020,73.89,39.5,1.8,0.16 +2013,12,12,20,30,0,0,0,6,10,1020,80.59,35,1.7000000000000002,0.16 +2013,12,12,21,30,0,0,0,6,9,1020,87.27,39.400000000000006,1.5,0.16 +2013,12,12,22,30,0,0,0,6,9,1020,86.39,44.7,1.4000000000000001,0.16 +2013,12,12,23,30,0,0,0,6,9,1020,86.94,50.7,1.3,0.16 +2013,12,13,0,30,0,0,0,7,8,1020,94.58,46.6,1.2000000000000002,0.16 +2013,12,13,1,30,0,0,0,7,8,1020,100,32.7,1.2000000000000002,0.16 +2013,12,13,2,30,0,0,0,6,8,1020,99.10000000000001,17.7,1.2000000000000002,0.16 +2013,12,13,3,30,0,0,0,6,8,1020,98.54,10.3,1.4000000000000001,0.16 +2013,12,13,4,30,0,0,0,6,8,1020,92.4,10.9,1.5,0.16 +2013,12,13,5,30,0,0,0,6,8,1020,92.69,11.100000000000001,1.6,0.16 +2013,12,13,6,30,0,0,0,6,8,1020,92.78,19.8,1.5,0.16 +2013,12,13,7,30,52,18,21,7,9,1020,94.36,38,1.8,0.16 +2013,12,13,8,30,402,83,180,7,11,1020,85.49,52.2,2.1,0.16 +2013,12,13,9,30,0,54,54,8,13,1010,75.88,76.80000000000001,2.2,0.16 +2013,12,13,10,30,2,172,173,10,15,1010,74.71000000000001,118.10000000000001,2.7,0.16 +2013,12,13,11,30,41,255,281,12,18,1010,69.64,153.60000000000002,3.7,0.16 +2013,12,13,12,30,70,285,330,13,19,1010,71.9,172.3,4.4,0.16 +2013,12,13,13,30,111,279,346,14,20,1010,71.7,181.9,4.6000000000000005,0.16 +2013,12,13,14,30,62,220,252,15,20,1010,74.03,188.3,4.2,0.16 +2013,12,13,15,30,295,148,260,15,19,1010,80.61,192.3,3.2,0.16 +2013,12,13,16,30,178,77,114,16,18,1010,89.48,196.8,2,0.16 +2013,12,13,17,30,0,0,0,16,16,1010,100,201.8,1.2000000000000002,0.16 +2013,12,13,18,30,0,0,0,15,16,1010,100,209.10000000000002,1,0.16 +2013,12,13,19,30,0,0,0,15,15,1010,100,230,0.8,0.16 +2013,12,13,20,30,0,0,0,14,14,1010,100,307.3,1,0.16 +2013,12,13,21,30,0,0,0,13,13,1010,100,353,1.1,0.16 +2013,12,13,22,30,0,0,0,11,13,1010,100,10.9,1,0.16 +2013,12,13,23,30,0,0,0,11,12,1010,100,24,1,0.16 +2013,12,14,0,30,0,0,0,11,12,1010,100,29.900000000000002,1,0.16 +2013,12,14,1,30,0,0,0,11,12,1010,100,18.1,1,0.16 +2013,12,14,2,30,0,0,0,11,12,1010,100,2.7,1.3,0.16 +2013,12,14,3,30,0,0,0,11,11,1010,100,352.8,2.1,0.16 +2013,12,14,4,30,0,0,0,11,11,1010,100,347.8,2.8000000000000003,0.16 +2013,12,14,5,30,0,0,0,10,11,1010,98.91,343.5,3.1,0.16 +2013,12,14,6,30,0,0,0,9,10,1010,100,339.5,3.4000000000000004,0.16 +2013,12,14,7,30,0,11,11,9,10,1010,100,336.1,3.7,0.16 +2013,12,14,8,30,26,91,97,9,12,1010,86.41,334,3.9000000000000004,0.16 +2013,12,14,9,30,378,148,301,9,14,1010,75.24,329.8,4.6000000000000005,0.16 +2013,12,14,10,30,0,109,109,8,17,1010,62.27,326.40000000000003,5.5,0.16 +2013,12,14,11,30,852,109,626,7,18,1010,49.46,327.90000000000003,5.800000000000001,0.16 +2013,12,14,12,30,893,99,661,6,19,1010,42.94,329.5,5.9,0.16 +2013,12,14,13,30,892,93,626,5,20,1010,38.2,331.3,6.1000000000000005,0.16 +2013,12,14,14,30,870,82,528,4,20,1010,36.43,335.70000000000005,6.4,0.16 +2013,12,14,15,30,784,73,371,4,19,1010,37.54,340.90000000000003,6.4,0.16 +2013,12,14,16,30,599,53,178,4,16,1010,46.01,348.70000000000005,5.800000000000001,0.16 +2013,12,14,17,30,0,0,0,5,13,1020,60.38,358.5,5.5,0.16 +2013,12,14,18,30,0,0,0,6,11,1020,73.19,6.7,5.6000000000000005,0.16 +2013,12,14,19,30,0,0,0,6,10,1020,80.42,11,5.300000000000001,0.16 +2013,12,14,20,30,0,0,0,6,9,1020,86.03,10.5,4.7,0.16 +2013,12,14,21,30,0,0,0,6,8,1020,89.8,6.5,4.3,0.16 +2013,12,14,22,30,0,0,0,5,7,1020,92.38,2.3000000000000003,4.3,0.16 +2013,12,14,23,30,0,0,0,5,6,1020,94.95,357.5,4.4,0.16 +2013,12,15,0,30,0,0,0,4,6,1020,91.11,354,4.4,0.16 +2013,12,15,1,30,0,0,0,4,5,1020,94.17,352.1,4.3,0.16 +2013,12,15,2,30,0,0,0,3,5,1020,97.04,352,4.2,0.16 +2013,12,15,3,30,0,0,0,2,4,1020,92.55,353.20000000000005,4,0.16 +2013,12,15,4,30,0,0,0,2,3,1020,97.44,350.20000000000005,3.6,0.16 +2013,12,15,5,30,0,0,0,2,3,1020,96.2,346.3,3.2,0.16 +2013,12,15,6,30,0,0,0,2,3,1020,94.23,344.20000000000005,3,0.16 +2013,12,15,7,30,212,18,27,2,4,1020,86.9,342.3,3.4000000000000004,0.16 +2013,12,15,8,30,652,57,212,1,6,1020,73.74,341.90000000000003,3.7,0.16 +2013,12,15,9,30,822,75,406,0,9,1020,59.050000000000004,353.70000000000005,3.4000000000000004,0.16 +2013,12,15,10,30,904,84,562,0,10,1020,51.2,357.5,3.1,0.16 +2013,12,15,11,30,946,88,661,0,12,1020,45.34,358.6,3,0.16 +2013,12,15,12,30,961,87,692,0,14,1020,41.72,358,3,0.16 +2013,12,15,13,30,954,83,653,0,15,1020,37.17,358.3,2.9000000000000004,0.16 +2013,12,15,14,30,921,77,548,0,15,1020,33.730000000000004,359,2.7,0.16 +2013,12,15,15,30,831,69,385,-1,14,1020,35.52,1.7000000000000002,2.3000000000000003,0.16 +2013,12,15,16,30,660,49,187,0,12,1020,44.5,7.1000000000000005,1.7000000000000002,0.16 +2013,12,15,17,30,0,0,0,3,10,1020,62.27,17.7,1.5,0.16 +2013,12,15,18,30,0,0,0,1,10,1020,55.9,29.3,1.5,0.16 +2013,12,15,19,30,0,0,0,1,9,1020,59.09,43.1,1.4000000000000001,0.16 +2013,12,15,20,30,0,0,0,1,9,1020,58.620000000000005,58.300000000000004,1.3,0.16 +2013,12,15,21,30,0,0,0,1,8,1020,62.38,71.60000000000001,1.2000000000000002,0.16 +2013,12,15,22,30,0,0,0,1,8,1020,61.77,81,1,0.16 +2013,12,15,23,30,0,0,0,0,8,1020,60.910000000000004,90.2,0.8,0.16 +2013,12,16,0,30,0,0,0,0,8,1020,60.02,97.7,0.5,0.16 +2013,12,16,1,30,0,0,0,0,7,1020,63.980000000000004,102.2,0.2,0.16 +2013,12,16,2,30,0,0,0,0,7,1020,68.24,300.1,0.30000000000000004,0.16 +2013,12,16,3,30,0,0,0,0,6,1020,68.17,290.6,0.6000000000000001,0.16 +2013,12,16,4,30,0,0,0,0,5,1020,74.06,291.2,0.8,0.16 +2013,12,16,5,30,0,0,0,1,4,1020,81.02,298.2,0.9,0.16 +2013,12,16,6,30,0,0,0,1,4,1020,82.78,303.5,1,0.16 +2013,12,16,7,30,276,16,27,1,5,1020,78.73,305.7,1.1,0.16 +2013,12,16,8,30,714,51,218,2,7,1020,73.34,311.5,0.9,0.16 +2013,12,16,9,30,869,67,415,2,9,1020,62.96,329.70000000000005,0.4,0.16 +2013,12,16,10,30,941,75,571,1,12,1020,49.47,43.2,0.2,0.16 +2013,12,16,11,30,975,79,668,1,15,1020,41.49,152.20000000000002,0.5,0.16 +2013,12,16,12,30,985,79,698,1,16,1020,39.050000000000004,157.8,0.7000000000000001,0.16 +2013,12,16,13,30,972,77,658,1,17,1020,36.800000000000004,150.5,0.8,0.16 +2013,12,16,14,30,933,72,550,1,17,1020,34.47,146.5,0.8,0.16 +2013,12,16,15,30,853,63,388,1,16,1020,37.230000000000004,135.1,0.9,0.16 +2013,12,16,16,30,681,46,189,3,14,1020,48.97,113.2,1.1,0.16 +2013,12,16,17,30,0,0,0,5,12,1020,66.58,107.5,1.4000000000000001,0.16 +2013,12,16,18,30,0,0,0,5,10,1020,73.91,109.4,1.6,0.16 +2013,12,16,19,30,0,0,0,6,9,1020,81.96000000000001,114.4,1.7000000000000002,0.16 +2013,12,16,20,30,0,0,0,6,9,1020,84.89,121.80000000000001,1.8,0.16 +2013,12,16,21,30,0,0,0,7,9,1020,88.98,131.4,1.8,0.16 +2013,12,16,22,30,0,0,0,8,8,1020,100,142,1.9000000000000001,0.16 +2013,12,16,23,30,0,0,0,8,8,1020,100,154.3,1.9000000000000001,0.16 +2013,12,17,0,30,0,0,0,8,8,1020,100,170.4,1.9000000000000001,0.16 +2013,12,17,1,30,0,0,0,8,8,1020,100,184.60000000000002,1.8,0.16 +2013,12,17,2,30,0,0,0,8,8,1020,100,195.3,1.7000000000000002,0.16 +2013,12,17,3,30,0,0,0,8,8,1020,100,207.3,1.5,0.16 +2013,12,17,4,30,0,0,0,8,8,1020,100,222.4,1.2000000000000002,0.16 +2013,12,17,5,30,0,0,0,8,8,1020,100,241.70000000000002,0.8,0.16 +2013,12,17,6,30,0,0,0,8,8,1020,100,277.90000000000003,0.7000000000000001,0.16 +2013,12,17,7,30,189,16,24,8,8,1020,100,345.1,1,0.16 +2013,12,17,8,30,635,57,205,9,10,1020,94.29,17.8,1.5,0.16 +2013,12,17,9,30,802,76,396,9,12,1020,85.79,36.1,1.6,0.16 +2013,12,17,10,30,885,84,550,10,15,1020,74.4,53.300000000000004,1.4000000000000001,0.16 +2013,12,17,11,30,927,88,647,10,18,1020,61.22,88.4,1.2000000000000002,0.16 +2013,12,17,12,30,935,89,677,9,19,1020,54.93,105.5,1.4000000000000001,0.16 +2013,12,17,13,30,924,86,638,8,20,1020,48.4,106.10000000000001,1.6,0.16 +2013,12,17,14,30,885,80,534,8,20,1020,47.53,104.2,1.8,0.16 +2013,12,17,15,30,538,109,314,8,19,1020,51.02,101.4,2.1,0.16 +2013,12,17,16,30,603,52,180,10,17,1020,63.58,97.5,2,0.16 +2013,12,17,17,30,0,0,0,11,14,1020,85.16,93.7,2,0.16 +2013,12,17,18,30,0,0,0,11,13,1020,91.98,91.80000000000001,2.2,0.16 +2013,12,17,19,30,0,0,0,11,13,1020,100,91,2.2,0.16 +2013,12,17,20,30,0,0,0,11,12,1020,100,92.2,2.1,0.16 +2013,12,17,21,30,0,0,0,11,11,1020,100,95.2,1.9000000000000001,0.16 +2013,12,17,22,30,0,0,0,11,11,1020,100,100.4,1.8,0.16 +2013,12,17,23,30,0,0,0,11,11,1020,100,108.4,1.7000000000000002,0.16 +2013,12,18,0,30,0,0,0,11,11,1020,100,117.60000000000001,1.7000000000000002,0.16 +2013,12,18,1,30,0,0,0,11,11,1020,100,128.1,1.7000000000000002,0.16 +2013,12,18,2,30,0,0,0,11,11,1020,100,139.6,1.6,0.16 +2013,12,18,3,30,0,0,0,11,11,1020,100,145.8,1.5,0.16 +2013,12,18,4,30,0,0,0,11,11,1020,100,144.6,1.3,0.16 +2013,12,18,5,30,0,0,0,11,11,1020,100,136.5,1.3,0.16 +2013,12,18,6,30,0,0,0,11,11,1020,100,124,1.3,0.16 +2013,12,18,7,30,182,16,22,11,12,1020,100,113.2,1.5,0.16 +2013,12,18,8,30,625,55,199,13,15,1020,93.01,106.4,2,0.16 +2013,12,18,9,30,790,74,388,13,18,1020,76.48,121.60000000000001,2.5,0.16 +2013,12,18,10,30,866,85,539,13,20,1020,66.18,144.4,2.7,0.16 +2013,12,18,11,30,901,91,635,13,21,1020,60.85,146.5,2.9000000000000004,0.16 +2013,12,18,12,30,920,89,667,12,22,1020,56.39,142.8,3.2,0.16 +2013,12,18,13,30,904,88,628,12,22,1020,55.77,139.9,3.6,0.16 +2013,12,18,14,30,859,83,525,12,21,1010,58.93,138.3,3.9000000000000004,0.16 +2013,12,18,15,30,764,75,367,12,20,1010,62.690000000000005,136.9,4.1000000000000005,0.16 +2013,12,18,16,30,569,55,176,12,19,1010,72.57000000000001,132,3.7,0.16 +2013,12,18,17,30,0,0,0,13,17,1010,87.24,124.5,3.4000000000000004,0.16 +2013,12,18,18,30,0,0,0,14,16,1010,89.71000000000001,126.4,3.4000000000000004,0.156 +2013,12,18,19,30,0,0,0,14,15,1010,96.91,135.70000000000002,3.6,0.156 +2013,12,18,20,30,0,0,0,14,15,1010,97.82000000000001,145.70000000000002,3.8000000000000003,0.156 +2013,12,18,21,30,0,0,0,14,16,1010,98.33,153.4,4.1000000000000005,0.156 +2013,12,18,22,30,0,0,0,14,16,1010,99.14,158.20000000000002,4.4,0.156 +2013,12,18,23,30,0,0,0,15,16,1010,100,160.10000000000002,4.5,0.156 +2013,12,19,0,30,0,0,0,15,16,1010,95.72,161.10000000000002,4.5,0.156 +2013,12,19,1,30,0,0,0,15,16,1010,97.51,161.70000000000002,4.4,0.156 +2013,12,19,2,30,0,0,0,15,16,1010,99.34,162.70000000000002,4.4,0.156 +2013,12,19,3,30,0,0,0,16,16,1010,100,164,4.5,0.156 +2013,12,19,4,30,0,0,0,16,16,1010,100,164.4,4,0.156 +2013,12,19,5,30,0,0,0,16,16,1010,100,162.3,3.7,0.156 +2013,12,19,6,30,0,0,0,16,16,1010,100,162.70000000000002,3.9000000000000004,0.156 +2013,12,19,7,30,89,16,19,17,18,1010,97.15,164,4.5,0.156 +2013,12,19,8,30,535,63,186,17,20,1010,87.54,165.60000000000002,5.5,0.156 +2013,12,19,9,30,76,166,197,18,22,1010,83.60000000000001,167.3,6.5,0.156 +2013,12,19,10,30,786,103,514,17,23,1010,72.99,171,7.300000000000001,0.156 +2013,12,19,11,30,818,114,606,17,24,1010,67.7,174.10000000000002,7.4,0.156 +2013,12,19,12,30,840,111,638,17,25,1010,67.15,175.60000000000002,7.2,0.156 +2013,12,19,13,30,822,109,600,17,25,1010,63.03,175.5,6.9,0.156 +2013,12,19,14,30,767,104,498,17,25,1000,63.1,176.10000000000002,6.5,0.156 +2013,12,19,15,30,668,90,346,17,24,1000,66.98,175.5,6,0.156 +2013,12,19,16,30,468,64,165,17,22,1000,76.97,169.8,5.1000000000000005,0.156 +2013,12,19,17,30,0,0,0,18,20,1000,91.15,159,4.6000000000000005,0.156 +2013,12,19,18,30,0,0,0,19,19,1010,100,154.60000000000002,4.7,0.156 +2013,12,19,19,30,0,0,0,19,19,1010,100,156.5,4.6000000000000005,0.156 +2013,12,19,20,30,0,0,0,18,19,1010,100,159.4,4.3,0.156 +2013,12,19,21,30,0,0,0,18,18,1010,100,162,4.1000000000000005,0.156 +2013,12,19,22,30,0,0,0,18,18,1010,100,165.10000000000002,4,0.156 +2013,12,19,23,30,0,0,0,18,18,1010,100,167.60000000000002,4,0.156 +2013,12,20,0,30,0,0,0,18,18,1010,100,168.4,4,0.156 +2013,12,20,1,30,0,0,0,18,18,1000,100,169.5,3.9000000000000004,0.156 +2013,12,20,2,30,0,0,0,17,18,1000,100,171.20000000000002,3.6,0.156 +2013,12,20,3,30,0,0,0,17,17,1000,100,171,3.4000000000000004,0.156 +2013,12,20,4,30,0,0,0,17,17,1000,100,169.10000000000002,3.5,0.156 +2013,12,20,5,30,0,0,0,17,17,1000,100,169.20000000000002,3.7,0.156 +2013,12,20,6,30,0,0,0,17,17,1000,100,171.60000000000002,3.9000000000000004,0.156 +2013,12,20,7,30,0,9,9,19,19,1000,100,171,4.4,0.156 +2013,12,20,8,30,61,87,102,19,21,1010,92.75,168.10000000000002,5.5,0.156 +2013,12,20,9,30,39,157,173,20,23,1010,85.23,170.60000000000002,6.800000000000001,0.156 +2013,12,20,10,30,22,201,213,20,24,1000,79.75,172.9,7.300000000000001,0.156 +2013,12,20,11,30,37,249,272,20,25,1000,74,172.9,7.2,0.156 +2013,12,20,12,30,163,301,404,19,26,1000,68.74,171.20000000000002,7,0.156 +2013,12,20,13,30,541,201,524,19,27,1000,67.9,168.70000000000002,6.800000000000001,0.156 +2013,12,20,14,30,406,199,408,19,26,1000,67.33,166,6.7,0.156 +2013,12,20,15,30,364,142,282,19,25,1000,71.46000000000001,162.70000000000002,6.5,0.156 +2013,12,20,16,30,317,82,151,19,23,1000,82.69,157.9,6,0.156 +2013,12,20,17,30,0,8,8,20,22,1000,96.29,152.8,5.6000000000000005,0.156 +2013,12,20,18,30,0,0,0,20,21,1000,97.92,152.5,5.5,0.156 +2013,12,20,19,30,0,0,0,20,21,1000,98.76,154.9,5.300000000000001,0.156 +2013,12,20,20,30,0,0,0,20,21,1000,99.57000000000001,157.9,5.300000000000001,0.156 +2013,12,20,21,30,0,0,0,20,21,1000,99.99000000000001,160.70000000000002,5.300000000000001,0.156 +2013,12,20,22,30,0,0,0,21,21,1000,100,160.10000000000002,6.1000000000000005,0.156 +2013,12,20,23,30,0,0,0,21,21,1000,100,164.70000000000002,7.5,0.156 +2013,12,21,0,30,0,0,0,21,21,1000,100,171.10000000000002,7.9,0.156 +2013,12,21,1,30,0,0,0,21,21,1000,100,177.4,7.9,0.156 +2013,12,21,2,30,0,0,0,21,21,1000,100,179.10000000000002,7.7,0.156 +2013,12,21,3,30,0,0,0,20,21,1000,99.57000000000001,176.70000000000002,7.7,0.156 +2013,12,21,4,30,0,0,0,20,21,1000,98.01,175.20000000000002,7.800000000000001,0.156 +2013,12,21,5,30,0,0,0,20,21,1000,97.22,173.8,8,0.156 +2013,12,21,6,30,0,0,0,20,21,1000,97.26,172.60000000000002,8,0.156 +2013,12,21,7,30,0,2,2,20,21,1000,97.60000000000001,173.9,7.4,0.156 +2013,12,21,8,30,0,30,30,20,21,1000,98.16,184.10000000000002,6.6000000000000005,0.156 +2013,12,21,9,30,92,167,204,20,23,1000,87.43,197.70000000000002,6.1000000000000005,0.156 +2013,12,21,10,30,226,234,352,20,24,1000,79.31,216.70000000000002,5.5,0.156 +2013,12,21,11,30,14,216,224,18,25,1000,65.48,248.4,5.1000000000000005,0.156 +2013,12,21,12,30,20,238,251,14,26,1000,49.95,283.90000000000003,4.9,0.156 +2013,12,21,13,30,1,174,175,11,26,1000,41.52,304.2,4.6000000000000005,0.156 +2013,12,21,14,30,82,229,271,10,26,1000,37.14,310.70000000000005,3.9000000000000004,0.156 +2013,12,21,15,30,204,162,241,9,25,1000,37.14,310.8,2.8000000000000003,0.156 +2013,12,21,16,30,653,47,188,11,22,1000,49.93,320,1.5,0.156 +2013,12,21,17,30,166,11,14,13,19,1000,69.75,353.70000000000005,1.2000000000000002,0.156 +2013,12,21,18,30,0,0,0,12,17,1000,75.36,25.400000000000002,1.5,0.156 +2013,12,21,19,30,0,0,0,12,16,1000,80,44.800000000000004,1.9000000000000001,0.156 +2013,12,21,20,30,0,0,0,12,15,1000,86.89,57.5,2,0.156 +2013,12,21,21,30,0,0,0,13,15,1000,91.26,61.900000000000006,1.9000000000000001,0.156 +2013,12,21,22,30,0,0,0,14,15,1000,100,58.6,1.8,0.156 +2013,12,21,23,30,0,0,0,14,14,1000,100,49,1.8,0.156 +2013,12,22,0,30,0,0,0,13,14,1000,100,39.400000000000006,2,0.156 +2013,12,22,1,30,0,0,0,13,13,1010,100,30.6,2.2,0.156 +2013,12,22,2,30,0,0,0,11,12,1010,100,22.6,2.5,0.156 +2013,12,22,3,30,0,0,0,11,12,1010,100,16.8,2.8000000000000003,0.156 +2013,12,22,4,30,0,0,0,11,12,1010,97.63,10.8,3.2,0.156 +2013,12,22,5,30,0,0,0,10,11,1010,95.73,4.4,3.6,0.156 +2013,12,22,6,30,0,0,0,8,11,1010,87.19,357.90000000000003,3.9000000000000004,0.156 +2013,12,22,7,30,172,13,18,7,12,1010,76.07000000000001,352.70000000000005,4.4,0.156 +2013,12,22,8,30,640,50,194,7,14,1010,64.24,348.6,4.5,0.156 +2013,12,22,9,30,803,68,383,7,17,1010,53.800000000000004,342.90000000000003,4.7,0.156 +2013,12,22,10,30,876,79,535,6,20,1010,42.32,348.90000000000003,5.6000000000000005,0.156 +2013,12,22,11,30,908,87,632,5,22,1010,35.87,354.90000000000003,6.2,0.156 +2013,12,22,12,30,914,90,664,5,22,1010,33.62,348.3,5.9,0.156 +2013,12,22,13,30,900,89,628,5,23,1010,31.84,343,5.4,0.156 +2013,12,22,14,30,861,84,529,5,22,1010,33.93,340.20000000000005,4.9,0.156 +2013,12,22,15,30,773,74,374,5,21,1010,35.92,341.1,4.3,0.156 +2013,12,22,16,30,599,54,185,5,19,1010,41.84,348.70000000000005,3.5,0.156 +2013,12,22,17,30,116,11,14,7,17,1010,55.160000000000004,3.9000000000000004,3.9000000000000004,0.156 +2013,12,22,18,30,0,0,0,6,15,1020,57.75,15.4,5.4,0.156 +2013,12,22,19,30,0,0,0,6,13,1020,63.83,20.1,6.300000000000001,0.156 +2013,12,22,20,30,0,0,0,5,11,1020,69.04,20.3,6.4,0.156 +2013,12,22,21,30,0,0,0,4,10,1020,69.64,19.3,6.4,0.156 +2013,12,22,22,30,0,0,0,4,9,1020,71.44,22,6.4,0.156 +2013,12,22,23,30,0,0,0,3,8,1020,73.14,25.400000000000002,6.4,0.156 +2013,12,23,0,30,0,0,0,2,7,1020,75.28,25.6,6.300000000000001,0.156 +2013,12,23,1,30,0,0,0,2,6,1020,78.16,23.900000000000002,6,0.156 +2013,12,23,2,30,0,0,0,2,6,1020,76.24,21.5,5.7,0.156 +2013,12,23,3,30,0,0,0,1,5,1020,79.5,18.3,5.2,0.156 +2013,12,23,4,30,0,0,0,1,5,1020,78.53,12.3,4.9,0.156 +2013,12,23,5,30,0,0,0,1,4,1020,83.97,3.9000000000000004,4.800000000000001,0.156 +2013,12,23,6,30,0,0,0,1,4,1020,83.69,355.6,4.9,0.156 +2013,12,23,7,30,161,13,17,1,4,1030,83.18,348.90000000000003,5.300000000000001,0.156 +2013,12,23,8,30,638,54,196,0,6,1030,67.42,351.8,5.6000000000000005,0.156 +2013,12,23,9,30,814,72,390,0,8,1030,54.120000000000005,356.90000000000003,5.4,0.156 +2013,12,23,10,30,897,81,547,-1,10,1030,44.69,359.90000000000003,5,0.156 +2013,12,23,11,30,939,85,649,-1,12,1030,37.78,2,4.6000000000000005,0.156 +2013,12,23,12,30,958,84,685,-2,14,1020,32.59,3.8000000000000003,4.2,0.156 +2013,12,23,13,30,954,80,652,-2,15,1020,30.330000000000002,5.1000000000000005,3.9000000000000004,0.156 +2013,12,23,14,30,926,74,553,-2,16,1020,30.29,7,3.7,0.156 +2013,12,23,15,30,850,65,396,-2,15,1020,30.51,11.600000000000001,3.4000000000000004,0.156 +2013,12,23,16,30,693,48,200,-1,13,1020,36.39,18.8,2.6,0.156 +2013,12,23,17,30,214,12,17,2,10,1020,59.46,29.700000000000003,2.1,0.156 +2013,12,23,18,30,0,0,0,2,9,1030,68.38,37.1,2.2,0.156 +2013,12,23,19,30,0,0,0,2,8,1030,70.25,40.5,2.3000000000000003,0.156 +2013,12,23,20,30,0,0,0,3,7,1030,77.81,42,2.4000000000000004,0.156 +2013,12,23,21,30,0,0,0,3,7,1030,79.64,40.800000000000004,2.4000000000000004,0.156 +2013,12,23,22,30,0,0,0,3,6,1030,86.25,39.300000000000004,2.4000000000000004,0.156 +2013,12,23,23,30,0,0,0,3,5,1030,92.77,38.2,2.3000000000000003,0.156 +2013,12,24,0,30,0,0,0,3,5,1030,90.77,37.4,2.2,0.156 +2013,12,24,1,30,0,0,0,3,4,1030,96.16,35.1,2.2,0.156 +2013,12,24,2,30,0,0,0,3,4,1030,96,31.400000000000002,2.3000000000000003,0.156 +2013,12,24,3,30,0,0,0,2,4,1030,100,28.8,2.4000000000000004,0.156 +2013,12,24,4,30,0,0,0,2,3,1030,100,28.400000000000002,2.4000000000000004,0.156 +2013,12,24,5,30,0,0,0,2,3,1030,100,30,2.4000000000000004,0.156 +2013,12,24,6,30,0,0,0,2,3,1030,100,33,2.5,0.156 +2013,12,24,7,30,227,13,19,3,5,1030,91.87,34.7,2.9000000000000004,0.156 +2013,12,24,8,30,714,47,206,4,8,1030,76.93,36.300000000000004,3.3000000000000003,0.156 +2013,12,24,9,30,875,62,404,3,11,1030,61.550000000000004,43.400000000000006,3.4000000000000004,0.156 +2013,12,24,10,30,945,71,561,2,14,1030,45.93,57.800000000000004,3.3000000000000003,0.156 +2013,12,24,11,30,974,76,661,2,16,1030,41.49,68.10000000000001,3.1,0.156 +2013,12,24,12,30,958,88,689,1,17,1020,38.82,79.80000000000001,2.9000000000000004,0.156 +2013,12,24,13,30,939,87,651,2,17,1020,37.9,92,2.9000000000000004,0.156 +2013,12,24,14,30,891,83,546,3,17,1020,39.87,101.60000000000001,2.9000000000000004,0.156 +2013,12,24,15,30,563,107,327,4,16,1020,45.06,104.9,2.9000000000000004,0.156 +2013,12,24,16,30,341,72,148,5,14,1020,56.620000000000005,104.60000000000001,2.3000000000000003,0.156 +2013,12,24,17,30,0,12,12,8,12,1020,76.81,102.60000000000001,1.9000000000000001,0.156 +2013,12,24,18,30,0,0,0,8,11,1020,84.75,102.30000000000001,1.9000000000000001,0.156 +2013,12,24,19,30,0,0,0,8,11,1020,87.43,105.5,1.8,0.156 +2013,12,24,20,30,0,0,0,9,11,1020,89.68,112.4,1.8,0.156 +2013,12,24,21,30,0,0,0,9,11,1020,91.62,121.80000000000001,1.8,0.156 +2013,12,24,22,30,0,0,0,10,11,1020,93.83,132.6,1.8,0.156 +2013,12,24,23,30,0,0,0,10,11,1020,96.49000000000001,143.4,1.9000000000000001,0.156 +2013,12,25,0,30,0,0,0,10,11,1020,99.4,154.10000000000002,1.8,0.156 +2013,12,25,1,30,0,0,0,11,11,1020,100,163.4,1.7000000000000002,0.156 +2013,12,25,2,30,0,0,0,11,12,1020,97.93,168.20000000000002,1.6,0.156 +2013,12,25,3,30,0,0,0,11,12,1020,99.58,163.9,1.3,0.156 +2013,12,25,4,30,0,0,0,11,12,1020,100,150.9,1.1,0.156 +2013,12,25,5,30,0,0,0,11,12,1020,100,129,1,0.156 +2013,12,25,6,30,0,0,0,11,11,1020,100,103.9,1.1,0.156 +2013,12,25,7,30,0,7,7,11,12,1020,100,92.60000000000001,1.2000000000000002,0.156 +2013,12,25,8,30,427,75,169,13,15,1020,88.78,85.4,1.5,0.156 +2013,12,25,9,30,558,108,325,13,17,1020,83.96000000000001,91.7,1.8,0.156 +2013,12,25,10,30,690,135,493,13,18,1020,78.56,99.4,1.9000000000000001,0.156 +2013,12,25,11,30,347,258,466,13,19,1020,73.49,109.60000000000001,1.7000000000000002,0.156 +2013,12,25,12,30,0,92,92,13,19,1020,68.65,115.80000000000001,1.3,0.156 +2013,12,25,13,30,0,84,84,13,18,1020,73.29,105.9,1,0.156 +2013,12,25,14,30,0,119,119,13,18,1020,80.59,63,1.3,0.156 +2013,12,25,15,30,0,24,24,14,17,1020,88.84,45.5,1.9000000000000001,0.156 +2013,12,25,16,30,0,12,12,14,16,1020,96.55,42.900000000000006,2.4000000000000004,0.156 +2013,12,25,17,30,0,0,0,14,15,1020,96.74000000000001,43.1,2.8000000000000003,0.156 +2013,12,25,18,30,0,0,0,14,15,1020,100,43.800000000000004,3,0.156 +2013,12,25,19,30,0,0,0,14,14,1020,100,44.5,3.1,0.156 +2013,12,25,20,30,0,0,0,14,14,1020,100,42.400000000000006,3.2,0.156 +2013,12,25,21,30,0,0,0,14,14,1020,100,38,3.2,0.156 +2013,12,25,22,30,0,0,0,13,14,1020,98.83,33,3.3000000000000003,0.156 +2013,12,25,23,30,0,0,0,13,14,1020,100,30.5,3.6,0.156 +2013,12,26,0,30,0,0,0,13,13,1020,100,31.200000000000003,3.9000000000000004,0.156 +2013,12,26,1,30,0,0,0,13,13,1020,100,32.5,4,0.156 +2013,12,26,2,30,0,0,0,12,13,1020,97.7,33,4.1000000000000005,0.156 +2013,12,26,3,30,0,0,0,11,12,1020,100,35.4,4.1000000000000005,0.156 +2013,12,26,4,30,0,0,0,11,12,1020,98.26,37.2,4,0.156 +2013,12,26,5,30,0,0,0,11,12,1020,95.62,37.300000000000004,4.2,0.156 +2013,12,26,6,30,0,0,0,11,12,1020,100,36.5,4.5,0.156 +2013,12,26,7,30,0,0,0,10,12,1020,98.33,33.5,4.800000000000001,0.156 +2013,12,26,8,30,49,83,94,10,12,1020,90.59,29.700000000000003,5,0.156 +2013,12,26,9,30,0,53,53,10,12,1020,88.10000000000001,28.200000000000003,5.1000000000000005,0.156 +2013,12,26,10,30,0,39,39,9,13,1020,80.69,30.700000000000003,4.9,0.156 +2013,12,26,11,30,0,101,101,9,13,1020,79.88,31.400000000000002,4.5,0.156 +2013,12,26,12,30,18,234,246,9,13,1020,80.38,27.5,4.1000000000000005,0.156 +2013,12,26,13,30,0,163,163,9,13,1020,81.28,22.8,3.9000000000000004,0.156 +2013,12,26,14,30,51,221,248,9,13,1020,81.95,23.900000000000002,4.1000000000000005,0.156 +2013,12,26,15,30,6,140,143,10,13,1020,82.4,25.700000000000003,4.1000000000000005,0.156 +2013,12,26,16,30,0,58,58,10,12,1020,88.44,24.700000000000003,3.7,0.156 +2013,12,26,17,30,0,4,4,10,12,1020,90.17,20.900000000000002,3.4000000000000004,0.156 +2013,12,26,18,30,0,0,0,10,11,1020,97.06,17,3.3000000000000003,0.153 +2013,12,26,19,30,0,0,0,10,11,1020,97.10000000000001,16.400000000000002,3.4000000000000004,0.153 +2013,12,26,20,30,0,0,0,10,11,1020,97.04,16.6,3.2,0.153 +2013,12,26,21,30,0,0,0,10,11,1020,96.64,15.700000000000001,3.1,0.153 +2013,12,26,22,30,0,0,0,9,11,1020,100,16.2,3.1,0.153 +2013,12,26,23,30,0,0,0,9,10,1020,100,18.7,3.3000000000000003,0.153 +2013,12,27,0,30,0,0,0,9,10,1020,100,20.5,3.4000000000000004,0.153 +2013,12,27,1,30,0,0,0,9,10,1020,99.38,17.2,3.6,0.153 +2013,12,27,2,30,0,0,0,9,10,1020,97.85000000000001,12.8,3.7,0.153 +2013,12,27,3,30,0,0,0,9,10,1020,100,9.8,3.6,0.153 +2013,12,27,4,30,0,0,0,9,9,1020,100,11.8,3.5,0.153 +2013,12,27,5,30,0,0,0,9,9,1020,100,17.8,3.4000000000000004,0.153 +2013,12,27,6,30,0,0,0,9,9,1020,100,22,3.3000000000000003,0.153 +2013,12,27,7,30,0,2,2,9,9,1020,100,24.3,3.3000000000000003,0.153 +2013,12,27,8,30,0,39,39,9,10,1020,95.26,24.5,3.3000000000000003,0.153 +2013,12,27,9,30,0,114,114,9,10,1020,96.64,19.6,3.3000000000000003,0.153 +2013,12,27,10,30,0,37,37,9,11,1020,91.60000000000001,17.3,3.3000000000000003,0.153 +2013,12,27,11,30,0,146,146,9,12,1020,86.60000000000001,16.2,3.5,0.153 +2013,12,27,12,30,0,81,81,9,13,1020,81.16,13.8,3.7,0.153 +2013,12,27,13,30,6,196,200,9,13,1020,80.43,14.700000000000001,4,0.153 +2013,12,27,14,30,33,211,228,9,14,1020,74.47,15.600000000000001,4.1000000000000005,0.153 +2013,12,27,15,30,0,119,119,9,14,1020,72.93,19.1,4,0.153 +2013,12,27,16,30,0,30,30,9,13,1020,76.96000000000001,18.5,3.3000000000000003,0.153 +2013,12,27,17,30,0,2,2,9,11,1020,90.69,15.100000000000001,2.7,0.153 +2013,12,27,18,30,0,0,0,9,11,1020,90.59,10.600000000000001,2.6,0.153 +2013,12,27,19,30,0,0,0,9,11,1020,96.83,7,2.7,0.153 +2013,12,27,20,30,0,0,0,9,10,1020,97.12,3.8000000000000003,2.7,0.153 +2013,12,27,21,30,0,0,0,9,10,1020,97.08,0.8,2.6,0.153 +2013,12,27,22,30,0,0,0,9,10,1020,96.57000000000001,0.5,2.6,0.153 +2013,12,27,23,30,0,0,0,9,9,1020,100,3.8000000000000003,2.5,0.153 +2013,12,28,0,30,0,0,0,9,9,1020,100,4.6000000000000005,2.4000000000000004,0.153 +2013,12,28,1,30,0,0,0,9,9,1020,100,2.4000000000000004,2.5,0.153 +2013,12,28,2,30,0,0,0,8,9,1020,99.13,0.4,2.7,0.153 +2013,12,28,3,30,0,0,0,8,8,1020,100,1.7000000000000002,2.8000000000000003,0.153 +2013,12,28,4,30,0,0,0,8,8,1020,100,2.6,2.7,0.153 +2013,12,28,5,30,0,0,0,8,8,1020,100,4.6000000000000005,2.6,0.153 +2013,12,28,6,30,0,0,0,7,8,1020,99.77,6.7,2.4000000000000004,0.153 +2013,12,28,7,30,0,5,5,7,8,1020,98.60000000000001,8.1,2.6,0.153 +2013,12,28,8,30,38,82,90,7,10,1020,91.14,0.30000000000000004,2.9000000000000004,0.153 +2013,12,28,9,30,12,142,147,6,12,1020,75.08,357.90000000000003,2.9000000000000004,0.153 +2013,12,28,10,30,71,226,263,5,14,1020,58.620000000000005,2.3000000000000003,2.9000000000000004,0.153 +2013,12,28,11,30,250,276,427,4,15,1020,53.47,2.3000000000000003,2.7,0.153 +2013,12,28,12,30,873,102,652,4,16,1020,50.19,359.8,2.3000000000000003,0.153 +2013,12,28,13,30,390,250,486,4,16,1010,47.300000000000004,351.40000000000003,2,0.153 +2013,12,28,14,30,804,99,521,5,16,1010,48.18,338.6,1.8,0.153 +2013,12,28,15,30,281,165,276,5,15,1010,53.03,334.1,1.6,0.153 +2013,12,28,16,30,216,89,139,6,14,1010,59.68,337.3,1.2000000000000002,0.153 +2013,12,28,17,30,108,15,19,8,13,1010,75.46000000000001,348.1,0.9,0.153 +2013,12,28,18,30,0,0,0,7,13,1010,69.65,11.200000000000001,0.8,0.153 +2013,12,28,19,30,0,0,0,6,12,1010,69.92,53.2,0.9,0.153 +2013,12,28,20,30,0,0,0,6,11,1010,74,88.5,1,0.153 +2013,12,28,21,30,0,0,0,6,11,1010,73.26,111.2,1,0.153 +2013,12,28,22,30,0,0,0,6,10,1010,77.01,137.20000000000002,1,0.153 +2013,12,28,23,30,0,0,0,6,10,1010,76.3,156.8,1,0.153 +2013,12,29,0,30,0,0,0,5,10,1010,75.92,162.70000000000002,1,0.153 +2013,12,29,1,30,0,0,0,5,10,1010,81.10000000000001,169.8,1,0.153 +2013,12,29,2,30,0,0,0,5,9,1010,81.42,187,0.9,0.153 +2013,12,29,3,30,0,0,0,6,9,1010,81.97,206.8,0.8,0.153 +2013,12,29,4,30,0,0,0,6,9,1010,82.52,209.20000000000002,0.6000000000000001,0.153 +2013,12,29,5,30,0,0,0,6,9,1010,83.55,200,0.6000000000000001,0.153 +2013,12,29,6,30,0,0,0,6,9,1010,84.88,200,0.6000000000000001,0.153 +2013,12,29,7,30,81,11,12,6,10,1010,80.8,198.70000000000002,0.5,0.153 +2013,12,29,8,30,533,61,177,7,12,1010,74.09,156.10000000000002,0.7000000000000001,0.153 +2013,12,29,9,30,714,87,363,8,14,1010,67.88,131.9,1,0.153 +2013,12,29,10,30,157,236,317,9,16,1010,63.78,148.9,1.2000000000000002,0.153 +2013,12,29,11,30,271,274,437,10,17,1010,64.29,166.3,1.3,0.153 +2013,12,29,12,30,23,245,260,10,18,1010,63.38,171.20000000000002,1.2000000000000002,0.153 +2013,12,29,13,30,35,249,271,11,18,1010,65.21000000000001,168.3,0.9,0.153 +2013,12,29,14,30,132,240,310,11,18,1010,66.28,146.8,0.7000000000000001,0.153 +2013,12,29,15,30,0,136,136,11,17,1010,71.29,95,1,0.153 +2013,12,29,16,30,155,89,125,12,16,1010,78.82000000000001,72.8,1.2000000000000002,0.153 +2013,12,29,17,30,72,16,18,13,15,1010,91.29,66.7,1.5,0.153 +2013,12,29,18,30,0,0,0,13,14,1010,95.71000000000001,62.6,1.8,0.153 +2013,12,29,19,30,0,0,0,13,14,1010,95.45,59.7,1.9000000000000001,0.153 +2013,12,29,20,30,0,0,0,13,13,1010,100,59.400000000000006,1.8,0.153 +2013,12,29,21,30,0,0,0,13,13,1010,100,53.400000000000006,1.9000000000000001,0.153 +2013,12,29,22,30,0,0,0,13,13,1010,100,40.1,2.3000000000000003,0.153 +2013,12,29,23,30,0,0,0,12,13,1010,98.54,26.200000000000003,3.5,0.153 +2013,12,30,0,30,0,0,0,11,12,1020,99.68,14.8,4.9,0.153 +2013,12,30,1,30,0,0,0,9,10,1020,100,10.9,6.1000000000000005,0.153 +2013,12,30,2,30,0,0,0,7,8,1020,98.38,7.5,7,0.153 +2013,12,30,3,30,0,0,0,5,7,1020,95.47,4.3,7.2,0.153 +2013,12,30,4,30,0,0,0,3,6,1020,84.98,2.5,6.9,0.153 +2013,12,30,5,30,0,0,0,2,5,1020,86.25,0.8,6.4,0.153 +2013,12,30,6,30,0,0,0,2,5,1020,84.68,359.20000000000005,5.800000000000001,0.153 +2013,12,30,7,30,0,3,3,2,5,1020,83.47,357.20000000000005,5.4,0.153 +2013,12,30,8,30,0,67,67,2,6,1020,81.47,352.3,5.300000000000001,0.153 +2013,12,30,9,30,0,88,88,1,6,1020,74.28,351.6,5.2,0.153 +2013,12,30,10,30,0,86,86,1,6,1020,73.47,351.70000000000005,5.1000000000000005,0.153 +2013,12,30,11,30,0,125,125,1,6,1020,74.02,351.3,4.9,0.153 +2013,12,30,12,30,0,176,177,1,7,1020,70.32000000000001,349.1,4.800000000000001,0.153 +2013,12,30,13,30,0,107,107,2,7,1020,71.39,345.70000000000005,4.6000000000000005,0.153 +2013,12,30,14,30,0,141,141,2,7,1020,71.86,342.1,4.4,0.153 +2013,12,30,15,30,0,100,100,2,7,1020,71.63,341.1,4,0.153 +2013,12,30,16,30,0,79,79,2,7,1020,76.56,342.1,3.5,0.153 +2013,12,30,17,30,0,8,8,2,6,1020,79.35000000000001,344.40000000000003,2.9000000000000004,0.153 +2013,12,30,18,30,0,0,0,2,6,1020,81,350,2.6,0.153 +2013,12,30,19,30,0,0,0,2,6,1020,80.99,358.6,2.5,0.153 +2013,12,30,20,30,0,0,0,2,6,1020,80.97,359.6,2.6,0.153 +2013,12,30,21,30,0,0,0,2,6,1020,79.44,1,2.7,0.153 +2013,12,30,22,30,0,0,0,2,6,1020,78.42,8.3,2.7,0.153 +2013,12,30,23,30,0,0,0,2,6,1020,83.57000000000001,8.8,2.8000000000000003,0.153 +2013,12,31,0,30,0,0,0,2,5,1020,82.61,9.4,2.9000000000000004,0.153 +2013,12,31,1,30,0,0,0,2,5,1020,81.79,10.200000000000001,3,0.153 +2013,12,31,2,30,0,0,0,2,5,1020,81.43,9.3,3,0.153 +2013,12,31,3,30,0,0,0,2,5,1020,81.64,6.9,3.1,0.153 +2013,12,31,4,30,0,0,0,2,5,1020,82.63,4.9,3.2,0.153 +2013,12,31,5,30,0,0,0,2,5,1020,89.99,1.9000000000000001,3.3000000000000003,0.153 +2013,12,31,6,30,0,0,0,2,4,1020,91.08,0.7000000000000001,3.3000000000000003,0.153 +2013,12,31,7,30,0,0,0,2,4,1020,92.15,4.3,3.5,0.153 +2013,12,31,8,30,0,18,18,2,5,1020,86.89,5.800000000000001,3.6,0.153 +2013,12,31,9,30,0,73,73,3,6,1030,81.58,1.4000000000000001,3.6,0.153 +2013,12,31,10,30,21,198,209,3,7,1020,76.62,350.6,3.7,0.153 +2013,12,31,11,30,30,242,260,3,8,1020,76.69,343,3.9000000000000004,0.153 +2013,12,31,12,30,28,253,271,3,8,1020,72.04,338.1,4,0.153 +2013,12,31,13,30,24,236,251,3,8,1020,73.13,335.90000000000003,4,0.153 +2013,12,31,14,30,1,169,169,3,8,1020,74.86,339.3,3.7,0.153 +2013,12,31,15,30,0,90,90,4,8,1020,76.94,345.1,3.2,0.153 +2013,12,31,16,30,0,55,55,4,7,1020,84.2,353.8,2.5,0.153 +2013,12,31,17,30,0,6,6,5,7,1020,88.63,2.5,2.1,0.153 +2013,12,31,18,30,0,0,0,18,20,1010,92.89,146.5,4.4,0.138 +2013,12,31,19,30,0,0,0,19,19,1010,100,147,4.1000000000000005,0.138 +2013,12,31,20,30,0,0,0,19,19,1010,100,156.20000000000002,3.3000000000000003,0.138 +2013,12,31,21,30,0,0,0,19,19,1010,100,170.3,2.5,0.138 +2013,12,31,22,30,0,0,0,18,19,1010,100,181.3,2.6,0.138 +2013,12,31,23,30,0,0,0,18,18,1010,100,189.3,3,0.138 diff --git a/greenheart/tools/eco/hopp_mgmt.py b/greenheart/tools/eco/hopp_mgmt.py index 7dec5a4b0..58ddf9a76 100644 --- a/greenheart/tools/eco/hopp_mgmt.py +++ b/greenheart/tools/eco/hopp_mgmt.py @@ -23,10 +23,14 @@ def setup_hopp( save_plots=False, output_dir="./output/", ): - - if "battery" in hopp_config["technologies"].keys() and \ - ("desired_schedule" not in hopp_config["site"].keys() or hopp_config["site"]["desired_schedule"] == []): - hopp_config["site"]["desired_schedule"] = [greenheart_config["electrolyzer"]["rating"]]*8760 + + if "battery" in hopp_config["technologies"].keys() and ( + "desired_schedule" not in hopp_config["site"].keys() + or hopp_config["site"]["desired_schedule"] == [] + ): + hopp_config["site"]["desired_schedule"] = [ + greenheart_config["electrolyzer"]["rating"] + ] * 8760 hopp_site = SiteInfo(**hopp_config["site"]) # adjust mean wind speed if desired @@ -155,8 +159,10 @@ def setup_hopp( plt.figure(figsize=(9, 6)) plt.plot(wind_speed) plt.title( - "Wind Speed (m/s) for selected location \n {} \n Average Wind Speed (m/s) {}".format( - "Gulf of Mexico", np.round(np.average(wind_speed), decimals=3) + "Wind Speed (m/s) for selected location \n {},{} \n Average Wind Speed (m/s) {}".format( + hopp_config["site"]["data"]["lat"], + hopp_config["site"]["data"]["lon"], + np.round(np.average(wind_speed), decimals=3), ) ) @@ -166,7 +172,15 @@ def setup_hopp( savedir = output_dir + "figures/" if not os.path.exists(savedir): os.makedirs(savedir) - plt.savefig(savedir + "average_wind_speed.png", bbox_inches="tight") + plt.savefig( + savedir + + "average_wind_speed_%f_%f.png" + % ( + hopp_config["site"]["data"]["lat"], + hopp_config["site"]["data"]["lon"], + ), + bbox_inches="tight", + ) print("\n") ################ return all the inputs for hopp diff --git a/greenheart/tools/eco/utilities.py b/greenheart/tools/eco/utilities.py index ef95b7961..ed48440bd 100644 --- a/greenheart/tools/eco/utilities.py +++ b/greenheart/tools/eco/utilities.py @@ -92,6 +92,7 @@ def get_inputs( print("\nTurbine configuration:") for key in turbine_config.keys(): print(key, ": ", turbine_config[key]) + print("\n") ############## provide custom layout for ORBIT and FLORIS if desired if filename_orbit_config != None: @@ -121,16 +122,39 @@ def get_inputs( * hopp_config["technologies"][tech]["turbine_rating_kw"] * 1e-3 ) + if verbose: + print( + "Wind Capacity ", + hopp_config["technologies"][tech]["num_turbines"] + * hopp_config["technologies"][tech]["turbine_rating_kw"] + * 1e-3, + "MW", + ) + elif tech == "pv": total_hybrid_plant_capacity_mw += ( hopp_config["technologies"][tech]["system_capacity_kw"] * 1e-3 ) + if verbose: + print( + "Solar PV Capacity ", + hopp_config["technologies"][tech]["system_capacity_kw"] * 1e-3, + "MW", + ) elif tech == "wave": total_hybrid_plant_capacity_mw += ( hopp_config["technologies"][tech]["num_devices"] * hopp_config["technologies"][tech]["device_rating_kw"] * 1e-3 ) + if verbose: + print( + "MHK Wave Capacity ", + hopp_config["technologies"][tech]["num_devices"] + * hopp_config["technologies"][tech]["device_rating_kw"] + * 1e-3, + "MW", + ) # initialize dict for hybrid plant if filename_orbit_config != None: @@ -382,8 +406,6 @@ def visualize_plant( # compressor side # not sized compressor_area = 25 compressor_side = np.sqrt(compressor_area) - ## create figure - fig, ax = plt.subplots(2, 2, figsize=(10, 6)) # get turbine rotor diameter rotor_diameter = turbine_config["rotor_diameter"] # in m diff --git a/hopp/__init__.py b/hopp/__init__.py index 1c17dad09..bb24154a4 100644 --- a/hopp/__init__.py +++ b/hopp/__init__.py @@ -1,8 +1,7 @@ from pathlib import Path -with open(Path(__file__).parent / "version.py") as _version_file: - __version__ = _version_file.read().strip() +__version__ = "2.2.0" ROOT_DIR = Path(__file__).resolve().parent diff --git a/hopp/simulation/technologies/sites/site_info.py b/hopp/simulation/technologies/sites/site_info.py index 4ec70d59a..fadb14b74 100644 --- a/hopp/simulation/technologies/sites/site_info.py +++ b/hopp/simulation/technologies/sites/site_info.py @@ -5,10 +5,10 @@ import matplotlib.pyplot as plt import numpy as np from numpy.typing import NDArray -from shapely.geometry import Polygon, MultiPolygon, Point +from shapely.geometry import Polygon, MultiPolygon, Point, shape from shapely.geometry.base import BaseGeometry from shapely.ops import transform -from shapely.validation import make_valid +from shapely import make_valid from fastkml import kml, KML import pyproj import utm @@ -259,7 +259,8 @@ def kml_read(filepath): valid_region = None for pm in placemarks: if "boundary" in pm.name.lower(): - valid_region = make_valid(pm.geometry) + shapely_object = shape(pm.geometry) + valid_region = make_valid(shapely_object) lon, lat = valid_region.centroid.x, valid_region.centroid.y if project is None: zone_num = utm.from_latlon(lat, lon)[2] @@ -272,9 +273,9 @@ def kml_read(filepath): for pm in placemarks: if 'exclusion' in pm.name.lower(): try: - valid_region = valid_region.difference(transform(project, pm.geometry.buffer(0))) + valid_region = valid_region.difference(transform(project, shape(pm.geometry.buffer(0)))) except: - valid_region = valid_region.difference(transform(project, make_valid(pm.geometry))) + valid_region = valid_region.difference(transform(project, make_valid(shape(pm.geometry)))) return k, valid_region, lat, lon @staticmethod diff --git a/hopp/simulation/technologies/wind/floris.py b/hopp/simulation/technologies/wind/floris.py index 2d1f48300..a507c706e 100644 --- a/hopp/simulation/technologies/wind/floris.py +++ b/hopp/simulation/technologies/wind/floris.py @@ -5,7 +5,7 @@ from typing import TYPE_CHECKING, Tuple import numpy as np -from floris.tools import FlorisInterface +from floris import FlorisModel, TimeSeries from hopp.simulation.base import BaseClass from hopp.simulation.technologies.sites import SiteInfo @@ -24,7 +24,7 @@ class Floris(BaseClass): _operational_losses: float = field(init=False) _timestep: Tuple[int, int] = field(init=False) annual_energy_pre_curtailment_ac: float = field(init=False) - fi: FlorisInterface = field(init=False) + fi: FlorisModel = field(init=False) def __attrs_post_init__(self): # floris_input_file = resource_file_converter(self.config["simulation_input_file"]) @@ -37,7 +37,7 @@ def __attrs_post_init__(self): # the above change is a temporary patch to bridge to refactor floris - self.fi = FlorisInterface(floris_input_file) + self.fi = FlorisModel(floris_input_file) self._timestep = self.config.timestep self._operational_losses = self.config.operational_losses @@ -56,7 +56,8 @@ def __attrs_post_init__(self): self.wind_farm_yCoordinates = self.fi.layout_y self.nTurbs = len(self.wind_farm_xCoordinates) self.turb_rating = self.config.turbine_rating_kw - self.wind_turbine_rotor_diameter = self.fi.floris.farm.rotor_diameters[0] + + self.wind_turbine_rotor_diameter = self.fi.core.farm.rotor_diameters[0] self.system_capacity = self.nTurbs * self.turb_rating # turbine power curve (array of kW power outputs) @@ -125,8 +126,14 @@ def execute(self, project_life): power_turbines = np.zeros((self.nTurbs, 8760)) power_farm = np.zeros(8760) - self.fi.reinitialize(wind_speeds=self.speeds[self.start_idx:self.end_idx], wind_directions=self.wind_dirs[self.start_idx:self.end_idx], time_series=True) - self.fi.calculate_wake() + time_series = TimeSeries( + wind_directions=self.wind_dirs[self.start_idx:self.end_idx], + wind_speeds=self.speeds[self.start_idx:self.end_idx], + turbulence_intensities=self.fi.core.flow_field.turbulence_intensities[0] + ) + + self.fi.set(wind_data=time_series) + self.fi.run() power_turbines[:, self.start_idx:self.end_idx] = self.fi.get_turbine_powers().reshape((self.nTurbs, self.end_idx - self.start_idx)) power_farm[self.start_idx:self.end_idx] = self.fi.get_farm_power().reshape((self.end_idx - self.start_idx)) diff --git a/hopp/version.py b/hopp/version.py deleted file mode 100644 index ccbccc3dc..000000000 --- a/hopp/version.py +++ /dev/null @@ -1 +0,0 @@ -2.2.0 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..91c67cdc2 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,144 @@ +[build-system] +requires = ["setuptools", "setuptools-scm"] +build-backend = "setuptools.build_meta" + +[project] +name = "HOPP" +dynamic = ["version"] +authors = [{name = "NREL", email = "dguittet@nrel.gov"}] +readme = {file = "README.md", content-type = "text/markdown"} +description = "Hybrid Systems Optimization and Performance Platform." +requires-python = ">=3.9, <3.12" +license = {file = "LICENSE"} +dependencies = [ + "Cython", + "NREL-PySAM==4.2.0", + "Pillow", + "Pyomo>=6.1.2", + "diskcache", + "fastkml", + "floris>=4.0", + "future", + "global_land_mask", + "humpday", + "hybridbosse", + "lcoe", + "lxml", + "matplotlib", + "multiprocessing-on-dill", + "nevergrad", + "numpy", + "numpy-financial", + "optuna", + "pandas>=2.0.3", + "pint", + "pvmismatch", + "pyDOE2", + "pymoo", + "pyproj", + "pysolar", + "pysot", + "python-dotenv", + "python-rapidjson", + "pytz", + "rainflow", + "requests", + "scikit-learn", + "scikit-optimize", + "scipy", + "shapely", + "setuptools", + "timezonefinder", + "urllib3", + "openpyxl", + "CoolProp", + "attrs", + "utm", + "pyyaml-include", +] +keywords = [ + "python3", + "wind-energy", + "operations", + "operational-analysis", + "operational-assessement", + "turbine-performance", + "wind-plant-performance", +] +classifiers = [ # https://pypi.org/classifiers/ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + "Intended Audience :: Other Audience", + "License :: OSI Approved :: BSD License", + "Natural Language :: English", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Topic :: Scientific/Engineering", + "Topic :: Software Development :: Libraries :: Python Modules", +] + +[project.urls] +source = "https://github.com/NREL/HOPP" +documentation = "https://hopp.readthedocs.io/" +issues = "https://github.com/NREL/HOPP/issues" +changelog = "https://github.com/NREL/HOPP/blob/main/RELEASE.md" + +[project.optional-dependencies] +develop = [ + "pytest", + "pytest-subtests", + "responses", + "sphinx", + "sphinx-rtd-theme", + "sphinx-copybutton", +] +examples = ["jupyterlab"] +all = ["openoa[develop,examples]"] + +[tool.setuptools] +include-package-data = true + +[tool.setuptools.packages.find] +include = [ + "hopp/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Tankinator.xlsx", + "hydrogen/h2_transport/data_tables/*.csv", + "tools/analysis/bos/BOSLookup.csv", + "simulation/technologies/layout/flicker_data/*shadow.txt", + "simulation/technologies/layout/flicker_data/*flicker.txt", + "simulation/technologies/csp/pySSC_daotk/libs/*", + "simulation/technologies/csp/pySSC_daotk/tower_data/*", + "simulation/technologies/csp/pySSC_daotk/trough_data/*", + "simulation/technologies/dispatch/cbc_solver/cbc-win64/*", + "simulation/resource_files/*", + "simulation/resource_files/*/*", +] + +[tool.setuptools.dynamic] +version = {attr = "hopp.__version__"} + +[tool.coverage.report] +exclude_lines = ["# pragma: no cover"] + +[tool.coverage.run] +# Coverage.py configuration file +# https://coverage.readthedocs.io/en/latest/config.html +branch = true +source = ["hopp/*"] +omit = [ + "setup.py", + "tests/*" +] + +[tool.pytest.ini_options] +python_files = [ + "tests/*.py", +] +testpaths = [ + "test/hopp/*.py", + "test/greenheart/*.py", +] diff --git a/requirements-dev.txt b/requirements-dev.txt deleted file mode 100644 index a065e45d1..000000000 --- a/requirements-dev.txt +++ /dev/null @@ -1,7 +0,0 @@ -pytest -pytest-subtests -responses -sphinx -sphinx-rtd-theme -sphinx-copybutton -Plotly \ No newline at end of file diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 2eec6a30b..000000000 --- a/requirements.txt +++ /dev/null @@ -1,49 +0,0 @@ -Cython -NREL-PySAM==4.2.0 -Pillow -Plotly -Pyomo>=6.1.2 -diskcache -fastkml -floris -future -global_land_mask -humpday -hybridbosse -lcoe -lxml -matplotlib -multiprocessing-on-dill -nevergrad -numpy<2 -numpy-financial -optuna -pandas>=2.0.3 -pint -plotly -pvmismatch -pyDOE2 -pymoo -pyproj -pysolar -pysot -python-dotenv -python-rapidjson -pytz -rainflow -requests -scikit-learn -scikit-optimize -scipy -shapely>=1.8.5,<2.0.0 -setuptools -timezonefinder -urllib3 -openpyxl -CoolProp -attrs -utm -orbit-nrel @ git+https://github.com/WISDEM/ORBIT.git@3baed36052d7503de6ea6f2db0b40945d637ea35 -electrolyzer @ git+https://github.com/jaredthomas68/electrolyzer.git@smoothing -ProFAST @ git+https://github.com/NREL/ProFAST.git -openmdao[all] diff --git a/setup.py b/setup.py deleted file mode 100644 index 518a0877a..000000000 --- a/setup.py +++ /dev/null @@ -1,56 +0,0 @@ -from pathlib import Path -from setuptools import setup, find_packages -import re - - -# Package meta-data. -NAME = "HOPP" -DESCRIPTION = "Hybrid Systems Optimization and Performance Platform." -URL = "https://github.com/NREL/HOPP" -EMAIL = "dguittet@nrel.gov" -AUTHOR = "NREL" -REQUIRES_PYTHON = ">=3.8.0" - -ROOT = Path(__file__).parent -with open(ROOT / "hopp" / "version.py") as version_file: - VERSION = version_file.read().strip() - -# Get package data -base_path = Path("hopp") -package_data_files = [ - base_path / "hydrogen" / "h2_storage" / "pressure_vessel" / "compressed_gas_storage_model_20221021" / "Tankinator.xlsx", - *base_path.glob("hydrogen/h2_transport/data_tables/*.csv"), - *base_path.glob("tools/analysis/bos/BOSLookup.csv"), - *base_path.glob("simulation/technologies/layout/flicker_data/*shadow.txt"), - *base_path.glob("simulation/technologies/layout/flicker_data/*flicker.txt"), - *base_path.glob("simulation/technologies/csp/pySSC_daotk/libs/*"), - *base_path.glob("simulation/technologies/csp/pySSC_daotk/tower_data/*"), - *base_path.glob("simulation/technologies/csp/pySSC_daotk/trough_data/*"), - *base_path.glob("simulation/technologies/dispatch/cbc_solver/cbc-win64/*"), - *base_path.glob("simulation/resource_files/*"), - *base_path.glob("simulation/resource_files/*/*") -] - -package_data = { - "hopp": [str(file.relative_to(base_path)) for file in package_data_files], - "greenheart": [], - "ProFAST": [] -} - -setup( - name=NAME, - version=VERSION, - url=URL, - description=DESCRIPTION, - long_description=(base_path.parent / "RELEASE.md").read_text(), - long_description_content_type='text/markdown', - license='BSD 3-Clause', - author=AUTHOR, - author_email=EMAIL, - python_requires=REQUIRES_PYTHON, - packages=find_packages(), - package_data=package_data, - include_package_data=True, - install_requires=(base_path.parent / "requirements.txt").read_text().splitlines(), - tests_require=['pytest', 'pytest-subtests', 'responses'] -) diff --git a/tests/hopp/inputs/floris_config.yaml b/tests/hopp/inputs/floris_config.yaml new file mode 100644 index 000000000..8e85254a0 --- /dev/null +++ b/tests/hopp/inputs/floris_config.yaml @@ -0,0 +1,83 @@ +name: Gauss +description: Three turbines using Gauss model +floris_version: v3.0.0 +logging: + console: + enable: false + level: WARNING + file: + enable: false + level: WARNING +solver: + type: turbine_grid + turbine_grid_points: 1 +farm: + layout_x: + - 0.0 + - 1841.0 + - 3682.0 + - 5523.0 + layout_y: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + turbine_type: + - nrel_5MW +flow_field: + air_density: 1.225 + reference_wind_height: -1 + wind_directions: + - 270.0 + wind_shear: 0.33 + wind_speeds: + - 8.0 + wind_veer: 0.0 + turbulence_intensities: + - 0.06 +wake: + model_strings: + combination_model: sosfs + deflection_model: gauss + turbulence_model: crespo_hernandez + velocity_model: gauss + enable_secondary_steering: false + enable_yaw_added_recovery: false + enable_transverse_velocities: false + wake_deflection_parameters: + gauss: + ad: 0.0 + alpha: 0.58 + bd: 0.0 + beta: 0.077 + dm: 1.0 + ka: 0.38 + kb: 0.004 + jimenez: + ad: 0.0 + bd: 0.0 + kd: 0.05 + wake_velocity_parameters: + cc: + a_s: 0.179367259 + b_s: 0.0118889215 + c_s1: 0.0563691592 + c_s2: 0.13290157 + a_f: 3.11 + b_f: -0.68 + c_f: 2.41 + alpha_mod: 1.0 + gauss: + alpha: 0.58 + beta: 0.077 + ka: 0.38 + kb: 0.004 + jensen: + we: 0.05 + wake_turbulence_parameters: + crespo_hernandez: + initial: 0.1 + constant: 0.5 + ai: 0.8 + downstream: -0.32 + enable_active_wake_mixing: false diff --git a/tests/hopp/test_hybrid.py b/tests/hopp/test_hybrid.py index bfd2a71f1..6c168bab7 100644 --- a/tests/hopp/test_hybrid.py +++ b/tests/hopp/test_hybrid.py @@ -386,7 +386,7 @@ def test_hybrid_wave_battery(hybrid_config, wavesite, subtests): assert aeps.battery == approx(87.84, 1e3) -def test_hybrid_wind_only(hybrid_config): +def test_hybrid_wind_only(hybrid_config, subtests): technologies = hybrid_config["technologies"] wind_only = {key: technologies[key] for key in ("wind", "grid")} hybrid_config["technologies"] = wind_only @@ -399,12 +399,45 @@ def test_hybrid_wind_only(hybrid_config): npvs = hybrid_plant.net_present_values cf = hybrid_plant.capacity_factors - assert aeps.wind == approx(33615479, 1e3) - assert aeps.hybrid == approx(33615479, 1e3) + with subtests.test("wind aep"): + assert aeps.wind == approx(31977778, 1e-3) + with subtests.test("hybrid aep"): + assert aeps.hybrid == approx(31977778, 1e-3) + with subtests.test("wind npv"): + assert npvs.wind == approx(-7256658, 1e-3) + with subtests.test("hybrid npv"): + assert npvs.hybrid == approx(-7256658, 1e-3) - assert npvs.wind == approx(-13692784, 1e3) - assert npvs.hybrid == approx(-13692784, 1e3) +def test_hybrid_wind_only_floris(hybrid_config, subtests): + floris_config_path = ( + ROOT_DIR.parent / "tests" / "hopp" / "inputs" / "floris_config.yaml" + ) + technologies = hybrid_config["technologies"] + wind_only = {key: technologies[key] for key in ("wind", "grid")} + + wind_only["wind"]["model_name"] = "floris" + wind_only["wind"]["floris_config"] = floris_config_path + wind_only["wind"]["timestep"] = [0, 8760] + + hybrid_config["technologies"] = wind_only + hi = HoppInterface(hybrid_config) + hybrid_plant = hi.system + + hi.simulate(25) + + aeps = hybrid_plant.annual_energies + npvs = hybrid_plant.net_present_values + cf = hybrid_plant.capacity_factors + + with subtests.test("wind aep"): + assert aeps.wind == approx(74149945, 1e-3) + with subtests.test("hybrid aep"): + assert aeps.hybrid == approx(68271657, 1e-3) + with subtests.test("wind npv"): + assert npvs.wind == approx(3592293, 1e-3) + with subtests.test("hybrid npv"): + assert npvs.hybrid == approx(2108687, 1e-3) def test_hybrid_pv_only(hybrid_config): technologies = hybrid_config["technologies"] diff --git a/tests/hopp/test_wind.py b/tests/hopp/test_wind.py index e0bd7baf2..95f542329 100644 --- a/tests/hopp/test_wind.py +++ b/tests/hopp/test_wind.py @@ -3,10 +3,13 @@ import math import PySAM.Windpower as windpower +from floris import FlorisModel, TimeSeries from hopp.simulation.technologies.wind.wind_plant import WindPlant, WindConfig from tests.hopp.utils import create_default_site_info +from hopp import ROOT_DIR + @fixture def site(): return create_default_site_info() @@ -41,7 +44,7 @@ def site(): 35.75, 36, 36.25, 36.5, 36.75, 37, 37.25, 37.5, 37.75, 38, 38.25, 38.5, 38.75, 39, 39.25, 39.5, 39.75, 40) -def test_wind_powercurve(): +def test_wind_powercurve_pysam(): model = windpower.default("WindpowerSingleowner") model.Turbine.wind_turbine_rotor_diameter = 75 @@ -65,7 +68,7 @@ def test_wind_powercurve(): assert all([a == b for a, b in zip(powercurve_truth, powercurve_calc)]) -def test_changing_n_turbines(site): +def test_changing_n_turbines_pysam(site): # test with gridded layout config = WindConfig.from_dict({'num_turbines': 10, "turbine_rating_kw": 2000}) model = WindPlant(site, config=config) @@ -78,7 +81,7 @@ def test_changing_n_turbines(site): # test with row layout -def test_changing_rotor_diam_recalc(site): +def test_changing_rotor_diam_recalc_pysam(site): config = WindConfig.from_dict({'num_turbines': 10, "turbine_rating_kw": 2000}) model = WindPlant(site, config=config) assert model.system_capacity_kw == 20000 @@ -89,7 +92,7 @@ def test_changing_rotor_diam_recalc(site): assert model.turb_rating == 2000, "new rating different when rotor diameter is " + str(d) -def test_changing_turbine_rating(site): +def test_changing_turbine_rating_pysam(site): # powercurve scaling config = WindConfig.from_dict({'num_turbines': 24, "turbine_rating_kw": 2000}) model = WindPlant(site, config=config) @@ -99,7 +102,7 @@ def test_changing_turbine_rating(site): assert model.system_capacity_kw == model.turb_rating * n_turbs, "system size error when rating is " + str(n) -def test_changing_powercurve(site): +def test_changing_powercurve_pysam(site): # with power curve recalculation requires diameter changes config = WindConfig.from_dict({'num_turbines': 24, "turbine_rating_kw": 2000}) model = WindPlant(site, config=config) @@ -112,7 +115,7 @@ def test_changing_powercurve(site): assert model.system_capacity_kw == pytest.approx(model.turb_rating * n_turbs, 0.1), "size error when rating is " + str(n) -def test_changing_system_capacity(site): +def test_changing_system_capacity_pysam(site): # adjust number of turbines, system capacity won't be exactly as requested config = WindConfig.from_dict({'num_turbines': 20, "turbine_rating_kw": 1000}) model = WindPlant(site, config=config) @@ -128,5 +131,47 @@ def test_changing_system_capacity(site): model.system_capacity_by_rating(n) assert model.system_capacity_kw == pytest.approx(n) +#################### FLORIS tests ################ + +def test_changing_rotor_diam_recalc_floris(site): + floris_config_path = ( + ROOT_DIR.parent / "tests" / "hopp" / "inputs" / "floris_config.yaml" + ) + + config = WindConfig.from_dict({'num_turbines': 20, "turbine_rating_kw": 1000, "model_name": "floris", "timestep": [1, 8760], "floris_config": floris_config_path}) + model = WindPlant(site, config=config) + assert model.system_capacity_kw == 20000 + diams = range(50, 70, 140) + for d in diams: + model.rotor_diameter = d + assert model.rotor_diameter == d, "rotor diameter should be " + str(d) + +def test_changing_turbine_rating_floris(site): + + floris_config_path = ( + ROOT_DIR.parent / "tests" / "hopp" / "inputs" / "floris_config.yaml" + ) + config = WindConfig.from_dict({'num_turbines': 20, "turbine_rating_kw": 1000, "model_name": "floris", "timestep": [1, 8760], "floris_config": floris_config_path}) + model = WindPlant(site, config=config) + n_turbs = model.num_turbines + for n in range(1000, 3000, 150): + model.turb_rating = n + assert model.system_capacity_kw == model.turb_rating * n_turbs, "system size error when rating is " + str(n) +def test_changing_system_capacity_floris(site): + floris_config_path = ( + ROOT_DIR.parent / "tests" / "hopp" / "inputs" / "floris_config.yaml" + ) + config = WindConfig.from_dict({'num_turbines': 20, "turbine_rating_kw": 1000, "model_name": "floris", "timestep": [1, 8760], "floris_config": floris_config_path}) + model = WindPlant(site, config=config) + rating = model.turb_rating + for n in range(1000, 20000, 1000): + model.system_capacity_by_num_turbines(n) + assert model.turb_rating == rating, str(n) + assert model.system_capacity_kw == rating * round(n/rating) + # adjust turbine rating first, system capacity will be exact + model = WindPlant(site, config=config) + for n in range(40000, 60000, 1000): + model.system_capacity_by_rating(n) + assert model.system_capacity_kw == pytest.approx(n) \ No newline at end of file