diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75659d2ab..e25ca9bb5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,24 +1,21 @@ name: Testing - on: push: branches: [main, develop] pull_request: branches: [main, develop] schedule: - - cron: "0 0 * * MON" - + - cron: 0 0 * * MON jobs: build: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11", "3.13"] + python-version: ['3.11', '3.13'] optional: [false] include: - - python-version: "3.11" + - python-version: '3.11' optional: true - steps: - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} @@ -27,7 +24,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies env: - SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL: True + SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL: true run: | sudo apt-get update && sudo apt-get install -y libglpk-dev glpk-utils coinor-cbc python -m pip install --upgrade pip @@ -48,7 +45,6 @@ jobs: - name: Run integration tests run: | pytest . -m integration --cov=h2integrate --cov-report=xml:integration-coverage.xml - - name: Upload unit coverage to uses: codecov/codecov-action@v5 with: diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 3623ee093..84aa765c3 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -1,19 +1,17 @@ name: pre-commit - on: push: branches: [main, develop] pull_request: branches: [main, develop] - jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 - - name: Set up Python - uses: actions/setup-python@v6 - with: - python-version: 3.13 - - name: Run pre-commit - uses: pre-commit/action@v3.0.1 + - uses: actions/checkout@v6 + - name: Set up Python + uses: actions/setup-python@v6 + with: + python-version: 3.13 + - name: Run pre-commit + uses: pre-commit/action@v3.0.1 diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index 250ebc5e3..2a8b280b8 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -1,9 +1,7 @@ name: Upload to PyPi - on: release: types: [published] - jobs: deploy: runs-on: ubuntu-latest @@ -14,18 +12,18 @@ jobs: permissions: id-token: write steps: - - uses: actions/checkout@v6 - - name: Set up Python - uses: actions/setup-python@v6 - with: - python-version: 3.13 - - name: Build package - run: | - python -m pip install --upgrade pip - pip install setuptools build wheel twine - python -m build - twine check --strict dist/* - - name: Publish package to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - verbose: True + - uses: actions/checkout@v6 + - name: Set up Python + uses: actions/setup-python@v6 + with: + python-version: 3.13 + - name: Build package + run: | + python -m pip install --upgrade pip + pip install setuptools build wheel twine + python -m build + twine check --strict dist/* + - name: Publish package to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + verbose: true diff --git a/.github/workflows/publish_to_test_pypi.yml b/.github/workflows/publish_to_test_pypi.yml index 3acbd144c..aedc5a33f 100644 --- a/.github/workflows/publish_to_test_pypi.yml +++ b/.github/workflows/publish_to_test_pypi.yml @@ -1,10 +1,7 @@ name: Upload to Test PyPi - on: push: - tags: - - 'v*' - + tags: [v*] jobs: deploy: runs-on: ubuntu-latest @@ -15,19 +12,19 @@ jobs: permissions: id-token: write steps: - - uses: actions/checkout@v6 - - name: Set up Python - uses: actions/setup-python@v6 - with: - python-version: 3.13 - - name: Build package - run: | - python -m pip install --upgrade pip - pip install setuptools build wheel twine - python -m build - twine check --strict dist/* - - name: Publish package to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - verbose: True - repository-url: https://test.pypi.org/legacy/ + - uses: actions/checkout@v6 + - name: Set up Python + uses: actions/setup-python@v6 + with: + python-version: 3.13 + - name: Build package + run: | + python -m pip install --upgrade pip + pip install setuptools build wheel twine + python -m build + twine check --strict dist/* + - name: Publish package to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + verbose: true + repository-url: https://test.pypi.org/legacy/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6346fff5c..e8d0ef24f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,34 +1,39 @@ default_language_version: - python: python3 + python: python3 repos: -- repo: https://github.com/pycqa/isort - rev: 5.12.0 - hooks: - - id: isort - name: isort - stages: [pre-commit] - -- repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 - hooks: - - id: trailing-whitespace - - id: end-of-file-fixer - - id: check-executables-have-shebangs - - id: check-json - - id: check-yaml - args: [--unsafe] # allow Python constructors - - id: check-merge-conflict - - id: check-symlinks - - id: mixed-line-ending - - id: pretty-format-json - args: [--autofix] - -- repo: https://github.com/astral-sh/ruff-pre-commit + - repo: https://github.com/pycqa/isort + rev: 5.12.0 + hooks: + - id: isort + name: isort + stages: [pre-commit] + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.5.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-executables-have-shebangs + - id: check-json + - id: check-yaml + args: [--unsafe] # allow Python constructors + - id: check-merge-conflict + - id: check-symlinks + - id: mixed-line-ending + - id: pretty-format-json + args: [--autofix] + - repo: https://github.com/lyz-code/yamlfix/ + rev: 1.19.1 + hooks: + - id: yamlfix + # Exclude YAML files that are used as inputs for testing or examples, or ones for desired schedule in HOPP as they + # expect misformatted YAML files. + exclude: ^(h2integrate/core/test/inputs/.*|examples/11_hybrid_energy_plant/tech_inputs/desired_schedules/.*)$ + - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.8.1 - hooks: - - id: ruff-format - types_or: [ python, pyi, jupyter ] - - id: ruff - types_or: [ python, pyi, jupyter ] - args: [ --fix, --unsafe-fixes] + rev: v0.8.1 + hooks: + - id: ruff-format + types_or: [python, pyi, jupyter] + - id: ruff + types_or: [python, pyi, jupyter] + args: [--fix, --unsafe-fixes] diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 14a6a9000..779253020 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,21 +1,16 @@ version: 2 - # https://docs.readthedocs.io/en/stable/config-file/v2.html build: os: ubuntu-24.04 tools: - python: "3.11" + python: '3.11' jobs: - pre_build: - - "jupyter-book config sphinx docs/" - + pre_build: [jupyter-book config sphinx docs/] python: install: - method: pip path: . - extra_requirements: - - develop - + extra_requirements: [develop] sphinx: configuration: docs/conf.py builder: html diff --git a/CHANGELOG.md b/CHANGELOG.md index e917e832d..09ac36620 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ all tests must be marked via `@pytest.mark.`. - Partial testing suite refactor to parameterize many of the common fixtures and test routines. - `unittest` style tests are refactored to be `pytest` style tests for test consistency. +- Added a pre-commit hook for `yamlfix` to auto-format YAML files and `yamlfix`'d all YAML files for consistent formatting ## 0.6 [February 10, 2026] diff --git a/docs/_config.yml b/docs/_config.yml index 1c1b47129..10effe641 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,17 +1,15 @@ # Book settings # Learn more at https://jupyterbook.org/customize/config.html - title: H2Integrate author: National Renewable Energy Laboratory # logo: logo.png -copyright: "2025" +copyright: '2025' only_build_toc_files: false # exclude_patterns: [_build, Thumbs.db, .DS_Store, "**.ipynb_checkpoints", .github] - # Force re-execution of notebooks on each build. # See https://jupyterbook.org/content/execute.html execute: - execute: + execute: null execute_notebooks: auto timeout: -1 # better for longer running notebooks merge_streams: true # keeps unsynchronized cell outputs in a single output cell @@ -19,32 +17,27 @@ execute: - _build - Thumbs.db - DS_Store - - "**.ipynb_checkpoints" - + - '**.ipynb_checkpoints' # Define the name of the latex output file for PDF builds latex: latex_documents: targetname: book.tex - # Information about where the book exists on the web repository: url: https://github.com/NREL/H2Integrate path_to_book: docs branch: main - # Add GitHub buttons to your book # See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository html: use_issues_button: true use_repository_button: true baseurl: https://nrel.github.io/H2Integrate/ - sphinx: extra_extensions: - - "sphinx.ext.autodoc" - - "sphinx.ext.autosummary" - - "sphinx.ext.napoleon" - + - sphinx.ext.autodoc + - sphinx.ext.autosummary + - sphinx.ext.napoleon config: # html_theme: sphinx_book_theme # html_theme_options: @@ -73,7 +66,7 @@ sphinx: # type: url, # }, # ] - language: 'python' + language: python autosummary_generate: true autodoc_default_options: members: true diff --git a/docs/_toc.yml b/docs/_toc.yml index 2f75255b3..cfcb471cd 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -1,104 +1,95 @@ # Table of contents # Learn more at https://jupyterbook.org/customize/toc.html - format: jb-book root: intro parts: -- caption: Getting Started - chapters: - - file: getting_started/install - - file: getting_started/expected_user_knowledge - - file: getting_started/environment_variables - -- caption: User Guide - chapters: - - file: user_guide/model_overview - - file: user_guide/how_to_set_up_an_analysis - - file: user_guide/connecting_technologies - - file: user_guide/defining_sites_and_resources - - file: user_guide/design_optimization_in_h2i - - file: user_guide/design_of_experiments_in_h2i - - file: user_guide/postprocessing_results - - file: user_guide/recording_and_loading_data - - file: user_guide/how_to_interface_with_user_defined_model - - file: user_guide/how_to_run_several_cases_in_sequence - - file: user_guide/run_size_modes - - file: user_guide/plotting_geospatial_data_with_geopandas - -- caption: Technology Models - chapters: - - file: technology_models/feedstocks - - file: technology_models/run_of_river - - file: technology_models/natural_gas - - file: technology_models/wombat_electrolyzer_om - - file: technology_models/pvwattsv8_solar_pv.md - - file: technology_models/windpower_wind_plant.md - - file: technology_models/atb_costs_pv.md - - file: technology_models/atb_costs_wind.md - - file: technology_models/co2.md - - file: technology_models/simple_generic_storage.md - - file: technology_models/methanol.md - - file: technology_models/ammonia.md - - file: technology_models/pysam_battery.md - - file: technology_models/wind_plant_ard.md - - file: technology_models/geologic_hydrogen.md - - file: technology_models/grid - - file: technology_models/hydrogen_storage.md - - file: technology_models/h2_fuel_cell.md - - file: technology_models/iron_ewin.md - - file: technology_models/iron_mine.md - -- caption: Resource Models - chapters: - - file: resource/resource_index - sections: - - file: resource/wind_index - - file: resource/wind_toolkit_v2_api - - file: resource/openmeteo_wind_archive - - file: resource/solar_index - - file: resource/goes_solar_v4_api - - file: resource/himawari_v3_api - - file: resource/meteosat_prime_meridian_v4_api - - file: resource/openmeteo_solar_archive - -- caption: Control - chapters: - - file: control/control_overview - - file: control/open-loop_controllers - - file: control/pyomo_controllers - - file: control/controller_demonstrations - -- caption: Finance Models - chapters: - - file: finance_models/financial_analyses - - file: user_guide/specifying_finance_parameters - - file: user_guide/cost_years - - file: finance_models/finance_index - sections: - - file: finance_models/ProFastBase - - file: finance_models/ProFastComp - - file: finance_models/ProFastNPV - - file: finance_models/numpy_financial_npv - -- caption: Developer Guide - chapters: - - file: CONTRIBUTING - - file: developer_guide/coding_guidelines - - file: developer_guide/why_make_h2integrate - - file: developer_guide/adding_a_new_technology - - file: developer_guide/features_not_currently_implemented - - file: developer_guide/class_structure - - file: developer_guide/describing_whats_in_classes - - file: developer_guide/testing - -- caption: Miscellaneous Resources - chapters: - - file: misc_resources/FAQ - - file: misc_resources/glossary - - file: misc_resources/defining_filepaths - - file: misc_resources/turbine_models_library_preprocessing - -- caption: API Reference - maxdepth: 3 - chapters: - - file: api + - caption: Getting Started + chapters: + - file: getting_started/install + - file: getting_started/expected_user_knowledge + - file: getting_started/environment_variables + - caption: User Guide + chapters: + - file: user_guide/model_overview + - file: user_guide/how_to_set_up_an_analysis + - file: user_guide/connecting_technologies + - file: user_guide/defining_sites_and_resources + - file: user_guide/design_optimization_in_h2i + - file: user_guide/design_of_experiments_in_h2i + - file: user_guide/postprocessing_results + - file: user_guide/recording_and_loading_data + - file: user_guide/how_to_interface_with_user_defined_model + - file: user_guide/how_to_run_several_cases_in_sequence + - file: user_guide/run_size_modes + - file: user_guide/plotting_geospatial_data_with_geopandas + - caption: Technology Models + chapters: + - file: technology_models/feedstocks + - file: technology_models/run_of_river + - file: technology_models/natural_gas + - file: technology_models/wombat_electrolyzer_om + - file: technology_models/pvwattsv8_solar_pv.md + - file: technology_models/windpower_wind_plant.md + - file: technology_models/atb_costs_pv.md + - file: technology_models/atb_costs_wind.md + - file: technology_models/co2.md + - file: technology_models/simple_generic_storage.md + - file: technology_models/methanol.md + - file: technology_models/ammonia.md + - file: technology_models/pysam_battery.md + - file: technology_models/wind_plant_ard.md + - file: technology_models/geologic_hydrogen.md + - file: technology_models/grid + - file: technology_models/hydrogen_storage.md + - file: technology_models/h2_fuel_cell.md + - file: technology_models/iron_ewin.md + - file: technology_models/iron_mine.md + - caption: Resource Models + chapters: + - file: resource/resource_index + sections: + - file: resource/wind_index + - file: resource/wind_toolkit_v2_api + - file: resource/openmeteo_wind_archive + - file: resource/solar_index + - file: resource/goes_solar_v4_api + - file: resource/himawari_v3_api + - file: resource/meteosat_prime_meridian_v4_api + - file: resource/openmeteo_solar_archive + - caption: Control + chapters: + - file: control/control_overview + - file: control/open-loop_controllers + - file: control/pyomo_controllers + - file: control/controller_demonstrations + - caption: Finance Models + chapters: + - file: finance_models/financial_analyses + - file: user_guide/specifying_finance_parameters + - file: user_guide/cost_years + - file: finance_models/finance_index + sections: + - file: finance_models/ProFastBase + - file: finance_models/ProFastComp + - file: finance_models/ProFastNPV + - file: finance_models/numpy_financial_npv + - caption: Developer Guide + chapters: + - file: CONTRIBUTING + - file: developer_guide/coding_guidelines + - file: developer_guide/why_make_h2integrate + - file: developer_guide/adding_a_new_technology + - file: developer_guide/features_not_currently_implemented + - file: developer_guide/class_structure + - file: developer_guide/describing_whats_in_classes + - file: developer_guide/testing + - caption: Miscellaneous Resources + chapters: + - file: misc_resources/FAQ + - file: misc_resources/glossary + - file: misc_resources/defining_filepaths + - file: misc_resources/turbine_models_library_preprocessing + - caption: API Reference + maxdepth: 3 + chapters: + - file: api diff --git a/environment.yml b/environment.yml index 199406b14..3899c89f9 100644 --- a/environment.yml +++ b/environment.yml @@ -1,12 +1,9 @@ name: h2integrate -channels: - - conda-forge - - defaults +channels: [conda-forge, defaults] dependencies: - python=3.11 - glpk # - coin-or-cbc=2.10.8 # NOTE: uncomment if on Unix # - wisdem # NOTE: uncomment if installing with Ard - pip - - pip: - - "." + - pip: [.] diff --git a/examples/01_onshore_steel_mn/01_onshore_steel_mn.yaml b/examples/01_onshore_steel_mn/01_onshore_steel_mn.yaml index 33588912d..1a90e1342 100644 --- a/examples/01_onshore_steel_mn/01_onshore_steel_mn.yaml +++ b/examples/01_onshore_steel_mn/01_onshore_steel_mn.yaml @@ -1,7 +1,6 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant is located in Minnesota and contains wind, solar, and battery storage technologies. The system is designed to produce hydrogen using an electrolyzer and also produce steel using a grid-connected plant." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant is located in Minnesota and contains wind, solar, and battery storage technologies. + The system is designed to produce hydrogen using an electrolyzer and also produce steel using a grid-connected plant. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/01_onshore_steel_mn/driver_config.yaml b/examples/01_onshore_steel_mn/driver_config.yaml index d3b06a03e..e6b823fec 100644 --- a/examples/01_onshore_steel_mn/driver_config.yaml +++ b/examples/01_onshore_steel_mn/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to match the first example in H2Integrate" - +name: driver_config +description: This analysis runs a hybrid plant to match the first example in H2Integrate general: folder_output: outputs diff --git a/examples/01_onshore_steel_mn/plant_config.yaml b/examples/01_onshore_steel_mn/plant_config.yaml index d3178bfa8..9e8d3ef0b 100644 --- a/examples/01_onshore_steel_mn/plant_config.yaml +++ b/examples/01_onshore_steel_mn/plant_config.yaml @@ -1,89 +1,82 @@ -name: "plant_config" -description: "This plant is located in MN, USA..." - +name: plant_config +description: This plant is located in MN, USA... sites: site: latitude: 47.5233 longitude: -92.5366 resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2013 - solar_resource: - resource_model: "GOESAggregatedSolarAPI" + resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2013 - resource_filename: "47.5_-93.0_psmv3_60_2013.csv" + resource_filename: 47.5_-93.0_psmv3_60_2013.csv # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind","combiner","electricity","cable"], - ["solar","combiner","electricity","cable"], - ["combiner","battery","electricity", "cable"], - ["battery", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "h2_storage", "hydrogen", "pipe"], - ["finance_subgroup_hydrogen", "steel", ["LCOH_delivered", "LCOH"]], - ["combiner", "steel", "electricity", "cable"], +technology_interconnections: + - [wind, combiner, electricity, cable] + - [solar, combiner, electricity, cable] + - [combiner, battery, electricity, cable] + - [battery, electrolyzer, electricity, cable] + - [electrolyzer, h2_storage, hydrogen, pipe] + - [finance_subgroup_hydrogen, steel, [LCOH_delivered, LCOH]] + - [combiner, steel, electricity, cable] # etc -] -tech_to_dispatch_connections: [ - ["combiner", "battery"], - ["battery", "battery"], -] -resource_to_tech_connections: [ +tech_to_dispatch_connections: + - [combiner, battery] + - [battery, battery] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], - ['site.solar_resource', 'solar', 'solar_resource_data'], -] - + - [site.wind_resource, wind, wind_resource_data] + - [site.solar_resource, solar, solar_resource_data] plant: plant_life: 30 simulation: timezone: -6 - finance_parameters: finance_groups: profast_model: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] finance_subgroups: electricity: - commodity: "electricity" - commodity_stream: "combiner" - finance_groups: ["profast_model"] - technologies: ["wind", "solar", "battery"] + commodity: electricity + commodity_stream: combiner + finance_groups: [profast_model] + technologies: [wind, solar, battery] hydrogen: - commodity: "hydrogen" - commodity_desc: "delivered" - finance_groups: ["profast_model"] - technologies: ["wind", "solar", "battery", "electrolyzer", "h2_storage"] + commodity: hydrogen + commodity_desc: delivered + finance_groups: [profast_model] + technologies: [wind, solar, battery, electrolyzer, h2_storage] steel: - commodity: "steel" - finance_groups: ["steel"] - technologies: ["steel"] + commodity: steel + finance_groups: [steel] + technologies: [steel] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/01_onshore_steel_mn/tech_config.yaml b/examples/01_onshore_steel_mn/tech_config.yaml index 3e10c6606..f7d16938c 100644 --- a/examples/01_onshore_steel_mn/tech_config.yaml +++ b/examples/01_onshore_steel_mn/tech_config.yaml @@ -1,90 +1,86 @@ -name: "technology_config" -description: "This hybrid plant produces steel" - +name: technology_config +description: This hybrid plant produces steel technologies: wind: performance_model: - model: "FlorisWindPlantPerformanceModel" + model: FlorisWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: - num_turbines: 216 #number of turbines in the farm - hub_height: 115.0 # turbine hub-height - operational_losses: 12.83 #percentage of non-wake losses + num_turbines: 216 # number of turbines in the farm + hub_height: 115.0 # turbine hub-height + operational_losses: 12.83 # percentage of non-wake losses floris_wake_config: !include "floris_v4_default_template.yaml" #floris wake model file floris_turbine_config: !include "floris_turbine_NREL_6MW_170.yaml" #turbine model file formatted for floris - resource_data_averaging_method: "average" #"weighted_average", "average" or "nearest" - operation_model: "cosine-loss" #turbine operation model + resource_data_averaging_method: average #"weighted_average", "average" or "nearest" + operation_model: cosine-loss # turbine operation model default_turbulence_intensity: 0.06 - enable_caching: True #whether to use cached results - cache_dir: "cache" #directory to save or load cached data + enable_caching: true # whether to use cached results + cache_dir: cache # directory to save or load cached data layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 7.0 turbine_D_spacing: 7.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1380.0 opex_per_kW_per_year: 29.0 cost_year: 2019 - solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBResComPVCostModel" + model: ATBResComPVCostModel model_inputs: shared_parameters: - pv_capacity_kWdc: 1500000 #1500 MWdc + pv_capacity_kWdc: 1500000 # 1500 MWdc performance_parameters: dc_ac_ratio: 1.3 - create_model_from: "default" - config_name: "PVWattsSingleOwner" - tilt_angle_func: "lat-func" + create_model_from: default + config_name: PVWattsSingleOwner + tilt_angle_func: lat-func pysam_options: SystemDesign: inv_eff: 96.0 - module_type: 0 #19% efficiency - losses: 14.08 #dc losses + module_type: 0 # 19% efficiency + losses: 14.08 # dc losses Lifetime: dc_degradation: [0] cost_parameters: capex_per_kWdc: 1323 opex_per_kWdc_per_year: 18 cost_year: 2019 - combiner: performance_model: - model: "GenericCombinerPerformanceModel" + model: GenericCombinerPerformanceModel dispatch_rule_set: - model: "PyomoDispatchGenericConverter" + model: PyomoDispatchGenericConverter model_inputs: performance_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW dispatch_rule_parameters: - commodity: "electricity" - commodity_rate_units: "kW" - + commodity: electricity + commodity_rate_units: kW battery: dispatch_rule_set: - model: "PyomoRuleStorageBaseclass" + model: PyomoRuleStorageBaseclass control_strategy: - model: "HeuristicLoadFollowingController" + model: HeuristicLoadFollowingController performance_model: - model: "PySAMBatteryPerformanceModel" + model: PySAMBatteryPerformanceModel cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" - max_charge_rate: 375740.4 #kW - max_capacity: 375745.2 #kWh + commodity: electricity + commodity_rate_units: kW + max_charge_rate: 375740.4 # kW + max_capacity: 375745.2 # kWh n_control_window: 24 n_horizon_window: 48 init_charge_percent: 0.9 @@ -92,73 +88,69 @@ technologies: min_charge_percent: 0.2 system_commodity_interface_limit: 1e12 performance_parameters: - system_model_source: "pysam" - chemistry: "LFPGraphite" + system_model_source: pysam + chemistry: LFPGraphite cost_parameters: cost_year: 2019 - energy_capex: 310 # $/kWh from 2024 ATB year 2025 - power_capex: 311 # $/kW from 2024 ATB year 2025 + energy_capex: 310 # $/kWh from 2024 ATB year 2025 + power_capex: 311 # $/kW from 2024 ATB year 2025 opex_fraction: 0.024999840573439444 control_parameters: - tech_name: "battery" - + tech_name: battery electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - size_mode: "normal" + size_mode: normal n_clusters: 18 cluster_rating_MW: 40 - eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000. #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + eol_eff_percent_loss: 13 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000. # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case - + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case h2_storage: performance_model: - model: "StorageAutoSizingModel" + model: StorageAutoSizingModel control_strategy: - model: "PassThroughOpenLoopController" + model: PassThroughOpenLoopController cost_model: - model: "LinedRockCavernStorageCostModel" + model: LinedRockCavernStorageCostModel model_inputs: shared_parameters: - commodity: "hydrogen" - commodity_rate_units: "kg/h" + commodity: hydrogen + commodity_rate_units: kg/h cost_parameters: # since the storage is being auto-sized by the performance model, # we set the sizing mode to 'auto' rather than defining the capacities # in the input file - sizing_mode: "auto" # set as "auto" so storage capacity doesnt have to be defined - - + sizing_mode: auto # set as "auto" so storage capacity doesnt have to be defined steel: performance_model: - model: "SteelPerformanceModel" + model: SteelPerformanceModel cost_model: - model: "SteelCostAndFinancialModel" + model: SteelCostAndFinancialModel finance_model: - model: "SteelCostAndFinancialModel" + model: SteelCostAndFinancialModel model_inputs: shared_parameters: capacity_factor: 0.9 plant_capacity_mtpy: 1000000. cost_parameters: operational_year: 2035 - o2_heat_integration: True + o2_heat_integration: true lcoh: 7.37 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis # Feedstock parameters (flattened) excess_oxygen: 395 lime_unitcost: 122.1 @@ -181,72 +173,72 @@ technologies: 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 + '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 # Financial parameters (flattened) 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 + '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 # Financial assumptions 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 + 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 diff --git a/examples/02_texas_ammonia/02_texas_ammonia.yaml b/examples/02_texas_ammonia/02_texas_ammonia.yaml index c0f89a154..34b2b009e 100644 --- a/examples/02_texas_ammonia/02_texas_ammonia.yaml +++ b/examples/02_texas_ammonia/02_texas_ammonia.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant contains a hybrid plant in Texas that's producing ammonia" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant contains a hybrid plant in Texas that's producing ammonia +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/02_texas_ammonia/driver_config.yaml b/examples/02_texas_ammonia/driver_config.yaml index 22fa1d24f..cbbfa1816 100644 --- a/examples/02_texas_ammonia/driver_config.yaml +++ b/examples/02_texas_ammonia/driver_config.yaml @@ -1,22 +1,20 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to match the first example in H2Integrate" - +name: driver_config +description: This analysis runs a hybrid plant to match the first example in H2Integrate general: folder_output: outputs - recorder: # required inputs - flag: True #record outputs - file: "cases.sql" #this file will be written to the folder `outputs` + flag: true # record outputs + file: cases.sql # this file will be written to the folder `outputs` # optional but recommended inputs - overwrite_recorder: True #If True, do not create a unique recorder file for subsequent runs. Defaults to False. - recorder_attachment: "model" #"driver" or "model", defaults to "model". Use "driver" if running a parallel simulation. - includes: ["*"] #include everything - excludes: ["*resource_data*"] #exclude resource data + overwrite_recorder: true # If True, do not create a unique recorder file for subsequent runs. Defaults to False. + recorder_attachment: model #"driver" or "model", defaults to "model". Use "driver" if running a parallel simulation. + includes: ['*'] #include everything + excludes: ['*resource_data*'] #exclude resource data # below are optional and defaulted to the OpenMDAO default - # record_inputs: True #defaults to True - # record_outputs: True #defaults to True - # record_residuals: True #defaults to True - # options_excludes: #this is only used if recorder_attachment is "model" + # record_inputs: True # defaults to True + # record_outputs: True # defaults to True + # record_residuals: True # defaults to True + # options_excludes: # this is only used if recorder_attachment is "model" diff --git a/examples/02_texas_ammonia/plant_config.yaml b/examples/02_texas_ammonia/plant_config.yaml index 5bc2a3745..bdc8d11bc 100644 --- a/examples/02_texas_ammonia/plant_config.yaml +++ b/examples/02_texas_ammonia/plant_config.yaml @@ -1,83 +1,83 @@ -name: "plant_config" -description: "This plant is located in MN, USA..." - +name: plant_config +description: This plant is located in MN, USA... sites: site: latitude: 32.31714 longitude: -100.18 resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2013 - solar_resource: - resource_model: "GOESAggregatedSolarAPI" + resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2013 # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind","combiner","electricity","cable"], - ["solar","combiner","electricity","cable"], - ["combiner","battery","electricity", "cable"], - ["battery", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "h2_storage", "hydrogen", "pipe"], - ["h2_storage", "ammonia", "hydrogen", "pipe"], - ["finance_subgroup_hydrogen", "ammonia", "LCOH"], +technology_interconnections: + - [wind, combiner, electricity, cable] + - [solar, combiner, electricity, cable] + - [combiner, battery, electricity, cable] + - [battery, electrolyzer, electricity, cable] + - [electrolyzer, h2_storage, hydrogen, pipe] + - [h2_storage, ammonia, hydrogen, pipe] + - [finance_subgroup_hydrogen, ammonia, LCOH] # etc -] -tech_to_dispatch_connections: [ - ["combiner", "battery"], - ["battery", "battery"], -] -resource_to_tech_connections: [ +tech_to_dispatch_connections: + - [combiner, battery] + - [battery, battery] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], - ['site.solar_resource', 'solar', 'solar_resource_data'], -] + - [site.wind_resource, wind, wind_resource_data] + - [site.solar_resource, solar, solar_resource_data] plant: plant_life: 30 - finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: - save_profast_config: True - save_profast_results: False - profast_output_description: "profast_output" + save_profast_config: true + save_profast_results: false + profast_output_description: profast_output params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for real analysis - discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.025 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx and # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf - total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for real analysis + discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.025 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx and # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 7 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 7 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: electricity: - commodity: "electricity" - commodity_stream: "combiner" - technologies: ["wind", "solar", "battery"] + commodity: electricity + commodity_stream: combiner + technologies: [wind, solar, battery] hydrogen: - commodity: "hydrogen" - technologies: ["wind", "solar", "battery", "electrolyzer", "h2_storage"] + commodity: hydrogen + technologies: [wind, solar, battery, electrolyzer, h2_storage] ammonia: - commodity: "ammonia" - technologies: ["wind", "solar", "battery", "electrolyzer", "h2_storage", "ammonia"] + commodity: ammonia + technologies: + - wind + - solar + - battery + - electrolyzer + - h2_storage + - ammonia diff --git a/examples/02_texas_ammonia/tech_config.yaml b/examples/02_texas_ammonia/tech_config.yaml index 724e20fd0..3086893fa 100644 --- a/examples/02_texas_ammonia/tech_config.yaml +++ b/examples/02_texas_ammonia/tech_config.yaml @@ -1,55 +1,53 @@ -name: "technology_config" -description: "This hybrid plant produces ammonia" - +name: technology_config +description: This hybrid plant produces ammonia technologies: wind: performance_model: - model: "FlorisWindPlantPerformanceModel" + model: FlorisWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: - num_turbines: 148 #number of turbines in the farm - hub_height: 115.0 # turbine hub-height - operational_losses: 10.49 #percentage of non-wake losses + num_turbines: 148 # number of turbines in the farm + hub_height: 115.0 # turbine hub-height + operational_losses: 10.49 # percentage of non-wake losses floris_wake_config: !include "floris_v4_default_template.yaml" #floris wake model file floris_turbine_config: !include "floris_turbine_NREL_6MW_170.yaml" #turbine model file formatted for floris - resource_data_averaging_method: "average" #"weighted_average", "average" or "nearest" - operation_model: "cosine-loss" #turbine operation model + resource_data_averaging_method: average #"weighted_average", "average" or "nearest" + operation_model: cosine-loss # turbine operation model default_turbulence_intensity: 0.06 - enable_caching: True #whether to use cached results - cache_dir: "cache" #directory to save or load cached data + enable_caching: true # whether to use cached results + cache_dir: cache # directory to save or load cached data layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 7.0 turbine_D_spacing: 7.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1380.0 opex_per_kW_per_year: 29.0 cost_year: 2019 - solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBResComPVCostModel" + model: ATBResComPVCostModel model_inputs: shared_parameters: - pv_capacity_kWdc: 400000 #400 MWdc + pv_capacity_kWdc: 400000 # 400 MWdc performance_parameters: dc_ac_ratio: 1.3 - create_model_from: "default" - config_name: "PVWattsSingleOwner" - tilt_angle_func: "lat-func" + create_model_from: default + config_name: PVWattsSingleOwner + tilt_angle_func: lat-func pysam_options: SystemDesign: inv_eff: 96.0 - module_type: 0 #19% efficiency - losses: 14.08 #dc losses + module_type: 0 # 19% efficiency + losses: 14.08 # dc losses Lifetime: dc_degradation: [0] cost_parameters: @@ -58,31 +56,31 @@ technologies: cost_year: 2019 combiner: performance_model: - model: "GenericCombinerPerformanceModel" + model: GenericCombinerPerformanceModel dispatch_rule_set: - model: "PyomoDispatchGenericConverter" + model: PyomoDispatchGenericConverter model_inputs: performance_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW dispatch_rule_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW battery: dispatch_rule_set: - model: "PyomoRuleStorageBaseclass" + model: PyomoRuleStorageBaseclass control_strategy: - model: "HeuristicLoadFollowingController" + model: HeuristicLoadFollowingController performance_model: - model: "PySAMBatteryPerformanceModel" + model: PySAMBatteryPerformanceModel cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" - max_charge_rate: 96.0 #kW - max_capacity: 96.0 #kWh + commodity: electricity + commodity_rate_units: kW + max_charge_rate: 96.0 # kW + max_capacity: 96.0 # kWh n_control_window: 24 n_horizon_window: 48 init_charge_percent: 0.9 @@ -90,60 +88,55 @@ technologies: min_charge_percent: 0.2 system_commodity_interface_limit: 1e12 performance_parameters: - system_model_source: "pysam" - chemistry: "LFPGraphite" + system_model_source: pysam + chemistry: LFPGraphite cost_parameters: cost_year: 2019 - energy_capex: 310 # $/kWh from 2024 ATB year 2025 - power_capex: 311 # $/kW from 2024 ATB year 2025 + energy_capex: 310 # $/kWh from 2024 ATB year 2025 + power_capex: 311 # $/kW from 2024 ATB year 2025 opex_fraction: 0.025 control_parameters: - tech_name: "battery" - + tech_name: battery electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) - + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - size_mode: "normal" + size_mode: normal n_clusters: 16 cluster_rating_MW: 40 - eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000 #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + eol_eff_percent_loss: 10 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000 # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case - + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case h2_storage: performance_model: - model: "StorageAutoSizingModel" + model: StorageAutoSizingModel control_strategy: - model: "PassThroughOpenLoopController" + model: PassThroughOpenLoopController cost_model: - model: "SaltCavernStorageCostModel" + model: SaltCavernStorageCostModel model_inputs: shared_parameters: - commodity: "hydrogen" - commodity_rate_units: "kg/h" + commodity: hydrogen + commodity_rate_units: kg/h cost_parameters: # since the storage is being auto-sized by the performance model, # we set the sizing mode to 'auto' rather than defining the capacities # in the input file - sizing_mode: "auto" # set as "auto" so storage capacity doesnt have to be defined - - + sizing_mode: auto # set as "auto" so storage capacity doesnt have to be defined ammonia: performance_model: - model: "SimpleAmmoniaPerformanceModel" + model: SimpleAmmoniaPerformanceModel cost_model: model: SimpleAmmoniaCostModel model_inputs: @@ -151,10 +144,10 @@ technologies: plant_capacity_factor: 0.9 plant_capacity_kgpy: 362560000. cost_parameters: - electricity_cost: 91 # 2022 USD - not actually used in cost/finance model + electricity_cost: 91 # 2022 USD - not actually used in cost/finance model # hydrogen_cost: 4.023963541079105 - cooling_water_cost: 0.00516275276753 # # 2022 USD/gal - iron_based_catalyst_cost: 25 #2022 USD/kg + cooling_water_cost: 0.00516275276753 # # 2022 USD/gal + iron_based_catalyst_cost: 25 # 2022 USD/kg oxygen_cost: 0 electricity_consumption: 0.0001207 hydrogen_consumption: 0.197284403 diff --git a/examples/03_methanol/co2_hydrogenation/03_co2h_methanol.yaml b/examples/03_methanol/co2_hydrogenation/03_co2h_methanol.yaml index 0420632e8..72750b6d7 100644 --- a/examples/03_methanol/co2_hydrogenation/03_co2h_methanol.yaml +++ b/examples/03_methanol/co2_hydrogenation/03_co2h_methanol.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant contains a simple SMR methanol plant" - -driver_config: "driver_config.yaml" -technology_config: "tech_config_co2h.yaml" -plant_config: "plant_config_co2h.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant contains a simple SMR methanol plant +driver_config: driver_config.yaml +technology_config: tech_config_co2h.yaml +plant_config: plant_config_co2h.yaml diff --git a/examples/03_methanol/co2_hydrogenation/driver_config.yaml b/examples/03_methanol/co2_hydrogenation/driver_config.yaml index 0533f88a4..2ec40606c 100644 --- a/examples/03_methanol/co2_hydrogenation/driver_config.yaml +++ b/examples/03_methanol/co2_hydrogenation/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to match the first example in H2I" - +name: driver_config +description: This analysis runs a hybrid plant to match the first example in H2I general: folder_output: outputs diff --git a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml index dadf49322..e92f9e7a2 100644 --- a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml @@ -1,72 +1,67 @@ -name: "plant_config" -description: "This plant is located west of the Wolf Hollow II NGCC power plant in Texas" - +name: plant_config +description: This plant is located west of the Wolf Hollow II NGCC power plant in Texas sites: site: latitude: 32.31714 longitude: -100.18 resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2013 solar_resource: - resource_model: "GOESAggregatedSolarAPI" + resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2013 # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "combiner", "electricity", "cable"], #source_tech, dest_tech, transport_item, transport_type = connection - ["solar", "combiner", "electricity", "cable"], - ["combiner", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "methanol", "hydrogen", "pipe"], - ["finance_subgroup_electricity", "methanol", "LCOE"], - ["finance_subgroup_hydrogen", "methanol", "LCOH"], -] - -resource_to_tech_connections: [ +technology_interconnections: + - [wind, combiner, electricity, cable] + # source_tech, dest_tech, transport_item, transport_type = connection + - [solar, combiner, electricity, cable] + - [combiner, electrolyzer, electricity, cable] + - [electrolyzer, methanol, hydrogen, pipe] + - [finance_subgroup_electricity, methanol, LCOE] + - [finance_subgroup_hydrogen, methanol, LCOH] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], - ["site.solar_resource", "solar", "solar_resource_data"] -] - + - [site.wind_resource, wind, wind_resource_data] + - [site.solar_resource, solar, solar_resource_data] plant: plant_life: 30 - finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB basline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB basline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] finance_subgroups: electricity: - commodity: "electricity" - commodity_stream: "combiner" - technologies: ["wind","solar"] + commodity: electricity + commodity_stream: combiner + technologies: [wind, solar] hydrogen: - commodity: "hydrogen" - technologies: ["wind","solar", "electrolyzer"] + commodity: hydrogen + technologies: [wind, solar, electrolyzer] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml index fd1e441f2..4597130c5 100644 --- a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml @@ -1,89 +1,88 @@ -name: "technology_config" -description: "This hybrid plant produces methanol" - +name: technology_config +description: This hybrid plant produces methanol technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: num_turbines: 29 turbine_rating_kw: 6000 rotor_diameter: 100. hub_height: 115. - create_model_from: "default" - config_name: "WindPowerSingleOwner" - run_recalculate_power_curve: True + create_model_from: default + config_name: WindPowerSingleOwner + run_recalculate_power_curve: true layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 7.0 turbine_D_spacing: 7.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1380.0 opex_per_kW_per_year: 29.0 cost_year: 2019 solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBResComPVCostModel" + model: ATBResComPVCostModel model_inputs: shared_parameters: - pv_capacity_kWdc: 350000 #350 MWdc + pv_capacity_kWdc: 350000 # 350 MWdc performance_parameters: dc_ac_ratio: 1.3 - create_model_from: "default" - config_name: "PVWattsSingleOwner" - tilt_angle_func: "lat-func" + create_model_from: default + config_name: PVWattsSingleOwner + tilt_angle_func: lat-func cost_parameters: capex_per_kWdc: 1323 opex_per_kWdc_per_year: 18 cost_year: 2019 combiner: performance_model: - model: "GenericCombinerPerformanceModel" + model: GenericCombinerPerformanceModel model_inputs: performance_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - size_mode: "normal" + size_mode: normal n_clusters: 4 cluster_rating_MW: 39 - eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000 #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + eol_eff_percent_loss: 10 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000 # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case methanol: performance_model: - model: "CO2HMethanolPlantPerformanceModel" + model: CO2HMethanolPlantPerformanceModel cost_model: - model: "CO2HMethanolPlantCostModel" + model: CO2HMethanolPlantCostModel finance_model: - model: "CO2HMethanolPlantFinanceModel" + model: CO2HMethanolPlantFinanceModel model_inputs: shared_parameters: plant_capacity_kgpy: 127893196.8 - plant_capacity_flow: "methanol" + plant_capacity_flow: methanol performance_parameters: capacity_factor: 0.9 co2e_emit_ratio: 0.020296 diff --git a/examples/03_methanol/co2_hydrogenation_doc/03_co2h_methanol.yaml b/examples/03_methanol/co2_hydrogenation_doc/03_co2h_methanol.yaml index 434e0f4c7..16099c06f 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/03_co2h_methanol.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/03_co2h_methanol.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant contains a methanol plant that uses CO2 from DOC and H2 from electrolysis" - -driver_config: "driver_config.yaml" -technology_config: "tech_config_co2h.yaml" -plant_config: "plant_config_co2h.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant contains a methanol plant that uses CO2 from DOC and H2 from electrolysis +driver_config: driver_config.yaml +technology_config: tech_config_co2h.yaml +plant_config: plant_config_co2h.yaml diff --git a/examples/03_methanol/co2_hydrogenation_doc/driver_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/driver_config.yaml index d96670aa2..60dfdee67 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/driver_config.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/driver_config.yaml @@ -1,5 +1,5 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to produce methanol from CO2 hydrogenation using H2 from electrolysis and CO2 from direct ocean capture." - +name: driver_config +description: This analysis runs a hybrid plant to produce methanol from CO2 hydrogenation using H2 from electrolysis and CO2 + from direct ocean capture. general: folder_output: outputs diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index 290163998..e34c3d925 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -1,61 +1,54 @@ -name: "plant_config" -description: "This plant is located of the coast of Galveston in Texas" - +name: plant_config +description: This plant is located of the coast of Galveston in Texas sites: site: latitude: 29.2 longitude: -94.6 resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2013 - # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "electricity_splitter", "electricity", "cable"], - ["electricity_splitter", "doc", "electricity", "cable"], - ["electricity_splitter", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "h2_storage", "hydrogen", "pipe"], - ["h2_storage", "methanol", "hydrogen", "pipe"], - ["doc", "co2_storage", "co2", "pipe"], - ["co2_storage","methanol","co2","pipe"], -] - -resource_to_tech_connections: [ +technology_interconnections: + - [wind, electricity_splitter, electricity, cable] + - [electricity_splitter, doc, electricity, cable] + - [electricity_splitter, electrolyzer, electricity, cable] + - [electrolyzer, h2_storage, hydrogen, pipe] + - [h2_storage, methanol, hydrogen, pipe] + - [doc, co2_storage, co2, pipe] + - [co2_storage, methanol, co2, pipe] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] - + - [site.wind_resource, wind, wind_resource_data] plant: plant_life: 30 - grid_connection: True # option, can be turned on or off - ppa_price: 0.027498168 # based off correlations of LBNL PPA data - hybrid_electricity_estimated_cf: 0.492 #should equal 1 if grid_connection = True - + grid_connection: true # option, can be turned on or off + ppa_price: 0.027498168 # based off correlations of LBNL PPA data + hybrid_electricity_estimated_cf: 0.492 # should equal 1 if grid_connection = True finance_parameters: finance_groups: - commodity: "methanol" - finance_model: "ProFastLCO" + commodity: methanol + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB basline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB basline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 y + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 y cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index b67865e93..5e7643570 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -1,21 +1,20 @@ -name: "technology_config" -description: "This hybrid plant produces methanol" - +name: technology_config +description: This hybrid plant produces methanol technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: num_turbines: 24 turbine_rating_kw: 15000 rotor_diameter: 240. hub_height: 115. - create_model_from: "default" - config_name: "WindPowerSingleOwner" - run_recalculate_power_curve: True + create_model_from: default + config_name: WindPowerSingleOwner + run_recalculate_power_curve: true pysam_options: Turbine: wind_resource_shear: 0.14 @@ -23,7 +22,7 @@ technologies: wind_farm_wake_model: 0.0 wind_resource_turbulence_coeff: 0.1 Losses: - elec_eff_loss: 1.79442 # less than 1.81, greater than 1.75 + elec_eff_loss: 1.79442 # less than 1.81, greater than 1.75 Resource: weibull_k_factor: 2.0 weibull_reference_height: 50.0 @@ -32,58 +31,58 @@ technologies: Uncertainty: total_uncert: 12.085 layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 7.0 turbine_D_spacing: 7.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1380.0 opex_per_kW_per_year: 29.0 cost_year: 2019 electricity_splitter: performance_model: - model: "GenericSplitterPerformanceModel" + model: GenericSplitterPerformanceModel model_inputs: performance_parameters: - commodity: "electricity" - commodity_rate_units: "kW" - split_mode: "fraction" + commodity: electricity + commodity_rate_units: kW + split_mode: fraction fraction_to_priority_tech: 0.243998425816608 electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - size_mode: "normal" + size_mode: normal n_clusters: 4 cluster_rating_MW: 40 - eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000 #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + eol_eff_percent_loss: 10 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000 # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case h2_storage: performance_model: - model: "SimpleGenericStorage" + model: SimpleGenericStorage cost_model: - model: "GenericStorageCostModel" + model: GenericStorageCostModel control_strategy: - model: "DemandOpenLoopStorageController" + model: DemandOpenLoopStorageController model_inputs: shared_parameters: - commodity: "hydrogen" - commodity_rate_units: "kg/h" + commodity: hydrogen + commodity_rate_units: kg/h max_charge_rate: 50000.0 # kg/time step max_capacity: 103701.401563086 # kg control_parameters: @@ -91,20 +90,20 @@ technologies: min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.25 # percent as decimal max_discharge_rate: 5000.0 # kg/time step - charge_equals_discharge: False - charge_efficiency: 1.0 # percent as decimal - discharge_efficiency: 1.0 # percent as decimal + charge_equals_discharge: false + charge_efficiency: 1.0 # percent as decimal + discharge_efficiency: 1.0 # percent as decimal demand_profile: 2108.73919484047 cost_parameters: cost_year: 2022 - capacity_capex: 383 # $/kg - based on https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/review22/st235_houchins_2022_p-pdf.pdf?Status=Master - charge_capex: .000001 # $/kg/h - opex_fraction: .000001 # percent of capex + capacity_capex: 383 # $/kg - based on https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/review22/st235_houchins_2022_p-pdf.pdf?Status=Master + charge_capex: .000001 # $/kg/h + opex_fraction: .000001 # percent of capex doc: performance_model: - model: "DOCPerformanceModel" + model: DOCPerformanceModel cost_model: - model: "DOCCostModel" + model: DOCCostModel model_inputs: shared_parameters: power_single_ed_w: 2858628.25565643 # W @@ -117,7 +116,7 @@ technologies: y_pur: 0.2 y_vac: 0.6 frac_ed_flow: 0.01 - use_storage_tanks: True + use_storage_tanks: true initial_tank_volume_m3: 0.0 # m^3 store_hours: 12.0 # hours sal: 33.0 # ppt @@ -125,21 +124,21 @@ technologies: dic_i: 0.0022 # mol/L pH_i: 8.1 # initial pH performance_parameters: - save_plots: True - save_outputs: True + save_plots: true + save_outputs: true cost_parameters: - infrastructure_type: "desal" + infrastructure_type: desal co2_storage: performance_model: - model: "SimpleGenericStorage" + model: SimpleGenericStorage cost_model: - model: "GenericStorageCostModel" + model: GenericStorageCostModel control_strategy: - model: "DemandOpenLoopStorageController" + model: DemandOpenLoopStorageController model_inputs: shared_parameters: - commodity: "co2" - commodity_rate_units: "kg/h" + commodity: co2 + commodity_rate_units: kg/h max_charge_rate: 50000.0 # kg/time step max_capacity: 961456.376748904 # kg control_parameters: @@ -147,23 +146,23 @@ technologies: min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.25 # percent as decimal max_discharge_rate: 50000.0 # kg/time step - charge_efficiency: 1.0 # percent as decimal - discharge_efficiency: 1.0 # percent as decimal + charge_efficiency: 1.0 # percent as decimal + discharge_efficiency: 1.0 # percent as decimal demand_profile: 15388.3891 cost_parameters: cost_year: 2022 - capacity_capex: 5 # $/kg - based on https://www.maritime.dot.gov/sites/marad.dot.gov/files/2024-11/LCE%20MARAD%20CCS%20TEA%20Final%20Report%20-%2031%20May%202024%20%283%29.pdf - charge_capex: .000001 # $/kg/h - opex_fraction: .000001 # percent of capex + capacity_capex: 5 # $/kg - based on https://www.maritime.dot.gov/sites/marad.dot.gov/files/2024-11/LCE%20MARAD%20CCS%20TEA%20Final%20Report%20-%2031%20May%202024%20%283%29.pdf + charge_capex: .000001 # $/kg/h + opex_fraction: .000001 # percent of capex methanol: performance_model: - model: "CO2HMethanolPlantPerformanceModel" + model: CO2HMethanolPlantPerformanceModel cost_model: - model: "CO2HMethanolPlantCostModel" + model: CO2HMethanolPlantCostModel model_inputs: shared_parameters: plant_capacity_kgpy: 94731053.0605257 - plant_capacity_flow: "methanol" + plant_capacity_flow: methanol performance_parameters: capacity_factor: 1 co2e_emit_ratio: 0.020296 diff --git a/examples/03_methanol/smr/03_smr_methanol.yaml b/examples/03_methanol/smr/03_smr_methanol.yaml index 39f5617ae..0b8684a57 100644 --- a/examples/03_methanol/smr/03_smr_methanol.yaml +++ b/examples/03_methanol/smr/03_smr_methanol.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant contains a simple SMR methanol plant" - -driver_config: "driver_config.yaml" -technology_config: "tech_config_smr.yaml" -plant_config: "plant_config_smr.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant contains a simple SMR methanol plant +driver_config: driver_config.yaml +technology_config: tech_config_smr.yaml +plant_config: plant_config_smr.yaml diff --git a/examples/03_methanol/smr/driver_config.yaml b/examples/03_methanol/smr/driver_config.yaml index 0533f88a4..2ec40606c 100644 --- a/examples/03_methanol/smr/driver_config.yaml +++ b/examples/03_methanol/smr/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to match the first example in H2I" - +name: driver_config +description: This analysis runs a hybrid plant to match the first example in H2I general: folder_output: outputs diff --git a/examples/03_methanol/smr/plant_config_smr.yaml b/examples/03_methanol/smr/plant_config_smr.yaml index e293540b9..971e7200d 100644 --- a/examples/03_methanol/smr/plant_config_smr.yaml +++ b/examples/03_methanol/smr/plant_config_smr.yaml @@ -1,46 +1,41 @@ -name: "plant_config" -description: "This plant is located west of the Wolf Hollow II NGCC power plant in Texas" - +name: plant_config +description: This plant is located west of the Wolf Hollow II NGCC power plant in Texas sites: site: latitude: 32.34 longitude: -98.27 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ -] - +technology_interconnections: [] plant: plant_life: 30 - ppa_price: 0.027498168 # based off correlations of LBNL PPA data - hybrid_electricity_estimated_cf: 0.492 #should equal 1 if grid_connection = True - + ppa_price: 0.027498168 # based off correlations of LBNL PPA data + hybrid_electricity_estimated_cf: 0.492 # should equal 1 if grid_connection = True finance_parameters: finance_groups: - finance_model: "ProFastLCO" - commodity: "methanol" + finance_model: ProFastLCO + commodity: methanol model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB basline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB basline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 y + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 y cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/03_methanol/smr/tech_config_smr.yaml b/examples/03_methanol/smr/tech_config_smr.yaml index ff5a3d8a8..beeb8d607 100644 --- a/examples/03_methanol/smr/tech_config_smr.yaml +++ b/examples/03_methanol/smr/tech_config_smr.yaml @@ -1,18 +1,17 @@ -name: "technology_config" -description: "This hybrid plant produces methanol" - +name: technology_config +description: This hybrid plant produces methanol technologies: methanol: performance_model: - model: "SMRMethanolPlantPerformanceModel" + model: SMRMethanolPlantPerformanceModel cost_model: - model: "SMRMethanolPlantCostModel" + model: SMRMethanolPlantCostModel finance_model: - model: "SMRMethanolPlantFinanceModel" + model: SMRMethanolPlantFinanceModel model_inputs: shared_parameters: plant_capacity_kgpy: 127893196.8 - plant_capacity_flow: "methanol" + plant_capacity_flow: methanol performance_parameters: capacity_factor: 0.9 co2e_emit_ratio: 1.13442 diff --git a/examples/04_geo_h2/04_geo_h2_natural.yaml b/examples/04_geo_h2/04_geo_h2_natural.yaml index 4c7cd7c22..d1acb54d6 100644 --- a/examples/04_geo_h2/04_geo_h2_natural.yaml +++ b/examples/04_geo_h2/04_geo_h2_natural.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant contains a simple geologic hydrogen plant" - -driver_config: "driver_config.yaml" -technology_config: "tech_config_natural.yaml" -plant_config: "plant_config_natural.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant contains a simple geologic hydrogen plant +driver_config: driver_config.yaml +technology_config: tech_config_natural.yaml +plant_config: plant_config_natural.yaml diff --git a/examples/04_geo_h2/04_geo_h2_stimulated.yaml b/examples/04_geo_h2/04_geo_h2_stimulated.yaml index 16258ffd2..3323efaaa 100644 --- a/examples/04_geo_h2/04_geo_h2_stimulated.yaml +++ b/examples/04_geo_h2/04_geo_h2_stimulated.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant contains a simple geologic hydrogen plant" - -driver_config: "driver_config.yaml" -technology_config: "tech_config_stimulated.yaml" -plant_config: "plant_config_stimulated.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant contains a simple geologic hydrogen plant +driver_config: driver_config.yaml +technology_config: tech_config_stimulated.yaml +plant_config: plant_config_stimulated.yaml diff --git a/examples/04_geo_h2/driver_config.yaml b/examples/04_geo_h2/driver_config.yaml index 0533f88a4..2ec40606c 100644 --- a/examples/04_geo_h2/driver_config.yaml +++ b/examples/04_geo_h2/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to match the first example in H2I" - +name: driver_config +description: This analysis runs a hybrid plant to match the first example in H2I general: folder_output: outputs diff --git a/examples/04_geo_h2/plant_config_natural.yaml b/examples/04_geo_h2/plant_config_natural.yaml index c85ff6932..bb828355e 100644 --- a/examples/04_geo_h2/plant_config_natural.yaml +++ b/examples/04_geo_h2/plant_config_natural.yaml @@ -1,47 +1,42 @@ -name: "plant_config" -description: "This plant is located west of the Wolf Hollow II NGCC power plant in Texas" - +name: plant_config +description: This plant is located west of the Wolf Hollow II NGCC power plant in Texas sites: site: latitude: 32.34 longitude: -98.27 - plant: plant_life: 10 - -technology_interconnections: [ - ["geoh2_well_subsurface", "geoh2_well_surface", "wellhead_h2_concentration_mol"], - ["geoh2_well_subsurface", "geoh2_well_surface", "wellhead_gas", "pipe"], -] - +technology_interconnections: + - [geoh2_well_subsurface, geoh2_well_surface, wellhead_h2_concentration_mol] + - [geoh2_well_subsurface, geoh2_well_surface, wellhead_gas, pipe] finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] finance_subgroups: h2: - commodity: "hydrogen" - commodity_stream: "geoh2_well_subsurface" - technologies: ["geoh2_well_subsurface", "geoh2_well_surface"] + commodity: hydrogen + commodity_stream: geoh2_well_subsurface + technologies: [geoh2_well_subsurface, geoh2_well_surface] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2024 diff --git a/examples/04_geo_h2/plant_config_stimulated.yaml b/examples/04_geo_h2/plant_config_stimulated.yaml index 14c84abbf..fa361a863 100644 --- a/examples/04_geo_h2/plant_config_stimulated.yaml +++ b/examples/04_geo_h2/plant_config_stimulated.yaml @@ -1,38 +1,35 @@ -name: "plant_config" -description: "This plant is located west of the Wolf Hollow II NGCC power plant in Texas" - +name: plant_config +description: This plant is located west of the Wolf Hollow II NGCC power plant in Texas sites: site: latitude: 32.34 longitude: -98.27 - plant: plant_life: 20 - finance_parameters: finance_groups: - commodity: "hydrogen" - finance_model: "ProFastLCO" + commodity: hydrogen + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2024 diff --git a/examples/04_geo_h2/tech_config_natural.yaml b/examples/04_geo_h2/tech_config_natural.yaml index ac2bf0934..49e8acb4e 100644 --- a/examples/04_geo_h2/tech_config_natural.yaml +++ b/examples/04_geo_h2/tech_config_natural.yaml @@ -1,6 +1,5 @@ name: technology_config description: This hybrid plant produces geologic hydrogen - technologies: geoh2_well_subsurface: performance_model: @@ -13,21 +12,21 @@ technologies: well_diameter: small well_geometry: vertical performance_parameters: - rock_type: 'peridotite' + rock_type: peridotite grain_size: 0.01 - use_prospectivity: False + use_prospectivity: false site_prospectivity: 0.7 wellhead_h2_concentration: 95 initial_wellhead_flow: 4000 - gas_flow_density: 0.11741 # for 95% h2 - ramp_up_time_months: 6 #months - percent_increase_during_rampup: 5 # percent + gas_flow_density: 0.11741 # for 95% h2 + ramp_up_time_months: 6 # months + percent_increase_during_rampup: 5 # percent gas_reservoir_size: 1000000 - use_arps_decline_curve: True + use_arps_decline_curve: true decline_fit_params: fit_name: Eagle_Ford cost_parameters: - use_cost_curve: True + use_cost_curve: true test_drill_cost: 500000 permit_fees: 905 acreage: 500 @@ -47,17 +46,17 @@ technologies: model_inputs: shared_parameters: refit_coeffs: false - curve_input_fn: "aspen_results.csv" + curve_input_fn: aspen_results.csv performance_parameters: - size_from_wellhead_flow: True + size_from_wellhead_flow: true max_flow_in: 0 - perf_coeff_fn: "aspen_perf_coeffs.csv" + perf_coeff_fn: aspen_perf_coeffs.csv cost_parameters: cost_year: 2022 - cost_from_fit: True + cost_from_fit: true custom_capex: 0 custom_opex: 0 - cost_coeff_fn: "aspen_cost_coeffs.csv" + cost_coeff_fn: aspen_cost_coeffs.csv op_labor_rate: 69.52 overhead_rate: 0.5 electricity_price: 0.0832 diff --git a/examples/04_geo_h2/tech_config_stimulated.yaml b/examples/04_geo_h2/tech_config_stimulated.yaml index 2de091dd2..e2d415d33 100644 --- a/examples/04_geo_h2/tech_config_stimulated.yaml +++ b/examples/04_geo_h2/tech_config_stimulated.yaml @@ -1,6 +1,5 @@ name: technology_config description: This hybrid plant produces geologic hydrogen - technologies: geoh2_well_subsurface: performance_model: @@ -24,7 +23,7 @@ technologies: water_temp: 90 cost_parameters: test_drill_cost: 500000 - use_cost_curve: True + use_cost_curve: true permit_fees: 905 acreage: 500 rights_cost: 3 diff --git a/examples/05_wind_h2_opt/driver_config.yaml b/examples/05_wind_h2_opt/driver_config.yaml index 23fce444c..5ed103f92 100644 --- a/examples/05_wind_h2_opt/driver_config.yaml +++ b/examples/05_wind_h2_opt/driver_config.yaml @@ -1,32 +1,27 @@ -name: "driver_config" -description: "Runs a wind plant and electrolyzer with simple optimization" - +name: driver_config +description: Runs a wind plant and electrolyzer with simple optimization general: folder_output: wind_h2_plant_run - driver: optimization: - flag: True + flag: true solver: COBYLA tol: 0.001 catol: 15000 max_iter: 100 rhobeg: 10 - debug_print: True - + debug_print: true design_variables: electrolyzer: n_clusters: - flag: True + flag: true lower: 2. upper: 40. units: unitless - objective: name: finance_subgroup_hydrogen.LCOH - recorder: - flag: True - file: "wind_h2_opt.sql" - includes: ["*"] - excludes: ["wind_resource.wind_resource_data"] + flag: true + file: wind_h2_opt.sql + includes: ['*'] + excludes: [wind_resource.wind_resource_data] diff --git a/examples/05_wind_h2_opt/driver_config_no_optimization.yaml b/examples/05_wind_h2_opt/driver_config_no_optimization.yaml index 806b0d4fd..b69a981d1 100644 --- a/examples/05_wind_h2_opt/driver_config_no_optimization.yaml +++ b/examples/05_wind_h2_opt/driver_config_no_optimization.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "Runs a wind plant and electrolyzer" - +name: driver_config +description: Runs a wind plant and electrolyzer general: folder_output: wind_h2_plant_run diff --git a/examples/05_wind_h2_opt/plant_config.yaml b/examples/05_wind_h2_opt/plant_config.yaml index dbb6d0026..4597a13a0 100644 --- a/examples/05_wind_h2_opt/plant_config.yaml +++ b/examples/05_wind_h2_opt/plant_config.yaml @@ -1,62 +1,56 @@ -name: "plant_config" -description: "This plant is located in CO, USA..." - +name: plant_config +description: This plant is located in CO, USA... sites: site: latitude: 35.2018863 longitude: -101.945027 - resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - - plant: plant_life: 30 # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "electrolyzer", "electricity", "cable"], +technology_interconnections: + - [wind, electrolyzer, electricity, cable] # etc -] -resource_to_tech_connections: [ +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] + - [site.wind_resource, wind, wind_resource_data] finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: electricity: - commodity: "electricity" - technologies: ["wind"] + commodity: electricity + technologies: [wind] hydrogen: - commodity: "hydrogen" - technologies: ["wind", "electrolyzer"] + commodity: hydrogen + technologies: [wind, electrolyzer] diff --git a/examples/05_wind_h2_opt/tech_config.yaml b/examples/05_wind_h2_opt/tech_config.yaml index 1aedb2ec9..a658a1a2d 100644 --- a/examples/05_wind_h2_opt/tech_config.yaml +++ b/examples/05_wind_h2_opt/tech_config.yaml @@ -1,52 +1,51 @@ -name: "technology_config" -description: "This plant has wind feeding into an electrolyzer with optimization" - +name: technology_config +description: This plant has wind feeding into an electrolyzer with optimization technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: num_turbines: 50 turbine_rating_kw: 8300 rotor_diameter: 196. hub_height: 130. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include "pysam_options_8.3MW.yaml" - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 10.0 turbine_D_spacing: 10.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 45 cost_year: 2019 electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 performance_parameters: - size_mode: "normal" + size_mode: normal cluster_rating_MW: 20 n_clusters: 5 - eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000. #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + eol_eff_percent_loss: 13 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000. # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case diff --git a/examples/05_wind_h2_opt/wind_plant_electrolyzer.yaml b/examples/05_wind_h2_opt/wind_plant_electrolyzer.yaml index ced201847..d05fe99f7 100644 --- a/examples/05_wind_h2_opt/wind_plant_electrolyzer.yaml +++ b/examples/05_wind_h2_opt/wind_plant_electrolyzer.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant..." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant... +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/05_wind_h2_opt/wind_plant_electrolyzer0.yaml b/examples/05_wind_h2_opt/wind_plant_electrolyzer0.yaml index 655d7ea89..c99166779 100644 --- a/examples/05_wind_h2_opt/wind_plant_electrolyzer0.yaml +++ b/examples/05_wind_h2_opt/wind_plant_electrolyzer0.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant..." - -driver_config: "driver_config_no_optimization.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant... +driver_config: driver_config_no_optimization.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/06_custom_tech/driver_config.yaml b/examples/06_custom_tech/driver_config.yaml index 20d181704..229122dbd 100644 --- a/examples/06_custom_tech/driver_config.yaml +++ b/examples/06_custom_tech/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "Runs a wind plant and a custom paper mill" - +name: driver_config +description: Runs a wind plant and a custom paper mill general: folder_output: wind_plant_run diff --git a/examples/06_custom_tech/plant_config.yaml b/examples/06_custom_tech/plant_config.yaml index b418602a9..8e559964c 100644 --- a/examples/06_custom_tech/plant_config.yaml +++ b/examples/06_custom_tech/plant_config.yaml @@ -1,29 +1,23 @@ -name: "plant_config" -description: "This plant models a wind plant with a custom paper mill model in CO." - +name: plant_config +description: This plant models a wind plant with a custom paper mill model in CO. sites: site: latitude: 35.2018863 longitude: -101.945027 - resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - plant: plant_life: 30 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "paper_mill", "electricity", "cable"], +technology_interconnections: + - [wind, paper_mill, electricity, cable] # etc -] -resource_to_tech_connections: [ +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] + - [site.wind_resource, wind, wind_resource_data] diff --git a/examples/06_custom_tech/tech_config.yaml b/examples/06_custom_tech/tech_config.yaml index d9d6d4d4d..d38642023 100644 --- a/examples/06_custom_tech/tech_config.yaml +++ b/examples/06_custom_tech/tech_config.yaml @@ -1,35 +1,33 @@ name: technology_config description: This plant has wind feeding into an electrolyzer with optimization - technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: num_turbines: 4 turbine_rating_kw: 8300 rotor_diameter: 196. hub_height: 130. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include "pysam_options_8.3MW.yaml" - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 10.0 turbine_D_spacing: 10.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 0 cost_year: 2019 - paper_mill: performance_model: model: paper_mill_performance @@ -52,4 +50,4 @@ technologies: opex_rate: 0.05 # 5% of CAPEX cost_year: 2024 finance_parameters: - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind diff --git a/examples/06_custom_tech/wind_plant_paper.yaml b/examples/06_custom_tech/wind_plant_paper.yaml index 46f5c8746..79b9d3889 100644 --- a/examples/06_custom_tech/wind_plant_paper.yaml +++ b/examples/06_custom_tech/wind_plant_paper.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This plant produces paper" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This plant produces paper +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/07_run_of_river_plant/07_run_of_river.yaml b/examples/07_run_of_river_plant/07_run_of_river.yaml index f0ee24342..468c22f9c 100644 --- a/examples/07_run_of_river_plant/07_run_of_river.yaml +++ b/examples/07_run_of_river_plant/07_run_of_river.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant contains a simple run-of-river hydropower plant" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant contains a simple run-of-river hydropower plant +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/07_run_of_river_plant/driver_config.yaml b/examples/07_run_of_river_plant/driver_config.yaml index 516402ee1..edca07da5 100644 --- a/examples/07_run_of_river_plant/driver_config.yaml +++ b/examples/07_run_of_river_plant/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a run-of-river hydropower plant" - +name: driver_config +description: This analysis runs a run-of-river hydropower plant general: folder_output: outputs diff --git a/examples/07_run_of_river_plant/plant_config.yaml b/examples/07_run_of_river_plant/plant_config.yaml index 8cbf4bef4..215f7a720 100644 --- a/examples/07_run_of_river_plant/plant_config.yaml +++ b/examples/07_run_of_river_plant/plant_config.yaml @@ -1,60 +1,52 @@ -name: "plant_config" -description: "This plant is located in Kansas" - +name: plant_config +description: This plant is located in Kansas sites: site: latitude: 32.34 longitude: -98.27 - resources: river_resource: - resource_model: "RiverResource" + resource_model: RiverResource resource_parameters: - filename: "river_data.csv" - + filename: river_data.csv # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # in this example the run-of-river hydro plant is behind-the-meter # and not connected to additional technologies. # hence the empty array. -technology_interconnections: [ -] - +technology_interconnections: [] # resource interconnections # array of arrays containing left-to-right resource interconnections; -resource_to_tech_connections: [ +resource_to_tech_connections: # connect the river resource to the run-of-river hydro technology - ['site.river_resource', 'river', 'discharge'], -] - + - [site.river_resource, river, discharge] plant: plant_life: 30 - finance_parameters: finance_groups: - commodity: "electricity" - finance_model: "ProFastLCO" + commodity: electricity + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - refurb: [0.] + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/07_run_of_river_plant/tech_config.yaml b/examples/07_run_of_river_plant/tech_config.yaml index 3a4aad0ea..90d783abd 100644 --- a/examples/07_run_of_river_plant/tech_config.yaml +++ b/examples/07_run_of_river_plant/tech_config.yaml @@ -1,21 +1,20 @@ -name: "technology_config" -description: "This plant produces electricity from river hydro" - +name: technology_config +description: This plant produces electricity from river hydro technologies: river: performance_model: - model: "RunOfRiverHydroPerformanceModel" + model: RunOfRiverHydroPerformanceModel cost_model: - model: "RunOfRiverHydroCostModel" + model: RunOfRiverHydroCostModel model_inputs: shared_parameters: plant_capacity_mw: 10.0 performance_parameters: - water_density: 998 # kg/m^3 - acceleration_gravity: 9.81 # m/s^2 + water_density: 998 # kg/m^3 + acceleration_gravity: 9.81 # m/s^2 turbine_efficiency: 0.9 - head: 10.0 # m + head: 10.0 # m cost_parameters: - capital_cost_usd_per_kw: 7648. # $/kW - operational_cost_usd_per_kw_year: 50. # $/kW-yr + capital_cost_usd_per_kw: 7648. # $/kW + operational_cost_usd_per_kw_year: 50. # $/kW-yr cost_year: 2024 diff --git a/examples/08_wind_electrolyzer/driver_config.yaml b/examples/08_wind_electrolyzer/driver_config.yaml index 2e68b25f3..de1021070 100644 --- a/examples/08_wind_electrolyzer/driver_config.yaml +++ b/examples/08_wind_electrolyzer/driver_config.yaml @@ -1,22 +1,20 @@ -name: "driver_config" -description: "This analysis runs a wind plant hooked up to an electrolyzer and simple tank" - +name: driver_config +description: This analysis runs a wind plant hooked up to an electrolyzer and simple tank general: folder_output: wind_electrolyzer - recorder: # required inputs - flag: True #record outputs - file: "cases.sql" #this file will be written to the folder `wind_electrolyzer` + flag: true # record outputs + file: cases.sql # this file will be written to the folder `wind_electrolyzer` # optional but recommended inputs - overwrite_recorder: True #If True, do not create a unique recorder file for subsequent runs. Defaults to False. - recorder_attachment: "model" #"driver" or "model", defaults to "model". Use "driver" if running a parallel simulation. - includes: ["*"] #include everything - excludes: ["*wind_resource*"] #exclude wind resource data + overwrite_recorder: true # If True, do not create a unique recorder file for subsequent runs. Defaults to False. + recorder_attachment: model #"driver" or "model", defaults to "model". Use "driver" if running a parallel simulation. + includes: ['*'] #include everything + excludes: ['*wind_resource*'] #exclude wind resource data # below are optional and defaulted to the OpenMDAO default - # record_inputs: True #defaults to True - # record_outputs: True #defaults to True - # record_residuals: True #defaults to True - # options_excludes: #this is only used if recorder_attachment is "model" + # record_inputs: True # defaults to True + # record_outputs: True # defaults to True + # record_residuals: True # defaults to True + # options_excludes: # this is only used if recorder_attachment is "model" diff --git a/examples/08_wind_electrolyzer/plant_config.yaml b/examples/08_wind_electrolyzer/plant_config.yaml index 4b45e54f1..9432cf47a 100644 --- a/examples/08_wind_electrolyzer/plant_config.yaml +++ b/examples/08_wind_electrolyzer/plant_config.yaml @@ -1,33 +1,26 @@ -name: "plant_config" -description: "This plant is located in CO, USA..." - +name: plant_config +description: This plant is located in CO, USA... sites: site: latitude: 35.2018863 longitude: -101.945027 - resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - plant: plant_life: 30 # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "electrolyzer", "electricity", "cable"], +technology_interconnections: + - [wind, electrolyzer, electricity, cable] # etc -] - -resource_to_tech_connections: [ +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] - + - [site.wind_resource, wind, wind_resource_data] finance_parameters: finance_groups: custom_model: @@ -37,45 +30,44 @@ finance_parameters: model_inputs: discount_rate: 0.09 profast_model: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] finance_subgroups: electricity_profast: - commodity: "electricity" + commodity: electricity # commodity_stream: "wind" - finance_groups: ["profast_model"] - technologies: ["wind"] + finance_groups: [profast_model] + technologies: [wind] electricity_custom: - commodity: "electricity" + commodity: electricity # commodity_stream: "wind" - finance_groups: ["custom_model"] - technologies: ["wind"] + finance_groups: [custom_model] + technologies: [wind] hydrogen: - commodity: "hydrogen" + commodity: hydrogen # commodity_stream: "electrolyzer" - commodity_desc: "produced" - finance_groups: ["custom_model","profast_model"] - technologies: ["wind", "electrolyzer"] - + commodity_desc: produced + finance_groups: [custom_model, profast_model] + technologies: [wind, electrolyzer] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/08_wind_electrolyzer/tech_config.yaml b/examples/08_wind_electrolyzer/tech_config.yaml index df892de4f..5cf21830b 100644 --- a/examples/08_wind_electrolyzer/tech_config.yaml +++ b/examples/08_wind_electrolyzer/tech_config.yaml @@ -1,53 +1,51 @@ -name: "technology_config" -description: "This plant has wind feeding into an electrolyzer without optimization" - +name: technology_config +description: This plant has wind feeding into an electrolyzer without optimization technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: num_turbines: 100 turbine_rating_kw: 8300 rotor_diameter: 196. hub_height: 130. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include "pysam_options_8.3MW.yaml" - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 10.0 turbine_D_spacing: 10.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 45 cost_year: 2019 electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 - + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 performance_parameters: - size_mode: "normal" - n_clusters: 13 #should be 12.5 to get 500 MW + size_mode: normal + n_clusters: 13 # should be 12.5 to get 500 MW cluster_rating_MW: 40 - eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000. #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + eol_eff_percent_loss: 13 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000. # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case diff --git a/examples/08_wind_electrolyzer/wind_plant_electrolyzer.yaml b/examples/08_wind_electrolyzer/wind_plant_electrolyzer.yaml index 6368c3e64..f77eaad78 100644 --- a/examples/08_wind_electrolyzer/wind_plant_electrolyzer.yaml +++ b/examples/08_wind_electrolyzer/wind_plant_electrolyzer.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate Config" - -system_summary: "This reference hybrid plant..." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate Config +system_summary: This reference hybrid plant... +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/09_co2/direct_ocean_capture/driver_config.yaml b/examples/09_co2/direct_ocean_capture/driver_config.yaml index 3bf3d9b39..d04f0d5a7 100644 --- a/examples/09_co2/direct_ocean_capture/driver_config.yaml +++ b/examples/09_co2/direct_ocean_capture/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a wind and wave plant connected to a direct ocean capture device" - +name: driver_config +description: This analysis runs a wind and wave plant connected to a direct ocean capture device general: folder_output: wind_wave_doc diff --git a/examples/09_co2/direct_ocean_capture/offshore_plant_doc.yaml b/examples/09_co2/direct_ocean_capture/offshore_plant_doc.yaml index 4c40b51aa..6a63c94eb 100644 --- a/examples/09_co2/direct_ocean_capture/offshore_plant_doc.yaml +++ b/examples/09_co2/direct_ocean_capture/offshore_plant_doc.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate Config" - -system_summary: "This offshore hybrid plant combines wind and wave energy to produce CO2 via direct ocean capture" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate Config +system_summary: This offshore hybrid plant combines wind and wave energy to produce CO2 via direct ocean capture +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/09_co2/direct_ocean_capture/plant_config.yaml b/examples/09_co2/direct_ocean_capture/plant_config.yaml index 83214dabe..855a89e96 100644 --- a/examples/09_co2/direct_ocean_capture/plant_config.yaml +++ b/examples/09_co2/direct_ocean_capture/plant_config.yaml @@ -1,70 +1,63 @@ -name: "plant_config" -description: "This plant is located in OR, USA" - +name: plant_config +description: This plant is located in OR, USA sites: site: latitude: 43.807 longitude: -124.81 resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2010 - - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["hopp", "combiner", "electricity", "cable"], - ["wind", "combiner", "electricity", "cable"], - ["combiner", "battery", "electricity", "cable"], - ["battery", "doc", "electricity", "cable"], +technology_interconnections: + - [hopp, combiner, electricity, cable] + - [wind, combiner, electricity, cable] + - [combiner, battery, electricity, cable] + - [battery, doc, electricity, cable] # etc -] -tech_to_dispatch_connections: [ - ["combiner", "battery"], - ["battery", "battery"], -] -resource_to_tech_connections: [ +tech_to_dispatch_connections: + - [combiner, battery] + - [battery, battery] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] + - [site.wind_resource, wind, wind_resource_data] plant: plant_life: 30 - finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - refurb: [0.] + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: electricity: - commodity: "electricity" - commodity_stream: "combiner" - technologies: ["hopp", "wind", "battery"] + commodity: electricity + commodity_stream: combiner + technologies: [hopp, wind, battery] co2: - commodity: "co2" - technologies: ["hopp", "wind", "battery", "doc"] + commodity: co2 + technologies: [hopp, wind, battery, doc] diff --git a/examples/09_co2/direct_ocean_capture/tech_config.yaml b/examples/09_co2/direct_ocean_capture/tech_config.yaml index ce5da2ba7..8f71c5af5 100644 --- a/examples/09_co2/direct_ocean_capture/tech_config.yaml +++ b/examples/09_co2/direct_ocean_capture/tech_config.yaml @@ -1,81 +1,79 @@ -name: "technology_config" -description: "This plant has offshore wind and wave energy connected to a direct ocean capture device" - +name: technology_config +description: This plant has offshore wind and wave energy connected to a direct ocean capture device technologies: hopp: performance_model: - model: "HOPPComponent" + model: HOPPComponent cost_model: - model: "HOPPComponent" + model: HOPPComponent dispatch_rule_set: - model: "PyomoDispatchGenericConverter" + model: PyomoDispatchGenericConverter model_inputs: shared_parameters: cost_year: 2022 performance_parameters: - cache_dir: "cache" - enable_caching: True + cache_dir: cache + enable_caching: true hopp_config: !include tech_inputs/hopp_config.yaml dispatch_rule_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW wind: performance_model: - model: "FlorisWindPlantPerformanceModel" + model: FlorisWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: - num_turbines: 22 #number of turbines in the farm - hub_height: 150.0 # turbine hub-height - operational_losses: 12.83 #percentage of non-wake losses + num_turbines: 22 # number of turbines in the farm + hub_height: 150.0 # turbine hub-height + operational_losses: 12.83 # percentage of non-wake losses floris_wake_config: !include "floris_v4_default_template.yaml" #floris wake model file floris_turbine_config: !include "floris_turbine_osw_15MW.yaml" #turbine model file formatted for floris - resource_data_averaging_method: "average" #"weighted_average", "average" or "nearest" - operation_model: "cosine-loss" #turbine operation model + resource_data_averaging_method: average #"weighted_average", "average" or "nearest" + operation_model: cosine-loss # turbine operation model default_turbulence_intensity: 0.06 - enable_caching: True #whether to use cached results - cache_dir: "cache" #directory to save or load cached data + enable_caching: true # whether to use cached results + cache_dir: cache # directory to save or load cached data layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 7.0 turbine_D_spacing: 7.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 9390 opex_per_kW_per_year: 72 cost_year: 2022 - combiner: performance_model: - model: "GenericCombinerPerformanceModel" + model: GenericCombinerPerformanceModel dispatch_rule_set: - model: "PyomoDispatchGenericConverter" + model: PyomoDispatchGenericConverter model_inputs: performance_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW dispatch_rule_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW battery: dispatch_rule_set: - model: "PyomoRuleStorageBaseclass" + model: PyomoRuleStorageBaseclass control_strategy: - model: "HeuristicLoadFollowingController" + model: HeuristicLoadFollowingController performance_model: - model: "PySAMBatteryPerformanceModel" + model: PySAMBatteryPerformanceModel cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" - max_charge_rate: 50000 #kW - max_capacity: 200000 #kWh + commodity: electricity + commodity_rate_units: kW + max_charge_rate: 50000 # kW + max_capacity: 200000 # kWh n_control_window: 24 n_horizon_window: 48 init_charge_percent: 0.9 @@ -83,43 +81,41 @@ technologies: min_charge_percent: 0.2 system_commodity_interface_limit: 1e12 performance_parameters: - system_model_source: "pysam" - chemistry: "LFPGraphite" + system_model_source: pysam + chemistry: LFPGraphite cost_parameters: cost_year: 2022 - energy_capex: 246 # $/kWh from 2024 ATB year 2025 - power_capex: 317 # $/kW from 2024 ATB year 2025 + energy_capex: 246 # $/kWh from 2024 ATB year 2025 + power_capex: 317 # $/kW from 2024 ATB year 2025 opex_fraction: 0.02536510376633359 control_parameters: - tech_name: "battery" - + tech_name: battery doc: performance_model: - model: "DOCPerformanceModel" + model: DOCPerformanceModel cost_model: - model: "DOCCostModel" + model: DOCCostModel model_inputs: shared_parameters: - power_single_ed_w: 24000000. # W - flow_rate_single_ed_m3s: 0.6 # m^3/s + power_single_ed_w: 24000000. # W + flow_rate_single_ed_m3s: 0.6 # m^3/s number_ed_min: 1 number_ed_max: 10 - E_HCl: 0.05 # kWh/mol - E_NaOH: 0.05 # kWh/mol + E_HCl: 0.05 # kWh/mol + E_NaOH: 0.05 # kWh/mol y_ext: 0.9 y_pur: 0.2 y_vac: 0.6 frac_ed_flow: 0.01 - use_storage_tanks: True - initial_tank_volume_m3: 0. #m^3 - store_hours: 12. # hours - sal: 33. # ppt - temp_C: 12. # degrees Celsius - dic_i: 0.0022 # mol/L - pH_i: 8.1 # initial pH - + use_storage_tanks: true + initial_tank_volume_m3: 0. # m^3 + store_hours: 12. # hours + sal: 33. # ppt + temp_C: 12. # degrees Celsius + dic_i: 0.0022 # mol/L + pH_i: 8.1 # initial pH cost_parameters: - infrastructure_type: "new" + infrastructure_type: new performance_parameters: - save_outputs: True - save_plots: True + save_outputs: true + save_plots: true diff --git a/examples/09_co2/direct_ocean_capture/tech_inputs/default_fin_config.yaml b/examples/09_co2/direct_ocean_capture/tech_inputs/default_fin_config.yaml index 7e7e8202b..2851160eb 100644 --- a/examples/09_co2/direct_ocean_capture/tech_inputs/default_fin_config.yaml +++ b/examples/09_co2/direct_ocean_capture/tech_inputs/default_fin_config.yaml @@ -1,27 +1,21 @@ battery_system: - batt_replacement_schedule_percent: - - 0 - batt_bank_replacement: - - 0 + 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: - - 0 - om_production: - - 0 - om_capacity: - - 0 + om_fixed: [0] + om_production: [0] + om_capacity: [0] om_batt_fixed_cost: 0 - om_batt_variable_cost: - - 0 + om_batt_variable_cost: [0] om_batt_capacity_cost: 0 om_batt_replacement_cost: 0 om_replacement_cost_escal: 0 revenue': - ppa_price_input: [25] # cents/kWh - ppa_escalation: 2.5 # % + ppa_price_input: [25] # cents/kWh + ppa_escalation: 2.5 # % system_use_lifetime_output: 0 financial_parameters: inflation_rate: 2.5 @@ -38,10 +32,8 @@ financial_parameters: sales_tax_rate_state: 4.5 admin_expense_percent_of_sales: 1.0 capital_gains_tax_rate: 15.0 - debt_type: "Revolving debt" - depreciation_method: "MACRS" + debt_type: Revolving debt + depreciation_method: MACRS depreciation_period: 5 -cp_capacity_credit_percent: - - 0 -degradation: - - 0 +cp_capacity_credit_percent: [0] +degradation: [0] diff --git a/examples/09_co2/direct_ocean_capture/tech_inputs/hopp_config.yaml b/examples/09_co2/direct_ocean_capture/tech_inputs/hopp_config.yaml index f169ce804..a97bd82bc 100644 --- a/examples/09_co2/direct_ocean_capture/tech_inputs/hopp_config.yaml +++ b/examples/09_co2/direct_ocean_capture/tech_inputs/hopp_config.yaml @@ -1,5 +1,4 @@ -name: "Wind+wave+battery powering an electrochemical mCC system" - +name: Wind+wave+battery powering an electrochemical mCC system # SiteInfo site: data: @@ -17,40 +16,73 @@ site: - [1216.98, 272.36] - [1217.76, 151.62] - [708.14, 0.0] - urdb_label: "5ca4d1175457a39b23b3d45e" + urdb_label: 5ca4d1175457a39b23b3d45e hub_height: 150.0 solar: false wind: false wave: true - wave_resource_file: "./weather_data/wave_lat43.81_lon-124.82__2010.csv" - grid_resource_file: "" - + wave_resource_file: ./weather_data/wave_lat43.81_lon-124.82__2010.csv + grid_resource_file: '' # Technologies technologies: wave: - device_rating_kw: 286 #enough wave capacity for S1/S2 + device_rating_kw: 286 # enough wave capacity for S1/S2 wave_power_matrix: - - [0.000000, 0.500000, 1.500000, 2.500000, 3.500000, 4.500000, 5.500000, 6.500000, 7.500000, 8.500000, 9.500000, 10.500000, 11.500000, 12.500000, 13.500000, 14.500000, 15.500000, 16.500000, 17.500000, 18.500000, 19.500000, 20.500000] - - [0.250000, 0.000000, 0.000000, 0.000000, 0.000000, 0.400000, 0.600000, 0.800000, 1.000000, 1.100000, 1.100000, 1.000000, 0.800000, 0.700000, 0.600000, 0.500000, 0.400000, 0.300000, 0.300000, 0.200000, 0.200000, 0.000000] - - [0.750000, 0.000000, 0.000000, 0.000000, 0.000000, 3.200000, 5.300000, 7.400000, 9.100000, 9.800000, 9.500000, 8.600000, 7.400000, 6.200000, 5.100000, 4.100000, 3.400000, 2.800000, 2.300000, 1.900000, 1.600000, 0.000000] - - [1.250000, 0.000000, 0.000000, 0.000000, 0.000000, 9.000000, 14.800000, 20.500000, 25.000000, 26.800000, 25.900000, 23.300000, 20.000000, 16.800000, 13.800000, 11.300000, 9.200000, 7.600000, 6.300000, 5.200000, 4.300000, 0.000000] - - [1.750000, 0.000000, 0.000000, 0.000000, 0.000000, 17.600000, 28.900000, 39.900000, 48.300000, 51.600000, 49.700000, 44.700000, 38.400000, 32.200000, 26.500000, 21.700000, 17.800000, 14.600000, 12.100000, 10.000000, 8.400000, 0.000000] - - [2.250000, 0.000000, 0.000000, 0.000000, 0.000000, 29.000000, 47.500000, 65.400000, 78.800000, 83.800000, 80.600000, 72.400000, 62.300000, 52.200000, 43.000000, 35.300000, 28.900000, 23.800000, 19.700000, 16.300000, 13.700000, 0.000000] - - [2.750000, 0.000000, 0.000000, 0.000000, 0.000000, 43.200000, 70.700000, 97.000000, 116.300000, 123.100000, 118.100000, 106.100000, 91.300000, 76.500000, 63.200000, 51.900000, 42.500000, 35.000000, 28.900000, 24.100000, 20.100000, 0.000000] - - [3.250000, 0.000000, 0.000000, 0.000000, 0.000000, 60.200000, 98.300000, 134.500000, 160.500000, 169.300000, 162.100000, 145.500000, 125.200000, 105.000000, 86.800000, 71.300000, 58.500000, 48.200000, 39.900000, 33.200000, 27.800000, 0.000000] - - [3.750000, 0.000000, 0.000000, 0.000000, 0.000000, 79.900000, 130.400000, 177.800000, 211.200000, 222.000000, 212.200000, 190.400000, 164.000000, 137.600000, 113.800000, 93.600000, 76.900000, 63.300000, 52.500000, 43.700000, 36.600000, 0.000000] - - [4.250000, 0.000000, 0.000000, 0.000000, 0.000000, 102.400000, 166.700000, 226.700000, 268.300000, 281.100000, 268.200000, 240.500000, 207.200000, 174.100000, 144.100000, 118.500000, 97.400000, 80.300000, 66.600000, 55.500000, 46.500000, 0.000000] - - [4.750000, 0.000000, 0.000000, 0.000000, 0.000000, 127.600000, 207.400000, 281.200000, 286.000000, 286.000000, 286.000000, 286.000000, 255.000000, 214.300000, 177.500000, 146.100000, 120.200000, 99.200000, 82.200000, 68.600000, 57.600000, 0.000000] - - [5.250000, 0.000000, 0.000000, 0.000000, 0.000000, 155.400000, 252.400000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 258.200000, 214.000000, 176.300000, 145.100000, 119.800000, 99.400000, 83.000000, 69.700000, 0.000000] - - [5.750000, 0.000000, 0.000000, 0.000000, 0.000000, 186.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 253.600000, 209.000000, 172.200000, 142.200000, 118.100000, 98.600000, 82.800000, 0.000000] - - [6.250000, 0.000000, 0.000000, 0.000000, 0.000000, 219.200000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 244.200000, 201.200000, 166.400000, 138.200000, 115.500000, 97.100000, 0.000000] - - [6.750000, 0.000000, 0.000000, 0.000000, 0.000000, 255.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 281.900000, 232.400000, 192.200000, 159.700000, 133.500000, 112.300000, 0.000000] - - [7.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 265.600000, 219.800000, 182.800000, 152.900000, 128.700000, 0.000000] - - [7.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 249.000000, 207.200000, 173.400000, 146.000000, 0.000000] - - [8.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 279.900000, 233.000000, 195.100000, 164.400000, 0.000000] - - [8.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 260.200000, 218.000000, 183.800000, 0.000000] - - [9.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 242.100000, 204.100000, 0.000000] - - [9.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 267.400000, 225.600000, 0.000000] + - [0.000000, 0.500000, 1.500000, 2.500000, 3.500000, 4.500000, 5.500000, 6.500000, 7.500000, 8.500000, 9.500000, 10.500000, + 11.500000, 12.500000, 13.500000, 14.500000, 15.500000, 16.500000, 17.500000, 18.500000, 19.500000, 20.500000] + - [0.250000, 0.000000, 0.000000, 0.000000, 0.000000, 0.400000, 0.600000, 0.800000, 1.000000, 1.100000, 1.100000, 1.000000, + 0.800000, 0.700000, 0.600000, 0.500000, 0.400000, 0.300000, 0.300000, 0.200000, 0.200000, 0.000000] + - [0.750000, 0.000000, 0.000000, 0.000000, 0.000000, 3.200000, 5.300000, 7.400000, 9.100000, 9.800000, 9.500000, 8.600000, + 7.400000, 6.200000, 5.100000, 4.100000, 3.400000, 2.800000, 2.300000, 1.900000, 1.600000, 0.000000] + - [1.250000, 0.000000, 0.000000, 0.000000, 0.000000, 9.000000, 14.800000, 20.500000, 25.000000, 26.800000, 25.900000, + 23.300000, 20.000000, 16.800000, 13.800000, 11.300000, 9.200000, 7.600000, 6.300000, 5.200000, 4.300000, 0.000000] + - [1.750000, 0.000000, 0.000000, 0.000000, 0.000000, 17.600000, 28.900000, 39.900000, 48.300000, 51.600000, 49.700000, + 44.700000, 38.400000, 32.200000, 26.500000, 21.700000, 17.800000, 14.600000, 12.100000, 10.000000, 8.400000, 0.000000] + - [2.250000, 0.000000, 0.000000, 0.000000, 0.000000, 29.000000, 47.500000, 65.400000, 78.800000, 83.800000, 80.600000, + 72.400000, 62.300000, 52.200000, 43.000000, 35.300000, 28.900000, 23.800000, 19.700000, 16.300000, 13.700000, 0.000000] + - [2.750000, 0.000000, 0.000000, 0.000000, 0.000000, 43.200000, 70.700000, 97.000000, 116.300000, 123.100000, 118.100000, + 106.100000, 91.300000, 76.500000, 63.200000, 51.900000, 42.500000, 35.000000, 28.900000, 24.100000, 20.100000, 0.000000] + - [3.250000, 0.000000, 0.000000, 0.000000, 0.000000, 60.200000, 98.300000, 134.500000, 160.500000, 169.300000, 162.100000, + 145.500000, 125.200000, 105.000000, 86.800000, 71.300000, 58.500000, 48.200000, 39.900000, 33.200000, 27.800000, 0.000000] + - [3.750000, 0.000000, 0.000000, 0.000000, 0.000000, 79.900000, 130.400000, 177.800000, 211.200000, 222.000000, 212.200000, + 190.400000, 164.000000, 137.600000, 113.800000, 93.600000, 76.900000, 63.300000, 52.500000, 43.700000, 36.600000, + 0.000000] + - [4.250000, 0.000000, 0.000000, 0.000000, 0.000000, 102.400000, 166.700000, 226.700000, 268.300000, 281.100000, 268.200000, + 240.500000, 207.200000, 174.100000, 144.100000, 118.500000, 97.400000, 80.300000, 66.600000, 55.500000, 46.500000, + 0.000000] + - [4.750000, 0.000000, 0.000000, 0.000000, 0.000000, 127.600000, 207.400000, 281.200000, 286.000000, 286.000000, 286.000000, + 286.000000, 255.000000, 214.300000, 177.500000, 146.100000, 120.200000, 99.200000, 82.200000, 68.600000, 57.600000, + 0.000000] + - [5.250000, 0.000000, 0.000000, 0.000000, 0.000000, 155.400000, 252.400000, 286.000000, 286.000000, 286.000000, 286.000000, + 286.000000, 286.000000, 258.200000, 214.000000, 176.300000, 145.100000, 119.800000, 99.400000, 83.000000, 69.700000, + 0.000000] + - [5.750000, 0.000000, 0.000000, 0.000000, 0.000000, 186.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, + 286.000000, 286.000000, 286.000000, 253.600000, 209.000000, 172.200000, 142.200000, 118.100000, 98.600000, 82.800000, + 0.000000] + - [6.250000, 0.000000, 0.000000, 0.000000, 0.000000, 219.200000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, + 286.000000, 286.000000, 286.000000, 286.000000, 244.200000, 201.200000, 166.400000, 138.200000, 115.500000, 97.100000, + 0.000000] + - [6.750000, 0.000000, 0.000000, 0.000000, 0.000000, 255.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, + 286.000000, 286.000000, 286.000000, 286.000000, 281.900000, 232.400000, 192.200000, 159.700000, 133.500000, 112.300000, + 0.000000] + - [7.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, + 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 265.600000, 219.800000, 182.800000, 152.900000, 128.700000, + 0.000000] + - [7.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, + 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 249.000000, 207.200000, 173.400000, 146.000000, + 0.000000] + - [8.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, + 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 279.900000, 233.000000, 195.100000, 164.400000, + 0.000000] + - [8.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, + 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 260.200000, 218.000000, 183.800000, + 0.000000] + - [9.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, + 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 242.100000, 204.100000, + 0.000000] + - [9.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, + 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 267.400000, 225.600000, + 0.000000] num_devices: 108 fin_model: !include default_fin_config.yaml cost_inputs: @@ -64,6 +96,5 @@ technologies: grid: interconnect_kw: 362129.538 fin_model: !include default_fin_config.yaml - config: - cost_info: + cost_info: null diff --git a/examples/09_co2/ocean_alkalinity_enhancement/driver_config.yaml b/examples/09_co2/ocean_alkalinity_enhancement/driver_config.yaml index 843972de4..d4a803402 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement/driver_config.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a wind plant connected to a ocean alkalinity enhancement device" - +name: driver_config +description: This analysis runs a wind plant connected to a ocean alkalinity enhancement device general: folder_output: wind_oae diff --git a/examples/09_co2/ocean_alkalinity_enhancement/offshore_plant_oae.yaml b/examples/09_co2/ocean_alkalinity_enhancement/offshore_plant_oae.yaml index da3c557e3..02a9c30dc 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement/offshore_plant_oae.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement/offshore_plant_oae.yaml @@ -1,7 +1,6 @@ -name: "H2Integrate Config" - -system_summary: "This offshore hybrid plant combines wind and battery to run an electrochemical mCC system for ocean alkalinity enhancement (OAE). The plant uses a battery to store unused energy." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate Config +system_summary: This offshore hybrid plant combines wind and battery to run an electrochemical mCC system for ocean alkalinity + enhancement (OAE). The plant uses a battery to store unused energy. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml b/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml index 9a669ed19..af68f755d 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml @@ -1,69 +1,60 @@ -name: "plant_config" -description: "This plant is located in OR, USA" - +name: plant_config +description: This plant is located in OR, USA sites: site: latitude: 43.807 longitude: -124.81 - resources: - wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" - resource_parameters: - resource_year: 2010 - - + wind_resource: + resource_model: WTKNRELDeveloperAPIWindResource + resource_parameters: + resource_year: 2010 # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind","battery","electricity", "cable"], - ["battery", "oae", "electricity", "cable"], +technology_interconnections: + - [wind, battery, electricity, cable] + - [battery, oae, electricity, cable] # etc -] -tech_to_dispatch_connections: [ - ["wind", "battery"], - ["battery", "battery"], -] -resource_to_tech_connections: [ +tech_to_dispatch_connections: + - [wind, battery] + - [battery, battery] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] - + - [site.wind_resource, wind, wind_resource_data] plant: plant_life: 30 - finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - refurb: [0.] + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # 2.5% inflation rate for cost adjustments + cost_year_adjustment_inflation: 0.025 # 2.5% inflation rate for cost adjustments target_dollar_year: 2022 finance_subgroups: electricity: - commodity: "electricity" - technologies: ["wind", "battery"] + commodity: electricity + technologies: [wind, battery] co2: - commodity: "co2" - technologies: ["wind", "battery", "oae"] + commodity: co2 + technologies: [wind, battery, oae] diff --git a/examples/09_co2/ocean_alkalinity_enhancement/tech_config.yaml b/examples/09_co2/ocean_alkalinity_enhancement/tech_config.yaml index c217aa025..d3514612d 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement/tech_config.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement/tech_config.yaml @@ -1,58 +1,55 @@ -name: "technology_config" -description: "This plant has offshore wind and battery connected to a ocean alkalinity enhancement device" - +name: technology_config +description: This plant has offshore wind and battery connected to a ocean alkalinity enhancement device technologies: wind: performance_model: - model: "FlorisWindPlantPerformanceModel" + model: FlorisWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel dispatch_rule_set: - model: "PyomoDispatchGenericConverter" + model: PyomoDispatchGenericConverter model_inputs: performance_parameters: - num_turbines: 22 #number of turbines in the farm - hub_height: 150.0 # turbine hub-height - operational_losses: 12.83 #percentage of non-wake losses + num_turbines: 22 # number of turbines in the farm + hub_height: 150.0 # turbine hub-height + operational_losses: 12.83 # percentage of non-wake losses floris_wake_config: !include "floris_v4_default_template.yaml" #floris wake model file floris_turbine_config: !include "floris_turbine_osw_15MW.yaml" #turbine model file formatted for floris - resource_data_averaging_method: "average" #"weighted_average", "average" or "nearest" - operation_model: "cosine-loss" #turbine operation model + resource_data_averaging_method: average #"weighted_average", "average" or "nearest" + operation_model: cosine-loss # turbine operation model default_turbulence_intensity: 0.06 - enable_caching: True #whether to use cached results - cache_dir: "cache" #directory to save or load cached data + enable_caching: true # whether to use cached results + cache_dir: cache # directory to save or load cached data layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 7.0 turbine_D_spacing: 7.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 9390 opex_per_kW_per_year: 72 cost_year: 2022 dispatch_rule_parameters: - commodity: "electricity" - commodity_rate_units: "kW" - - + commodity: electricity + commodity_rate_units: kW battery: dispatch_rule_set: - model: "PyomoRuleStorageBaseclass" + model: PyomoRuleStorageBaseclass control_strategy: - model: "HeuristicLoadFollowingController" + model: HeuristicLoadFollowingController performance_model: - model: "PySAMBatteryPerformanceModel" + model: PySAMBatteryPerformanceModel cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" - max_charge_rate: 50000 #kW - max_capacity: 200000 #kWh + commodity: electricity + commodity_rate_units: kW + max_charge_rate: 50000 # kW + max_capacity: 200000 # kWh n_control_window: 24 n_horizon_window: 48 init_charge_percent: 0.9 @@ -60,38 +57,36 @@ technologies: min_charge_percent: 0.2 system_commodity_interface_limit: 1e12 performance_parameters: - system_model_source: "pysam" - chemistry: "LFPGraphite" + system_model_source: pysam + chemistry: LFPGraphite cost_parameters: cost_year: 2022 - commodity_units: "kW" - energy_capex: 246 # $/kWh from 2024 ATB year 2025 - power_capex: 317 # $/kW from 2024 ATB year 2025 + commodity_units: kW + energy_capex: 246 # $/kWh from 2024 ATB year 2025 + power_capex: 317 # $/kW from 2024 ATB year 2025 opex_fraction: 0.02536510376633359 control_parameters: - tech_name: "battery" - + tech_name: battery oae: performance_model: - model: "OAEPerformanceModel" + model: OAEPerformanceModel cost_model: - model: "OAECostModel" + model: OAECostModel model_inputs: performance_parameters: number_ed_min: 1 number_ed_max: 10 - max_ed_system_flow_rate_m3s: 0.0324 # m^3/s + max_ed_system_flow_rate_m3s: 0.0324 # m^3/s frac_base_flow: 0.5 - assumed_CDR_rate: 0.8 # mol CO2/mol NaOH - use_storage_tanks: True - initial_tank_volume_m3: 0. #m^3 - store_hours: 12. # hours - acid_disposal_method: "sell rca" - initial_salinity_ppt: 73.76 # ppt - initial_temp_C: 10.0 # degrees Celsius - initial_dic_mol_per_L: 0.0044 # mol/L - initial_pH: 8.1 # initial pH - save_outputs: True - + assumed_CDR_rate: 0.8 # mol CO2/mol NaOH + use_storage_tanks: true + initial_tank_volume_m3: 0. # m^3 + store_hours: 12. # hours + acid_disposal_method: sell rca + initial_salinity_ppt: 73.76 # ppt + initial_temp_C: 10.0 # degrees Celsius + initial_dic_mol_per_L: 0.0044 # mol/L + initial_pH: 8.1 # initial pH + save_outputs: true cost_parameters: mass_product_tonne_yr: 100000.0 diff --git a/examples/09_co2/ocean_alkalinity_enhancement_financials/driver_config.yaml b/examples/09_co2/ocean_alkalinity_enhancement_financials/driver_config.yaml index 843972de4..d4a803402 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement_financials/driver_config.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement_financials/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a wind plant connected to a ocean alkalinity enhancement device" - +name: driver_config +description: This analysis runs a wind plant connected to a ocean alkalinity enhancement device general: folder_output: wind_oae diff --git a/examples/09_co2/ocean_alkalinity_enhancement_financials/offshore_plant_oae.yaml b/examples/09_co2/ocean_alkalinity_enhancement_financials/offshore_plant_oae.yaml index ddca61c6c..8abdcfb47 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement_financials/offshore_plant_oae.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement_financials/offshore_plant_oae.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate Config" - -system_summary: "This plant uses wind to run an electrochemical mCC system for ocean alkalinity enhancement (OAE)." - -driver_config: "driver_config.yaml" -technology_config: "tech_config_financials.yaml" -plant_config: "plant_config_financials.yaml" +name: H2Integrate Config +system_summary: This plant uses wind to run an electrochemical mCC system for ocean alkalinity enhancement (OAE). +driver_config: driver_config.yaml +technology_config: tech_config_financials.yaml +plant_config: plant_config_financials.yaml diff --git a/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml b/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml index f9916af27..c3b0171ec 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml @@ -1,65 +1,58 @@ -name: "plant_config" -description: "This plant is located in Puget Sound WA, USA" - +name: plant_config +description: This plant is located in Puget Sound WA, USA sites: site: latitude: 48.153889 longitude: -122.774111 resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2013 - plant: plant_life: 20 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "oae", "electricity", "cable"], - ["finance_subgroup_electricity", "oae", "LCOE"] +technology_interconnections: + - [wind, oae, electricity, cable] + - [finance_subgroup_electricity, oae, LCOE] # etc -] - -resource_to_tech_connections: [ +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] - + - [site.wind_resource, wind, wind_resource_data] finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - refurb: [0.] + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] finance_subgroups: electricity: - commodity: "electricity" - technologies: ["wind"] + commodity: electricity + technologies: [wind] oae: - commodity: "co2" - finance_groups: ["oae"] - technologies: ["oae"] + commodity: co2 + finance_groups: [oae] + technologies: [oae] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # 2.5% inflation rate for cost adjustments + cost_year_adjustment_inflation: 0.025 # 2.5% inflation rate for cost adjustments target_dollar_year: 2022 diff --git a/examples/09_co2/ocean_alkalinity_enhancement_financials/tech_config_financials.yaml b/examples/09_co2/ocean_alkalinity_enhancement_financials/tech_config_financials.yaml index 05ea29db6..962691e8a 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement_financials/tech_config_financials.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement_financials/tech_config_financials.yaml @@ -1,54 +1,53 @@ -name: "technology_config" -description: "This plant has wind connected to a ocean alkalinity enhancement device" - +name: technology_config +description: This plant has wind connected to a ocean alkalinity enhancement device technologies: wind: performance_model: - model: "FlorisWindPlantPerformanceModel" + model: FlorisWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: - num_turbines: 3 #number of turbines in the farm - hub_height: 80.0 # turbine hub-height - operational_losses: 12.83 #percentage of non-wake losses + num_turbines: 3 # number of turbines in the farm + hub_height: 80.0 # turbine hub-height + operational_losses: 12.83 # percentage of non-wake losses floris_wake_config: !include "floris_v4_default_template.yaml" #floris wake model file floris_turbine_config: !include "floris_turbine_GE_1.5MW.yaml" #turbine model file formatted for floris - resource_data_averaging_method: "weighted_average" #"weighted_average", "average" or "nearest" - operation_model: "cosine-loss" #turbine operation model + resource_data_averaging_method: weighted_average #"weighted_average", "average" or "nearest" + operation_model: cosine-loss # turbine operation model default_turbulence_intensity: 0.06 - enable_caching: True #whether to use cached results - cache_dir: "cache" #directory to save or load cached data + enable_caching: true # whether to use cached results + cache_dir: cache # directory to save or load cached data layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 5.0 turbine_D_spacing: 5.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1380.0 opex_per_kW_per_year: 29.0 cost_year: 2022 oae: performance_model: - model: "OAEPerformanceModel" + model: OAEPerformanceModel finance_model: - model: "OAECostAndFinancialModel" + model: OAECostAndFinancialModel model_inputs: performance_parameters: number_ed_min: 1 number_ed_max: 10 - max_ed_system_flow_rate_m3s: 0.0324 # m^3/s + max_ed_system_flow_rate_m3s: 0.0324 # m^3/s frac_base_flow: 0.5 - assumed_CDR_rate: 0.8 # mol CO2/mol NaOH - use_storage_tanks: True - initial_tank_volume_m3: 0. #m^3 - store_hours: 12. # hours - acid_disposal_method: "sell rca" - initial_salinity_ppt: 73.76 # ppt - initial_temp_C: 10.0 # degrees Celsius - initial_dic_mol_per_L: 0.0044 # mol/L - initial_pH: 8.1 # initial pH - save_outputs: True + assumed_CDR_rate: 0.8 # mol CO2/mol NaOH + use_storage_tanks: true + initial_tank_volume_m3: 0. # m^3 + store_hours: 12. # hours + acid_disposal_method: sell rca + initial_salinity_ppt: 73.76 # ppt + initial_temp_C: 10.0 # degrees Celsius + initial_dic_mol_per_L: 0.0044 # mol/L + initial_pH: 8.1 # initial pH + save_outputs: true diff --git a/examples/10_electrolyzer_om/driver_config.yaml b/examples/10_electrolyzer_om/driver_config.yaml index 056344cbd..4e647079d 100644 --- a/examples/10_electrolyzer_om/driver_config.yaml +++ b/examples/10_electrolyzer_om/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "Runs a wind plant and an electrolyzer with O&M considerations" - +name: driver_config +description: Runs a wind plant and an electrolyzer with O&M considerations general: folder_output: electrolyzer_om diff --git a/examples/10_electrolyzer_om/electrolyzer_om.yaml b/examples/10_electrolyzer_om/electrolyzer_om.yaml index ced201847..d05fe99f7 100644 --- a/examples/10_electrolyzer_om/electrolyzer_om.yaml +++ b/examples/10_electrolyzer_om/electrolyzer_om.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant..." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant... +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/10_electrolyzer_om/plant_config.yaml b/examples/10_electrolyzer_om/plant_config.yaml index d7cbbdefa..8ccd03a4c 100644 --- a/examples/10_electrolyzer_om/plant_config.yaml +++ b/examples/10_electrolyzer_om/plant_config.yaml @@ -1,64 +1,57 @@ -name: "plant_config" -description: "This plant is located in CO, USA..." - +name: plant_config +description: This plant is located in CO, USA... sites: site: latitude: 35.2018863 longitude: -101.945027 - resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - plant: plant_life: 30 # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "electrolyzer", "electricity", "cable"], +technology_interconnections: + - [wind, electrolyzer, electricity, cable] # etc -] - -resource_to_tech_connections: [ +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] - + - [site.wind_resource, wind, wind_resource_data] finance_parameters: finance_groups: lcoe_financials: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.0615 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.0615 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind property_tax_and_insurance: 0.015 - total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default + total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.0 debt_interest_rate: 0.0439 - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - refurb: [0.] + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] lcoh_financials: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.1089 debt_equity_ratio: 0.62 property_tax_and_insurance: 0.03 @@ -66,25 +59,25 @@ finance_parameters: capital_gains_tax_rate: 0.15 sales_tax_rate: 0.0 debt_interest_rate: 0.05 - debt_type: "Revolving debt" + debt_type: Revolving debt loan_period_if_used: 0 cash_onhand_months: 1 - admin_expense: 0.00 # percent of sales H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default non_depr_assets: 250000 end_of_proj_sale_non_depr_assets: 250000 capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - refurb: [0.] + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: electricity: - commodity: "electricity" - finance_groups: ["lcoe_financials"] - technologies: ["wind"] + commodity: electricity + finance_groups: [lcoe_financials] + technologies: [wind] hydrogen: - commodity: "hydrogen" - finance_groups: ["lcoe_financials", "lcoh_financials"] - technologies: ["wind", "electrolyzer"] + commodity: hydrogen + finance_groups: [lcoe_financials, lcoh_financials] + technologies: [wind, electrolyzer] diff --git a/examples/10_electrolyzer_om/tech_config.yaml b/examples/10_electrolyzer_om/tech_config.yaml index 411a61562..62b3ce1dd 100644 --- a/examples/10_electrolyzer_om/tech_config.yaml +++ b/examples/10_electrolyzer_om/tech_config.yaml @@ -1,53 +1,52 @@ -name: "technology_config" -description: "This plant has wind feeding into an electrolyzer with optimization" - +name: technology_config +description: This plant has wind feeding into an electrolyzer with optimization technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: num_turbines: 2 turbine_rating_kw: 8300 rotor_diameter: 196. hub_height: 130. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include "pysam_options_8.3MW.yaml" - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 10.0 turbine_D_spacing: 10.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 45 cost_year: 2019 electrolyzer: performance_model: - model: "WOMBATElectrolyzerModel" + model: WOMBATElectrolyzerModel cost_model: - model: "WOMBATElectrolyzerModel" + model: WOMBATElectrolyzerModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 - size_mode: "normal" + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 + size_mode: normal n_clusters: 1 cluster_rating_MW: 40 - eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000. #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW - library_path: "resource_files/wombat_library" + eol_eff_percent_loss: 13 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000. # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW + library_path: resource_files/wombat_library cost_year: 2022 financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case diff --git a/examples/11_hybrid_energy_plant/driver_config.yaml b/examples/11_hybrid_energy_plant/driver_config.yaml index 34bc6de62..311b909a8 100644 --- a/examples/11_hybrid_energy_plant/driver_config.yaml +++ b/examples/11_hybrid_energy_plant/driver_config.yaml @@ -1,63 +1,58 @@ -name: "driver_config" -description: "Runs a wind, pv, and battery plant with optimization" - +name: driver_config +description: Runs a wind, pv, and battery plant with optimization general: folder_output: wind_pv_battery_run - driver: optimization: - flag: True + flag: true tol: 0.1 max_iter: 6 solver: COBYLA rhobeg: 1.0 - debug_print: False - + debug_print: false design_variables: hopp: wind_turbine_rating_kw: - flag: True + flag: true lower: 0.0 upper: 5. units: MW pv_capacity_kw: - flag: True + flag: true lower: 0.0 upper: 22. units: MW battery_capacity_kw: - flag: True + flag: true lower: 0.0 upper: 22. units: MW battery_capacity_kwh: - flag: True + flag: true lower: 0.0 upper: 22. units: MW*h - constraints: hopp: percent_load_missed: - flag: True + flag: true lower: 20. units: percent curtailment_percent: - flag: True + flag: true lower: 20.0 units: percent battery_duration: - flag: True + flag: true upper: 10 units: h power_capacity_to_interconnect_ratio: - flag: True + flag: true lower: 0.2 units: unitless annual_energy_to_interconnect_potential_ratio: - flag: True + flag: true lower: 0.2 units: unitless - objective: name: finance_subgroup_default.LCOE diff --git a/examples/11_hybrid_energy_plant/plant_config.yaml b/examples/11_hybrid_energy_plant/plant_config.yaml index 4f3c43211..3cccee7c8 100644 --- a/examples/11_hybrid_energy_plant/plant_config.yaml +++ b/examples/11_hybrid_energy_plant/plant_config.yaml @@ -1,38 +1,35 @@ -name: "plant_config" -description: "This plant is located in TX, USA near Sheffield" - +name: plant_config +description: This plant is located in TX, USA near Sheffield sites: site: latitude: 30.6617 longitude: -101.7096 - plant: plant_life: 30 - finance_parameters: finance_groups: - commodity: "electricity" - finance_model: "ProFastLCO" + commodity: electricity + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 12 # months - inflation_rate: 0.025 # 0 for nominal analysis - discount_rate: 0.089 # nominal return - debt_equity_ratio: 2.1746031746031744 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.015 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default + installation_time: 12 # months + inflation_rate: 0.025 # 0 for nominal analysis + discount_rate: 0.089 # nominal return + debt_equity_ratio: 2.1746031746031744 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.015 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.045 - debt_interest_rate: 0.06 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default + debt_interest_rate: 0.06 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default admin_expense: 0.01 capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2025 diff --git a/examples/11_hybrid_energy_plant/tech_config.yaml b/examples/11_hybrid_energy_plant/tech_config.yaml index c5e30d1a7..260ee44e4 100644 --- a/examples/11_hybrid_energy_plant/tech_config.yaml +++ b/examples/11_hybrid_energy_plant/tech_config.yaml @@ -1,6 +1,5 @@ -name: "technology_config" -description: "This plant is a simple passthrough wind+solar+battery hybrid energy plant within HOPP" - +name: technology_config +description: This plant is a simple passthrough wind+solar+battery hybrid energy plant within HOPP technologies: hopp: performance_model: @@ -9,6 +8,6 @@ technologies: shared_parameters: cost_year: 2024 performance_parameters: - cache_dir: "cache" - enable_caching: True + cache_dir: cache + enable_caching: true hopp_config: !include tech_inputs/hopp_config.yaml diff --git a/examples/11_hybrid_energy_plant/tech_inputs/default_fin_config.yaml b/examples/11_hybrid_energy_plant/tech_inputs/default_fin_config.yaml index 39f1bba7f..e59737e4e 100644 --- a/examples/11_hybrid_energy_plant/tech_inputs/default_fin_config.yaml +++ b/examples/11_hybrid_energy_plant/tech_inputs/default_fin_config.yaml @@ -1,21 +1,15 @@ battery_system: - batt_replacement_schedule_percent: - - 0 - batt_bank_replacement: - - 0 + 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: - - 0 - om_production: - - 0 - om_capacity: - - 0 + om_fixed: [0] + om_production: [0] + om_capacity: [0] om_batt_fixed_cost: 42.888 - om_batt_variable_cost: - - 0 + om_batt_variable_cost: [0] om_batt_capacity_cost: 86.559 om_batt_replacement_cost: 0 om_replacement_cost_escal: 0 @@ -31,19 +25,15 @@ financial_parameters: term_int_rate: 6.0 months_working_reserve: 1 analysis_start_year: 2025 - installation_months: 12 # None - sales_tax_rate_state: 4.5 # none - admin_expense_percent_of_sales: 1.0 #none - capital_gains_tax_rate: 15.0 # none - debt_type: "Revolving debt" # none - depreciation_method: "MACRS" # none handled differently - depreciation_period: 5 # none - handled differently - -cp_capacity_credit_percent: - - 0 -degradation: - - 0 + installation_months: 12 # None + sales_tax_rate_state: 4.5 # none + admin_expense_percent_of_sales: 1.0 # none + capital_gains_tax_rate: 15.0 # none + debt_type: Revolving debt # none + depreciation_method: MACRS # none handled differently + depreciation_period: 5 # none - handled differently +cp_capacity_credit_percent: [0] +degradation: [0] revenue: - ppa_price_input: - - 0.01 + ppa_price_input: [0.01] ppa_escalation: 1 diff --git a/examples/11_hybrid_energy_plant/tech_inputs/hopp_config.yaml b/examples/11_hybrid_energy_plant/tech_inputs/hopp_config.yaml index f709b2825..9b1957f93 100644 --- a/examples/11_hybrid_energy_plant/tech_inputs/hopp_config.yaml +++ b/examples/11_hybrid_energy_plant/tech_inputs/hopp_config.yaml @@ -2,10 +2,10 @@ site: data: lat: 30.6617 lon: -101.7096 - elev: 745 # 147 CA # m + elev: 745 # 147 CA # m year: 2013 n_timesteps: 8760 - site_boundaries: # enlarged boundaries to not constraint for now + site_boundaries: # enlarged boundaries to not constraint for now verts: - [0.0, 0.0] - [0.0, 25000] @@ -16,68 +16,91 @@ site: - [0.0, 25000] - [25000, 25000] - [25000, 0.0] - solar_resource_file: "tech_inputs/weather/solar/30.6617_-101.7096_psmv3_60_2013.csv" - wind_resource_file: "tech_inputs/weather/wind/30.6617_-101.7096_windtoolkit_2013_60min_80m_100m.srw" - wave_resource_file: "" - grid_resource_file: "" + solar_resource_file: tech_inputs/weather/solar/30.6617_-101.7096_psmv3_60_2013.csv + wind_resource_file: tech_inputs/weather/wind/30.6617_-101.7096_windtoolkit_2013_60min_80m_100m.srw + wave_resource_file: '' + grid_resource_file: '' # hub_height: 40.0 capacity_hours: [] solar: true wind: true wave: false - wind_resource_origin: "WTK" + wind_resource_origin: WTK desired_schedule: !include ./desired_schedules/desired_schedule_hourly_mw.yaml # desired_schedule: !include ./desired_schedules/desired_schedule_hourly_day_mw.yaml # desired_schedule: !include ./desired_schedules/desired_schedule_hourly_night_mw.yaml # desired_schedule: !include ./desired_schedules/desired_schedule_constant_mw.yaml # desired_schedule: !include ./desired_schedules/desired_schedule_constant_day_mw.yaml # desired_schedule: !include ./desired_schedules/desired_schedule_constant_night_mw.yaml - curtailment_value_type: "desired_schedule" - + curtailment_value_type: desired_schedule technologies: wind: num_turbines: 2 turbine_rating_kw: 1500 - layout_mode: 'grid' + layout_mode: grid model_name: pysam timestep: [0, 8760] - override_wind_resource_height: True + override_wind_resource_height: true hub_height: 80.0 fin_model: !include default_fin_config.yaml pv: - system_capacity_kw: 2500 #2.222222 # initial guess - # dc_ac_ratio: 1.03 # default is 1.3 - 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] + system_capacity_kw: 2500 # 2.222222 # initial guess + # dc_ac_ratio: 1.03 # default is 1.3 + 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: 10000 # initial guess - system_capacity_kw: 2000 # initial guess + system_capacity_kwh: 10000 # initial guess + system_capacity_kw: 2000 # initial guess minimum_SOC: 20.0 maximum_SOC: 100.0 initial_SOC: 90.0 fin_model: !include default_fin_config.yaml grid: - interconnect_kw: 2000.0 # Max power constraint hourly is 1729 kW, this value just rounds that up + interconnect_kw: 2000.0 # Max power constraint hourly is 1729 kW, this value just rounds that up fin_model: !include default_fin_config.yaml - config: simulation_options: cache: false wind: skip_financial: false dispatch_options: - battery_dispatch: load_following_heuristic #load_following_heuristic #heuristic + 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: # using utility scale costs - wind_installed_cost_mw: 1228308.0 # 2024 ATB for land-based wind class 1 moderate case year 2030 in 2022 USD - solar_installed_cost_mw: 1043702.0 # 2024 ATB for utility pv moderate case year 2030 in 2022 USD - storage_installed_cost_mwh: 245692.0 # based on 2024 ATB utility-scale capital cost for battery energy costs for year 2030 in 2022 USD - storage_installed_cost_mw: 317384.0 # 2024 ATB moderate case for commercial-scale battery power capital costs year 2030 in 2022 USD - wind_om_per_kw: 29.2638 # 2024 ATB for land-based wind class 1 moderate case year 2030 - pv_om_per_kw: 17.9907 # 2024 ATB for utility-scale pv moderate case year 2024 in 2022 USD - battery_om_per_kw: 7.9346 # 2024 ATB for utility-scale battery storage moderate case year 2030 in 2022 USD - ~0.025*317 - battery_om_per_kwh: 6.1423 # 2024 ATB for utility-scale battery storage moderate case year 2030 in 2022 USD - ~0.025*245 + cost_info: # using utility scale costs + wind_installed_cost_mw: 1228308.0 # 2024 ATB for land-based wind class 1 moderate case year 2030 in 2022 USD + solar_installed_cost_mw: 1043702.0 # 2024 ATB for utility pv moderate case year 2030 in 2022 USD + storage_installed_cost_mwh: 245692.0 # based on 2024 ATB utility-scale capital cost for battery energy costs for year 2030 in 2022 USD + storage_installed_cost_mw: 317384.0 # 2024 ATB moderate case for commercial-scale battery power capital costs year 2030 in 2022 USD + wind_om_per_kw: 29.2638 # 2024 ATB for land-based wind class 1 moderate case year 2030 + pv_om_per_kw: 17.9907 # 2024 ATB for utility-scale pv moderate case year 2024 in 2022 USD + battery_om_per_kw: 7.9346 # 2024 ATB for utility-scale battery storage moderate case year 2030 in 2022 USD - ~0.025*317 + battery_om_per_kwh: 6.1423 # 2024 ATB for utility-scale battery storage moderate case year 2030 in 2022 USD - ~0.025*245 diff --git a/examples/11_hybrid_energy_plant/wind_pv_battery.yaml b/examples/11_hybrid_energy_plant/wind_pv_battery.yaml index bc24a554d..32b604a69 100644 --- a/examples/11_hybrid_energy_plant/wind_pv_battery.yaml +++ b/examples/11_hybrid_energy_plant/wind_pv_battery.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "Wind, PV, Battery" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: Wind, PV, Battery +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/12_ammonia_synloop/12_ammonia_synloop.yaml b/examples/12_ammonia_synloop/12_ammonia_synloop.yaml index 097d03edb..3a9ab2e8d 100644 --- a/examples/12_ammonia_synloop/12_ammonia_synloop.yaml +++ b/examples/12_ammonia_synloop/12_ammonia_synloop.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant contains an ammonia synthesis loop drawing from hydrogen electrolyzer and storage" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant contains an ammonia synthesis loop drawing from hydrogen electrolyzer and storage +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/12_ammonia_synloop/driver_config.yaml b/examples/12_ammonia_synloop/driver_config.yaml index d3b06a03e..e6b823fec 100644 --- a/examples/12_ammonia_synloop/driver_config.yaml +++ b/examples/12_ammonia_synloop/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to match the first example in H2Integrate" - +name: driver_config +description: This analysis runs a hybrid plant to match the first example in H2Integrate general: folder_output: outputs diff --git a/examples/12_ammonia_synloop/plant_config.yaml b/examples/12_ammonia_synloop/plant_config.yaml index 7bfff15b1..8b82caf6c 100644 --- a/examples/12_ammonia_synloop/plant_config.yaml +++ b/examples/12_ammonia_synloop/plant_config.yaml @@ -1,78 +1,78 @@ -name: "plant_config" -description: "This plant is located in MN, USA..." - +name: plant_config +description: This plant is located in MN, USA... sites: site: latitude: 32.31714 longitude: -100.18 resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2013 - solar_resource: - resource_model: "GOESAggregatedSolarAPI" + resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2013 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind","combiner","electricity","cable"], - ["solar","combiner","electricity","cable"], - ["combiner","battery","electricity", "cable"], - ["battery", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "h2_storage", "hydrogen", "pipe"], - ["h2_storage", "ammonia", "hydrogen", "pipe"], - ["n2_feedstock", "ammonia", "nitrogen", "pipe"], - ["electricity_feedstock", "ammonia", "electricity", "cable"], +technology_interconnections: + - [wind, combiner, electricity, cable] + - [solar, combiner, electricity, cable] + - [combiner, battery, electricity, cable] + - [battery, electrolyzer, electricity, cable] + - [electrolyzer, h2_storage, hydrogen, pipe] + - [h2_storage, ammonia, hydrogen, pipe] + - [n2_feedstock, ammonia, nitrogen, pipe] + - [electricity_feedstock, ammonia, electricity, cable] # etc -] -tech_to_dispatch_connections: [ - ["combiner", "battery"], - ["battery", "battery"], -] -resource_to_tech_connections: [ +tech_to_dispatch_connections: + - [combiner, battery] + - [battery, battery] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], - ['site.solar_resource', 'solar', 'solar_resource_data'], -] + - [site.wind_resource, wind, wind_resource_data] + - [site.solar_resource, solar, solar_resource_data] plant: plant_life: 30 - finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for real analysis - discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for real analysis + discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 7 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 7 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: h2: - commodity: "hydrogen" - technologies: ["wind", "solar", "battery", "electrolyzer", "h2_storage"] + commodity: hydrogen + technologies: [wind, solar, battery, electrolyzer, h2_storage] nh3: - commodity: "ammonia" - technologies: ["wind", "solar", "battery", "electrolyzer", "h2_storage", "n2_feedstock", "ammonia"] + commodity: ammonia + technologies: + - wind + - solar + - battery + - electrolyzer + - h2_storage + - n2_feedstock + - ammonia diff --git a/examples/12_ammonia_synloop/tech_config.yaml b/examples/12_ammonia_synloop/tech_config.yaml index 4a6b9e2c8..b8e592f20 100644 --- a/examples/12_ammonia_synloop/tech_config.yaml +++ b/examples/12_ammonia_synloop/tech_config.yaml @@ -1,55 +1,53 @@ -name: "technology_config" -description: "This hybrid plant produces ammonia" - +name: technology_config +description: This hybrid plant produces ammonia technologies: wind: performance_model: - model: "FlorisWindPlantPerformanceModel" + model: FlorisWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: - num_turbines: 148 #number of turbines in the farm - hub_height: 115.0 # turbine hub-height - operational_losses: 10.49 #percentage of non-wake losses + num_turbines: 148 # number of turbines in the farm + hub_height: 115.0 # turbine hub-height + operational_losses: 10.49 # percentage of non-wake losses floris_wake_config: !include "floris_v4_default_template.yaml" #floris wake model file floris_turbine_config: !include "floris_turbine_NREL_6MW_170.yaml" #turbine model file formatted for floris - resource_data_averaging_method: "average" #"weighted_average", "average" or "nearest" - operation_model: "cosine-loss" #turbine operation model + resource_data_averaging_method: average #"weighted_average", "average" or "nearest" + operation_model: cosine-loss # turbine operation model default_turbulence_intensity: 0.06 - enable_caching: True #whether to use cached results - cache_dir: "cache" #directory to save or load cached data + enable_caching: true # whether to use cached results + cache_dir: cache # directory to save or load cached data layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 7.0 turbine_D_spacing: 7.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1380.0 opex_per_kW_per_year: 29.0 cost_year: 2019 - solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBResComPVCostModel" + model: ATBResComPVCostModel model_inputs: shared_parameters: - pv_capacity_kWdc: 400000 #400 MWdc + pv_capacity_kWdc: 400000 # 400 MWdc performance_parameters: dc_ac_ratio: 1.3 - create_model_from: "default" - config_name: "PVWattsSingleOwner" - tilt_angle_func: "lat-func" + create_model_from: default + config_name: PVWattsSingleOwner + tilt_angle_func: lat-func pysam_options: SystemDesign: inv_eff: 96.0 - module_type: 0 #19% efficiency - losses: 14.08 #dc losses + module_type: 0 # 19% efficiency + losses: 14.08 # dc losses Lifetime: dc_degradation: [0] cost_parameters: @@ -58,31 +56,31 @@ technologies: cost_year: 2019 combiner: performance_model: - model: "GenericCombinerPerformanceModel" + model: GenericCombinerPerformanceModel dispatch_rule_set: - model: "PyomoDispatchGenericConverter" + model: PyomoDispatchGenericConverter model_inputs: performance_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW dispatch_rule_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW battery: dispatch_rule_set: - model: "PyomoRuleStorageBaseclass" + model: PyomoRuleStorageBaseclass control_strategy: - model: "HeuristicLoadFollowingController" + model: HeuristicLoadFollowingController performance_model: - model: "PySAMBatteryPerformanceModel" + model: PySAMBatteryPerformanceModel cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" - max_charge_rate: 96.0 #kW - max_capacity: 96.0 #kWh + commodity: electricity + commodity_rate_units: kW + max_charge_rate: 96.0 # kW + max_capacity: 96.0 # kWh n_control_window: 24 n_horizon_window: 48 init_charge_percent: 0.9 @@ -90,66 +88,63 @@ technologies: min_charge_percent: 0.2 system_commodity_interface_limit: 1e12 performance_parameters: - system_model_source: "pysam" - chemistry: "LFPGraphite" + system_model_source: pysam + chemistry: LFPGraphite cost_parameters: cost_year: 2019 - energy_capex: 310 # $/kWh from 2024 ATB year 2025 - power_capex: 311 # $/kW from 2024 ATB year 2025 + energy_capex: 310 # $/kWh from 2024 ATB year 2025 + power_capex: 311 # $/kW from 2024 ATB year 2025 opex_fraction: 0.025 control_parameters: - tech_name: "battery" - + tech_name: battery electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) - + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - size_mode: "normal" + size_mode: normal n_clusters: 16 cluster_rating_MW: 40 - eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000 #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + eol_eff_percent_loss: 10 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000 # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case - + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case h2_storage: performance_model: - model: "StorageAutoSizingModel" + model: StorageAutoSizingModel control_strategy: - model: "PassThroughOpenLoopController" + model: PassThroughOpenLoopController cost_model: - model: "SaltCavernStorageCostModel" + model: SaltCavernStorageCostModel model_inputs: shared_parameters: - commodity: "hydrogen" - commodity_rate_units: "kg/h" + commodity: hydrogen + commodity_rate_units: kg/h cost_parameters: # since the storage is being auto-sized by the performance model, # we set the sizing mode to 'auto' rather than defining the capacities # in the input file - sizing_mode: "auto" # set as "auto" so storage capacity doesnt have to be defined + sizing_mode: auto # set as "auto" so storage capacity doesnt have to be defined n2_feedstock: performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "nitrogen" - commodity_rate_units: "t/h" + commodity: nitrogen + commodity_rate_units: t/h performance_parameters: - rated_capacity: 50.0 #metric tonnes of N2/hour + rated_capacity: 50.0 # metric tonnes of N2/hour cost_parameters: cost_year: 2022 price: 0.0 @@ -157,33 +152,32 @@ technologies: start_up_cost: 0.0 electricity_feedstock: performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "MW" + commodity: electricity + commodity_rate_units: MW performance_parameters: - rated_capacity: 29.0 #MW of electricity + rated_capacity: 29.0 # MW of electricity cost_parameters: cost_year: 2022 price: 0.0 annual_cost: 0. start_up_cost: 0.0 - ammonia: performance_model: - model: "AmmoniaSynLoopPerformanceModel" + model: AmmoniaSynLoopPerformanceModel cost_model: - model: "AmmoniaSynLoopCostModel" - model_inputs: # See converters/ammonia/Ammonia cost breakdown-ANL source.xlsx + model: AmmoniaSynLoopCostModel + model_inputs: # See converters/ammonia/Ammonia cost breakdown-ANL source.xlsx shared_parameters: production_capacity: 52777.6 catalyst_consumption_rate: 0.000091295354067341 catalyst_replacement_interval: 3 performance_parameters: - size_mode: "normal" + size_mode: normal capacity_factor: 0.9 energy_demand: 0.530645243 heat_output: 0.8299956 @@ -204,8 +198,8 @@ technologies: base_cost_year: 2016 capex_scaling_exponent: 0.6 labor_scaling_exponent: 0.25 - asu_capex_base: 236920646 # See ASU + HB capex-NETL source.xlsx - synloop_capex_base: 302460908 # See ASU + HB capex-NETL source.xlsx + asu_capex_base: 236920646 # See ASU + HB capex-NETL source.xlsx + synloop_capex_base: 302460908 # See ASU + HB capex-NETL source.xlsx heat_capex_base: 7069100 cool_capex_base: 4799200 other_eqpt_capex_base: 0 diff --git a/examples/14_wind_hydrogen_dispatch/inputs/driver_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/driver_config.yaml index 832dca01d..1b3812ae9 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/driver_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant with wind, electrolysis, and hydrogen storage." - +name: driver_config +description: This analysis runs a hybrid plant with wind, electrolysis, and hydrogen storage. general: folder_output: outputs diff --git a/examples/14_wind_hydrogen_dispatch/inputs/h2i_wind_to_h2_storage.yaml b/examples/14_wind_hydrogen_dispatch/inputs/h2i_wind_to_h2_storage.yaml index 63f99063f..afa0b6d98 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/h2i_wind_to_h2_storage.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/h2i_wind_to_h2_storage.yaml @@ -1,6 +1,5 @@ -name: "H2Integrate_config" -system_summary: "This reference hybrid plant is located in Texas and contains wind, electrolysis, and hydrogen storage technologies." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant is located in Texas and contains wind, electrolysis, and hydrogen storage technologies. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml index 8dfff6c99..2364bb95a 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml @@ -1,70 +1,61 @@ -name: "plant_config" -description: "This plant is located in Amarillo TX, USA..." - +name: plant_config +description: This plant is located in Amarillo TX, USA... sites: site: latitude: 35.2018863 longitude: -101.945027 - - resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "h2_storage", "hydrogen", "pipe"], -] - -resource_to_tech_connections: [ +technology_interconnections: + - [wind, electrolyzer, electricity, cable] + - [electrolyzer, h2_storage, hydrogen, pipe] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] - + - [site.wind_resource, wind, wind_resource_data] plant: plant_life: 30 - finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2030 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - refurb: [0.] + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: electricity: - commodity: "electricity" - technologies: ["wind"] + commodity: electricity + technologies: [wind] all_hydrogen: - commodity: "hydrogen" - commodity_stream: "electrolyzer" #use all hydrogen from the electrolyzer controller in finance calc - technologies: ["wind", "electrolyzer", "h2_storage"] + commodity: hydrogen + commodity_stream: electrolyzer # use all hydrogen from the electrolyzer controller in finance calc + technologies: [wind, electrolyzer, h2_storage] dispatched_hydrogen: - commodity: "hydrogen" - commodity_stream: "h2_storage" #use only dispatched hydrogen from h2_storage controller in finance calc - technologies: ["wind", "electrolyzer", "h2_storage"] + commodity: hydrogen + commodity_stream: h2_storage # use only dispatched hydrogen from h2_storage controller in finance calc + technologies: [wind, electrolyzer, h2_storage] diff --git a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml index 53602883e..59bd0e302 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml @@ -1,67 +1,65 @@ -name: "technology_config" -description: "This hybrid plant produces hydrogen" - +name: technology_config +description: This hybrid plant produces hydrogen technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: num_turbines: 100 turbine_rating_kw: 8300 rotor_diameter: 196. hub_height: 130. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include "pysam_options_8.3MW.yaml" - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 10.0 turbine_D_spacing: 10.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 45 cost_year: 2019 electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - size_mode: "normal" + size_mode: normal n_clusters: 18 cluster_rating_MW: 40 - eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000. #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW - + eol_eff_percent_loss: 13 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000. # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case h2_storage: performance_model: - model: "SimpleGenericStorage" + model: SimpleGenericStorage cost_model: - model: "LinedRockCavernStorageCostModel" + model: LinedRockCavernStorageCostModel control_strategy: - model: "DemandOpenLoopStorageController" + model: DemandOpenLoopStorageController model_inputs: shared_parameters: - commodity: "hydrogen" - commodity_rate_units: "kg/h" + commodity: hydrogen + commodity_rate_units: kg/h max_charge_rate: 12446.00729773 # kg/time step max_capacity: 2987042.0 # kg control_parameters: @@ -69,6 +67,6 @@ technologies: min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.25 # percent as decimal max_discharge_rate: 12446.00729773 # kg/time step - charge_efficiency: 1.0 # percent as decimal - discharge_efficiency: 1.0 # percent as decimal - demand_profile: 5000 # constant demand of 5000 kg per hour (see commodity_rate_units) + charge_efficiency: 1.0 # percent as decimal + discharge_efficiency: 1.0 # percent as decimal + demand_profile: 5000 # constant demand of 5000 kg per hour (see commodity_rate_units) diff --git a/examples/15_wind_solar_electrolyzer/15_wind_solar_electrolyzer.yaml b/examples/15_wind_solar_electrolyzer/15_wind_solar_electrolyzer.yaml index 795a01461..d080007e0 100644 --- a/examples/15_wind_solar_electrolyzer/15_wind_solar_electrolyzer.yaml +++ b/examples/15_wind_solar_electrolyzer/15_wind_solar_electrolyzer.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "howdy" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: howdy +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/15_wind_solar_electrolyzer/driver_config.yaml b/examples/15_wind_solar_electrolyzer/driver_config.yaml index 76bbf7746..d504418be 100644 --- a/examples/15_wind_solar_electrolyzer/driver_config.yaml +++ b/examples/15_wind_solar_electrolyzer/driver_config.yaml @@ -1,6 +1,5 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant" - +name: driver_config +description: This analysis runs a hybrid plant general: folder_output: wind_solar_electrolyzer_outputs - create_om_reports: False + create_om_reports: false diff --git a/examples/15_wind_solar_electrolyzer/plant_config.yaml b/examples/15_wind_solar_electrolyzer/plant_config.yaml index 8dda56ee8..488768b6b 100644 --- a/examples/15_wind_solar_electrolyzer/plant_config.yaml +++ b/examples/15_wind_solar_electrolyzer/plant_config.yaml @@ -1,42 +1,37 @@ -name: "plant_config" -description: "This plant is located in MN, USA..." - +name: plant_config +description: This plant is located in MN, USA... sites: solar_site: latitude: 30.6617 longitude: -101.7096 resources: solar_resource: - resource_model: "GOESAggregatedSolarAPI" + resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2013 - resource_dir: "../11_hybrid_energy_plant/tech_inputs/weather/solar" - resource_filename: "30.6617_-101.7096_psmv3_60_2013.csv" + resource_dir: ../11_hybrid_energy_plant/tech_inputs/weather/solar + resource_filename: 30.6617_-101.7096_psmv3_60_2013.csv wind_site: latitude: 35.2018863 longitude: -101.945027 resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "combiner", "electricity", "cable"], #source_tech, dest_tech, transport_item, transport_type = connection - ["solar", "combiner", "electricity", "cable"], - ["combiner", "electrolyzer", "electricity", "cable"], -] - -resource_to_tech_connections: [ +technology_interconnections: + - [wind, combiner, electricity, cable] + # source_tech, dest_tech, transport_item, transport_type = connection + - [solar, combiner, electricity, cable] + - [combiner, electrolyzer, electricity, cable] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['wind_site.wind_resource', 'wind', 'wind_resource_data'], - ['solar_site.solar_resource', 'solar', 'solar_resource_data'], -] - + - [wind_site.wind_resource, wind, wind_resource_data] + - [solar_site.solar_resource, solar, solar_resource_data] plant: plant_life: 30 simulation: @@ -44,35 +39,35 @@ plant: dt: 3600 finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] finance_subgroups: electricity: - commodity: "electricity" - commodity_stream: "combiner" #use the total electricity output from the combiner for the finance calc - technologies: ["wind", "solar"] + commodity: electricity + commodity_stream: combiner # use the total electricity output from the combiner for the finance calc + technologies: [wind, solar] hydrogen: - commodity: "hydrogen" - technologies: ["wind", "solar", "electrolyzer"] + commodity: hydrogen + technologies: [wind, solar, electrolyzer] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/15_wind_solar_electrolyzer/tech_config.yaml b/examples/15_wind_solar_electrolyzer/tech_config.yaml index 4a922eac4..e7e7bf88d 100644 --- a/examples/15_wind_solar_electrolyzer/tech_config.yaml +++ b/examples/15_wind_solar_electrolyzer/tech_config.yaml @@ -1,45 +1,44 @@ -name: "technology_config" -description: "This hybrid plant produces hydrogen" - +name: technology_config +description: This hybrid plant produces hydrogen technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: num_turbines: 100 turbine_rating_kw: 6000 rotor_diameter: 170. hub_height: 115. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include "pysam_options_6MW.yaml" - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 7.0 turbine_D_spacing: 7.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 45 cost_year: 2019 solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBUtilityPVCostModel" + model: ATBUtilityPVCostModel model_inputs: performance_parameters: - pv_capacity_kWdc: 100000 #100 MW + pv_capacity_kWdc: 100000 # 100 MW dc_ac_ratio: 1.34 - create_model_from: "new" - tilt_angle_func: "none" + create_model_from: new + tilt_angle_func: none tilt: 0 pysam_options: SystemDesign: @@ -59,30 +58,29 @@ technologies: cost_year: 2024 combiner: performance_model: - model: "GenericCombinerPerformanceModel" + model: GenericCombinerPerformanceModel model_inputs: performance_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) - + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - size_mode: "normal" + size_mode: normal n_clusters: 18 cluster_rating_MW: 40 - eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000. #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + eol_eff_percent_loss: 13 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000. # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case diff --git a/examples/16_natural_gas/driver_config.yaml b/examples/16_natural_gas/driver_config.yaml index 92ff7626c..5b6b7e05a 100644 --- a/examples/16_natural_gas/driver_config.yaml +++ b/examples/16_natural_gas/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a natural gas power plant" - +name: driver_config +description: This analysis runs a natural gas power plant general: folder_output: outputs diff --git a/examples/16_natural_gas/natgas.yaml b/examples/16_natural_gas/natgas.yaml index cfc4cb207..d76d2c841 100644 --- a/examples/16_natural_gas/natgas.yaml +++ b/examples/16_natural_gas/natgas.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference natural gas plant contains a simple natural gas combined cycle (NGCC) power plant" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference natural gas plant contains a simple natural gas combined cycle (NGCC) power plant +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/16_natural_gas/plant_config.yaml b/examples/16_natural_gas/plant_config.yaml index 6ec18510c..e01c71feb 100644 --- a/examples/16_natural_gas/plant_config.yaml +++ b/examples/16_natural_gas/plant_config.yaml @@ -1,50 +1,44 @@ -name: "plant_config" -description: "This plant is located in Texas" - +name: plant_config +description: This plant is located in Texas sites: site: latitude: 32.34 longitude: -98.27 - resources: solar_resource: - resource_model: "GOESAggregatedSolarAPI" + resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2013 - resource_dir: "../11_hybrid_energy_plant/tech_inputs/weather/solar" - resource_filename: "30.6617_-101.7096_psmv3_60_2013.csv" - - + resource_dir: ../11_hybrid_energy_plant/tech_inputs/weather/solar + resource_filename: 30.6617_-101.7096_psmv3_60_2013.csv # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # in this example the natural gas combined cycle plant is behind-the-meter # and not connected to additional technologies. # hence the empty array. -technology_interconnections: [ - ["solar", "battery", "electricity", "cable"], #connect solar to battery - ["ng_feedstock", "natural_gas_plant", "natural_gas", "pipe"], #connect NG feedstock to NG plant - ["battery", "natural_gas_plant", ["electricity_unmet_demand","electricity_demand"]], #connect electricity demand to NG feedstock +technology_interconnections: + - [solar, battery, electricity, cable] + # connect solar to battery + - [ng_feedstock, natural_gas_plant, natural_gas, pipe] + # connect NG feedstock to NG plant + - [battery, natural_gas_plant, [electricity_unmet_demand, electricity_demand]] + # connect electricity demand to NG feedstock # connect natural gas and battery to combiner - ["solar","fin_combiner","electricity","cable"], - ["natural_gas_plant","fin_combiner","electricity","cable"], -] - -resource_to_tech_connections: [ + - [solar, fin_combiner, electricity, cable] + - [natural_gas_plant, fin_combiner, electricity, cable] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.solar_resource', 'solar', 'solar_resource_data'], -] - + - [site.solar_resource, solar, solar_resource_data] plant: plant_life: 30 simulation: n_timesteps: 8760 - finance_parameters: finance_groups: profast_model: - commodity: "electricity" - finance_model: "ProFastLCO" + commodity: electricity + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 @@ -57,30 +51,30 @@ finance_parameters: capital_gains_tax_rate: 0.15 sales_tax_rate: 0.07375 debt_interest_rate: 0.07 - debt_type: "Revolving debt" + debt_type: Revolving debt loan_period_if_used: 0 cash_onhand_months: 1 admin_expense: 0.00 capital_items: - depr_type: "MACRS" - depr_period: 5 - refurb: [0.] + depr_type: MACRS + depr_period: 5 + refurb: [0.] cost_adjustment_parameters: cost_year_adjustment_inflation: 0.025 target_dollar_year: 2022 finance_subgroups: renewables: - commodity: "electricity" - commodity_stream: "solar" - finance_groups: ["profast_model"] - technologies: ["solar", "battery"] + commodity: electricity + commodity_stream: solar + finance_groups: [profast_model] + technologies: [solar, battery] natural_gas: - commodity: "electricity" - commmodity_stream: "natural_gas_plant" - finance_groups: ["profast_model"] - technologies: ["natural_gas_plant", "ng_feedstock"] + commodity: electricity + commmodity_stream: natural_gas_plant + finance_groups: [profast_model] + technologies: [natural_gas_plant, ng_feedstock] electricity: - commodity: "electricity" - commodity_stream: "fin_combiner" - finance_groups: ["profast_model"] - technologies: ["solar","battery", "natural_gas_plant", "ng_feedstock"] + commodity: electricity + commodity_stream: fin_combiner + finance_groups: [profast_model] + technologies: [solar, battery, natural_gas_plant, ng_feedstock] diff --git a/examples/16_natural_gas/tech_config.yaml b/examples/16_natural_gas/tech_config.yaml index ed93c5f60..ae06427e9 100644 --- a/examples/16_natural_gas/tech_config.yaml +++ b/examples/16_natural_gas/tech_config.yaml @@ -1,18 +1,17 @@ -name: "technology_config" -description: "This plant produces electricity from natural gas using a combined cycle turbine" - +name: technology_config +description: This plant produces electricity from natural gas using a combined cycle turbine technologies: solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBUtilityPVCostModel" + model: ATBUtilityPVCostModel model_inputs: performance_parameters: - pv_capacity_kWdc: 200000 #200 MWdc + pv_capacity_kWdc: 200000 # 200 MWdc dc_ac_ratio: 1.34 - create_model_from: "new" - tilt_angle_func: "none" + create_model_from: new + tilt_angle_func: none tilt: 0 pysam_options: SystemDesign: @@ -32,15 +31,15 @@ technologies: cost_year: 2024 battery: performance_model: - model: "SimpleGenericStorage" + model: SimpleGenericStorage cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel control_strategy: - model: "DemandOpenLoopStorageController" + model: DemandOpenLoopStorageController model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW max_charge_rate: 25000.0 # kW/time step, 25 MW max_capacity: 200000.0 # kWh, 200 MWh control_parameters: @@ -48,25 +47,25 @@ technologies: min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.1 # percent as decimal max_discharge_rate: 25000.0 # kW/time step - charge_efficiency: 1.0 # percent as decimal - discharge_efficiency: 1.0 # percent as decimal - demand_profile: 100000 #kW, 100 MW + charge_efficiency: 1.0 # percent as decimal + discharge_efficiency: 1.0 # percent as decimal + demand_profile: 100000 # kW, 100 MW cost_parameters: cost_year: 2022 - energy_capex: 300 # $/kWh - power_capex: 100 # $/kW - opex_fraction: 0.05 # percent of capex + energy_capex: 300 # $/kWh + power_capex: 100 # $/kW + opex_fraction: 0.05 # percent of capex ng_feedstock: performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "natural_gas" - commodity_rate_units: "MMBtu/h" + commodity: natural_gas + commodity_rate_units: MMBtu/h performance_parameters: - rated_capacity: 750. #MMBtu/h + rated_capacity: 750. # MMBtu/h cost_parameters: cost_year: 2023 price: 4.2 @@ -74,23 +73,22 @@ technologies: start_up_cost: 100000. natural_gas_plant: performance_model: - model: "NaturalGasPerformanceModel" + model: NaturalGasPerformanceModel cost_model: - model: "NaturalGasCostModel" + model: NaturalGasCostModel model_inputs: shared_parameters: heat_rate_mmbtu_per_mwh: 7.5 # MMBtu/MWh - typical for NGCC system_capacity_mw: 100. cost_parameters: - capex_per_kw: 1000 # $/kW - typical for NGCC fixed_opex_per_kw_per_year: 10.0 # $/kW/year variable_opex_per_mwh: 2.5 # $/MWh cost_year: 2023 fin_combiner: performance_model: - model: "GenericCombinerPerformanceModel" + model: GenericCombinerPerformanceModel model_inputs: performance_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW diff --git a/examples/17_splitter_wind_doc_h2/driver_config.yaml b/examples/17_splitter_wind_doc_h2/driver_config.yaml index 3bf3d9b39..d04f0d5a7 100644 --- a/examples/17_splitter_wind_doc_h2/driver_config.yaml +++ b/examples/17_splitter_wind_doc_h2/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a wind and wave plant connected to a direct ocean capture device" - +name: driver_config +description: This analysis runs a wind and wave plant connected to a direct ocean capture device general: folder_output: wind_wave_doc diff --git a/examples/17_splitter_wind_doc_h2/offshore_plant_splitter_doc_h2.yaml b/examples/17_splitter_wind_doc_h2/offshore_plant_splitter_doc_h2.yaml index 03202b5d3..3c8d54f24 100644 --- a/examples/17_splitter_wind_doc_h2/offshore_plant_splitter_doc_h2.yaml +++ b/examples/17_splitter_wind_doc_h2/offshore_plant_splitter_doc_h2.yaml @@ -1,7 +1,6 @@ -name: "H2Integrate Config" - -system_summary: "This offshore hybrid plant combines wind and wave energy, uses a power splitter to send prescribed electricity to DOC and remainder to hydrogen production" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate Config +system_summary: This offshore hybrid plant combines wind and wave energy, uses a power splitter to send prescribed electricity + to DOC and remainder to hydrogen production +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/17_splitter_wind_doc_h2/plant_config.yaml b/examples/17_splitter_wind_doc_h2/plant_config.yaml index e8b95d3ce..41842d3ed 100644 --- a/examples/17_splitter_wind_doc_h2/plant_config.yaml +++ b/examples/17_splitter_wind_doc_h2/plant_config.yaml @@ -1,66 +1,60 @@ -name: "plant_config" -description: "This plant is located in OR, USA" - +name: plant_config +description: This plant is located in OR, USA sites: site: latitude: 43.807 longitude: -124.81 resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2010 - plant: plant_life: 30 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "electricity_splitter", "electricity", "cable"], - ["electricity_splitter", "doc", "electricity", "cable"], - ["electricity_splitter", "electrolyzer", "electricity", "cable"], -] - -resource_to_tech_connections: [ +technology_interconnections: + - [wind, electricity_splitter, electricity, cable] + - [electricity_splitter, doc, electricity, cable] + - [electricity_splitter, electrolyzer, electricity, cable] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] + - [site.wind_resource, wind, wind_resource_data] finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for real analysis - discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for real analysis + discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 7 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 7 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: electricity: - commodity: "electricity" - technologies: ["wind"] + commodity: electricity + technologies: [wind] hydrogen: - commodity: "hydrogen" - technologies: ["wind", "electrolyzer"] + commodity: hydrogen + technologies: [wind, electrolyzer] co2: - commodity: "co2" - technologies: ["wind", "doc"] + commodity: co2 + technologies: [wind, doc] diff --git a/examples/17_splitter_wind_doc_h2/tech_config.yaml b/examples/17_splitter_wind_doc_h2/tech_config.yaml index 10c8068cb..d29d4f0da 100644 --- a/examples/17_splitter_wind_doc_h2/tech_config.yaml +++ b/examples/17_splitter_wind_doc_h2/tech_config.yaml @@ -1,95 +1,90 @@ -name: "technology_config" -description: "This plant has offshore wind and wave energy connected to a power splitter that sends prescribed electricity to DOC and remainder to an electrolyzer for hydrogen production" - +name: technology_config +description: This plant has offshore wind and wave energy connected to a power splitter that sends prescribed electricity + to DOC and remainder to an electrolyzer for hydrogen production technologies: wind: performance_model: - model: "FlorisWindPlantPerformanceModel" + model: FlorisWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: - num_turbines: 8 #number of turbines in the farm - hub_height: 150.0 # turbine hub-height - operational_losses: 12.83 #percentage of non-wake losses + num_turbines: 8 # number of turbines in the farm + hub_height: 150.0 # turbine hub-height + operational_losses: 12.83 # percentage of non-wake losses floris_wake_config: !include "floris_v4_default_template.yaml" #floris wake model file floris_turbine_config: !include "floris_turbine_osw_15MW.yaml" #turbine model file formatted for floris - resource_data_averaging_method: "weighted_average" #"weighted_average", "average" or "nearest" - operation_model: "cosine-loss" #turbine operation model + resource_data_averaging_method: weighted_average #"weighted_average", "average" or "nearest" + operation_model: cosine-loss # turbine operation model default_turbulence_intensity: 0.06 - enable_caching: True #whether to use cached results - cache_dir: "cache" #directory to save or load cached data + enable_caching: true # whether to use cached results + cache_dir: cache # directory to save or load cached data layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 7.0 turbine_D_spacing: 7.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 5390.0 opex_per_kW_per_year: 52.0 cost_year: 2022 - electricity_splitter: performance_model: - model: "GenericSplitterPerformanceModel" + model: GenericSplitterPerformanceModel model_inputs: performance_parameters: - split_mode: "fraction" - commodity: "electricity" - commodity_rate_units: "kW" + split_mode: fraction + commodity: electricity + commodity_rate_units: kW fraction_to_priority_tech: 0.25 - doc: performance_model: - model: "DOCPerformanceModel" + model: DOCPerformanceModel cost_model: - model: "DOCCostModel" + model: DOCCostModel model_inputs: shared_parameters: - power_single_ed_w: 240000. # W - flow_rate_single_ed_m3s: 0.4 # m^3/s + power_single_ed_w: 240000. # W + flow_rate_single_ed_m3s: 0.4 # m^3/s number_ed_min: 1 number_ed_max: 10 - E_HCl: 0.05 # kWh/mol - E_NaOH: 0.05 # kWh/mol + E_HCl: 0.05 # kWh/mol + E_NaOH: 0.05 # kWh/mol y_ext: 0.9 y_pur: 0.2 y_vac: 0.6 frac_ed_flow: 0.01 - use_storage_tanks: True - initial_tank_volume_m3: 0. #m^3 - store_hours: 12. # hours - sal: 33. # ppt - temp_C: 12. # degrees Celsius - dic_i: 0.0022 # mol/L - pH_i: 8.1 # initial pH - + use_storage_tanks: true + initial_tank_volume_m3: 0. # m^3 + store_hours: 12. # hours + sal: 33. # ppt + temp_C: 12. # degrees Celsius + dic_i: 0.0022 # mol/L + pH_i: 8.1 # initial pH cost_parameters: - infrastructure_type: "new" + infrastructure_type: new cost_year: 2023 - electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 250 # $/kW overnight installed capital costs for a 1 MW system in 2022 - + location: onshore + electrolyzer_capex: 250 # $/kW overnight installed capital costs for a 1 MW system in 2022 performance_parameters: - size_mode: "normal" - n_clusters: 4 #should be 12.5 to get 500 MW + size_mode: normal + n_clusters: 4 # should be 12.5 to get 500 MW cluster_rating_MW: 20 - eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000. #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + eol_eff_percent_loss: 13 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000. # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case diff --git a/examples/18_pyomo_heuristic_dispatch/driver_config.yaml b/examples/18_pyomo_heuristic_dispatch/driver_config.yaml index 72d2e368a..b3d74bafc 100644 --- a/examples/18_pyomo_heuristic_dispatch/driver_config.yaml +++ b/examples/18_pyomo_heuristic_dispatch/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to meet an electrical load." - +name: driver_config +description: This analysis runs a hybrid plant to meet an electrical load. general: folder_output: outputs diff --git a/examples/18_pyomo_heuristic_dispatch/plant_config.yaml b/examples/18_pyomo_heuristic_dispatch/plant_config.yaml index 85d95b551..ea3a16071 100644 --- a/examples/18_pyomo_heuristic_dispatch/plant_config.yaml +++ b/examples/18_pyomo_heuristic_dispatch/plant_config.yaml @@ -1,73 +1,63 @@ -name: "plant_config" -description: "This plant is located in TX, USA..." - +name: plant_config +description: This plant is located in TX, USA... sites: site: latitude: 35.2018863 longitude: -101.945027 - resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - plant: plant_life: 30 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "battery", "electricity", "cable"], -] - +technology_interconnections: + - [wind, battery, electricity, cable] # array of arrays containing left-to-right technology, technology doing the dispatching # in this case, battery is connected to battery because there are controls rules for # the battery and battery is controlling the dispatching -tech_to_dispatch_connections: [ - ["wind", "battery"], - ["battery", "battery"], -] - -resource_to_tech_connections: [ +tech_to_dispatch_connections: + - [wind, battery] + - [battery, battery] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] - + - [site.wind_resource, wind, wind_resource_data] finance_parameters: finance_groups: - commodity: "electricity" - finance_model: "ProFastLCO" + commodity: electricity + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # p-tax https://www.house.mn.gov/hrd/issinfo/clsrates.aspx # insurance percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # p-tax https://www.house.mn.gov/hrd/issinfo/clsrates.aspx # insurance percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - 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 - depr_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: 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 + depr_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: - all_electricity: - commodity: "electricity" - commodity_stream: "wind" # use all electricity generated from wind in finance calc - technologies: ["wind", "battery"] - dispatched_electricity: - commodity: "electricity" - commodity_stream: "battery" #use only dispatched electricity from battery in finance calc - technologies: ["wind", "battery"] + all_electricity: + commodity: electricity + commodity_stream: wind # use all electricity generated from wind in finance calc + technologies: [wind, battery] + dispatched_electricity: + commodity: electricity + commodity_stream: battery # use only dispatched electricity from battery in finance calc + technologies: [wind, battery] diff --git a/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch.yaml b/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch.yaml index af7329de0..a5515e4e7 100644 --- a/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch.yaml +++ b/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch.yaml @@ -1,7 +1,6 @@ -name: "H2Integrate_config" - -system_summary: "This hybrid plant contains wind and battery storage technologies. The system is designed to meet a specific electrical load." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This hybrid plant contains wind and battery storage technologies. The system is designed to meet a specific + electrical load. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch_error_for_testing.yaml b/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch_error_for_testing.yaml index 2166eb61d..f783a3bee 100644 --- a/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch_error_for_testing.yaml +++ b/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch_error_for_testing.yaml @@ -1,7 +1,6 @@ -name: "H2Integrate_config" - -system_summary: "This hybrid plant contains wind and battery storage technologies. The system is designed to meet a specific electrical load." - -driver_config: "driver_config.yaml" -technology_config: "tech_config_error_for_testing.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This hybrid plant contains wind and battery storage technologies. The system is designed to meet a specific + electrical load. +driver_config: driver_config.yaml +technology_config: tech_config_error_for_testing.yaml +plant_config: plant_config.yaml diff --git a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml index 161fb3a6a..132d8681b 100644 --- a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml +++ b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml @@ -1,52 +1,51 @@ -name: "technology_config" -description: "This hybrid plant produces hydrogen" - +name: technology_config +description: This hybrid plant produces hydrogen technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel dispatch_rule_set: - model: "PyomoDispatchGenericConverter" + model: PyomoDispatchGenericConverter model_inputs: performance_parameters: num_turbines: 100 turbine_rating_kw: 8300 rotor_diameter: 196. hub_height: 130. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include "pysam_options_8.3MW.yaml" - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 10.0 turbine_D_spacing: 10.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 45 cost_year: 2019 dispatch_rule_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW battery: dispatch_rule_set: - model: "PyomoRuleStorageBaseclass" + model: PyomoRuleStorageBaseclass control_strategy: - model: "HeuristicLoadFollowingController" + model: HeuristicLoadFollowingController performance_model: - model: "PySAMBatteryPerformanceModel" + model: PySAMBatteryPerformanceModel cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW max_charge_rate: 100000 max_capacity: 500000 n_control_window: 24 @@ -56,12 +55,12 @@ technologies: min_charge_percent: 0.1 system_commodity_interface_limit: 1e12 performance_parameters: - system_model_source: "pysam" - chemistry: "LFPGraphite" + system_model_source: pysam + chemistry: LFPGraphite cost_parameters: cost_year: 2022 - energy_capex: 310 # $/kWh from 2024 ATB year 2025 - power_capex: 311 # $/kW from 2024 ATB year 2025 - opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB + energy_capex: 310 # $/kWh from 2024 ATB year 2025 + power_capex: 311 # $/kW from 2024 ATB year 2025 + opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB control_parameters: - tech_name: "battery" + tech_name: battery diff --git a/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml b/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml index 18dd99a28..b2af8acd6 100644 --- a/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml +++ b/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml @@ -1,16 +1,15 @@ -name: "technology_config" -description: "This hybrid plant produces hydrogen" - +name: technology_config +description: This hybrid plant produces hydrogen technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel dispatch_rule_set: - model: "PyomoDispatchGenericConverter" + model: PyomoDispatchGenericConverter resource: - type: "pysam_wind" + type: pysam_wind wind_speed: 9. model_inputs: performance_parameters: @@ -18,38 +17,38 @@ technologies: turbine_rating_kw: 8300 rotor_diameter: 196. hub_height: 130. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include "pysam_options_8.3MW.yaml" - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 10.0 turbine_D_spacing: 10.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 45 cost_year: 2019 dispatch_rule_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW battery: dispatch_rule_set: - model: "PyomoRuleStorageBaseclass" + model: PyomoRuleStorageBaseclass control_strategy: - model: "HeuristicLoadFollowingController" + model: HeuristicLoadFollowingController performance_model: - model: "PySAMBatteryPerformanceModel" + model: PySAMBatteryPerformanceModel cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW max_charge_rate: 100000 max_capacity: 500000 n_control_window: 24 @@ -59,12 +58,12 @@ technologies: min_charge_percent: 0.1 system_commodity_interface_limit: 1e12 performance_parameters: - system_model_source: "pysam" - chemistry: "LFPGraphite" + system_model_source: pysam + chemistry: LFPGraphite cost_parameters: cost_year: 2022 - energy_capex: 310 # $/kWh from 2024 ATB year 2025 - power_capex: 311 # $/kW from 2024 ATB year 2025 - opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB + energy_capex: 310 # $/kWh from 2024 ATB year 2025 + power_capex: 311 # $/kW from 2024 ATB year 2025 + opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB control_parameters: - tech_name: "wrong_tech_name" + tech_name: wrong_tech_name diff --git a/examples/19_simple_dispatch/driver_config.yaml b/examples/19_simple_dispatch/driver_config.yaml index f8c2d6a8a..e532c3a1f 100644 --- a/examples/19_simple_dispatch/driver_config.yaml +++ b/examples/19_simple_dispatch/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "Runs a wind plant and battery with a demand open loop controller" - +name: driver_config +description: Runs a wind plant and battery with a demand open loop controller general: folder_output: wind_plant_run diff --git a/examples/19_simple_dispatch/plant_config.yaml b/examples/19_simple_dispatch/plant_config.yaml index b4f0390bd..94cda7901 100644 --- a/examples/19_simple_dispatch/plant_config.yaml +++ b/examples/19_simple_dispatch/plant_config.yaml @@ -1,111 +1,103 @@ -name: "plant_config" -description: "This plant is located in CO, USA..." - +name: plant_config +description: This plant is located in CO, USA... sites: site: latitude: 35.2018863 longitude: -101.945027 - resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - plant: plant_life: 30 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "battery", "electricity", "cable"], +technology_interconnections: + - [wind, battery, electricity, cable] # etc -] - -resource_to_tech_connections: [ +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] - + - [site.wind_resource, wind, wind_resource_data] finance_parameters: finance_groups: profast: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: - save_profast_results: True + save_profast_results: true params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] profast_npv: - finance_model: "ProFastNPV" + finance_model: ProFastNPV model_inputs: commodity_sell_price: 0.10 params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] npv: - finance_model: "NumpyFinancialNPV" + finance_model: NumpyFinancialNPV model_inputs: - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind commodity_sell_price: 0.078 - save_cost_breakdown: True - save_npv_breakdown: True + save_cost_breakdown: true + save_npv_breakdown: true cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: wind: - commodity: "electricity" - commodity_stream: "wind" #use electricity from wind in finance calc - commodity_desc: "wind_only" - finance_groups: ["profast"] - technologies: ["wind"] + commodity: electricity + commodity_stream: wind # use electricity from wind in finance calc + commodity_desc: wind_only + finance_groups: [profast] + technologies: [wind] battery: - commodity: "electricity" - commodity_stream: "battery" #use electricity from battery in finance calc - commodity_desc: "battery_included" - finance_groups: ["profast"] - technologies: ["wind", "battery"] + commodity: electricity + commodity_stream: battery # use electricity from battery in finance calc + commodity_desc: battery_included + finance_groups: [profast] + technologies: [wind, battery] electricity: - commodity: "electricity" + commodity: electricity # since commodity_stream is not specified, the default behavior is to # use the electricity produced from all electricity producing technologies # included in 'technologies'. In this case, it will use the electricity # produced by the wind technology as the commodity stream. - finance_groups: ["profast", "npv", "profast_npv"] - commodity_desc: "all_electricity" - technologies: ["wind","battery"] + finance_groups: [profast, npv, profast_npv] + commodity_desc: all_electricity + technologies: [wind, battery] diff --git a/examples/19_simple_dispatch/tech_config.yaml b/examples/19_simple_dispatch/tech_config.yaml index 43cefc30d..b61d9e9e2 100644 --- a/examples/19_simple_dispatch/tech_config.yaml +++ b/examples/19_simple_dispatch/tech_config.yaml @@ -1,45 +1,44 @@ -name: "technology_config" -description: "This plant has wind feeding into an electrolyzer with optimization" - +name: technology_config +description: This plant has wind feeding into an electrolyzer with optimization technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: num_turbines: 2 turbine_rating_kw: 8300 rotor_diameter: 196. hub_height: 130. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include "pysam_options_8.3MW.yaml" - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 10.0 turbine_D_spacing: 10.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 45 cost_year: 2019 battery: performance_model: - model: "SimpleGenericStorage" + model: SimpleGenericStorage cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel control_strategy: - model: "DemandOpenLoopStorageController" + model: DemandOpenLoopStorageController model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW max_charge_rate: 5000.0 # kW max_capacity: 30000.0 # kWh control_parameters: @@ -47,11 +46,11 @@ technologies: min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.25 # percent as decimal max_discharge_rate: 5000.0 # kW - charge_efficiency: 1.0 # percent as decimal - discharge_efficiency: 1.0 # percent as decimal - demand_profile: 5000 # kW + charge_efficiency: 1.0 # percent as decimal + discharge_efficiency: 1.0 # percent as decimal + demand_profile: 5000 # kW cost_parameters: cost_year: 2022 - energy_capex: 300 # $/kWh - power_capex: 100 # $/kW - opex_fraction: 0.02 # percent of capex + energy_capex: 300 # $/kWh + power_capex: 100 # $/kW + opex_fraction: 0.02 # percent of capex diff --git a/examples/19_simple_dispatch/wind_battery_dispatch.yaml b/examples/19_simple_dispatch/wind_battery_dispatch.yaml index ced201847..d05fe99f7 100644 --- a/examples/19_simple_dispatch/wind_battery_dispatch.yaml +++ b/examples/19_simple_dispatch/wind_battery_dispatch.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant..." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant... +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/20_solar_electrolyzer_doe/20_solar_electrolyzer_doe.yaml b/examples/20_solar_electrolyzer_doe/20_solar_electrolyzer_doe.yaml index c230e280d..a16fc8d61 100644 --- a/examples/20_solar_electrolyzer_doe/20_solar_electrolyzer_doe.yaml +++ b/examples/20_solar_electrolyzer_doe/20_solar_electrolyzer_doe.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "Run DOE over solar and electrolyzer capacities" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: Run DOE over solar and electrolyzer capacities +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/20_solar_electrolyzer_doe/driver_config.yaml b/examples/20_solar_electrolyzer_doe/driver_config.yaml index 867ed68c1..b29448df4 100644 --- a/examples/20_solar_electrolyzer_doe/driver_config.yaml +++ b/examples/20_solar_electrolyzer_doe/driver_config.yaml @@ -1,6 +1,5 @@ description: Driver config for CSVGen design of experiments name: driver_config - general: folder_output: ex_20_out create_om_reports: true @@ -8,8 +7,8 @@ driver: design_of_experiments: flag: true debug_print: true - generator: "csvgen" - filename: "csv_doe_cases.csv" + generator: csvgen + filename: csv_doe_cases.csv run_parallel: false design_variables: solar: @@ -17,18 +16,18 @@ design_variables: flag: true lower: 5000.0 upper: 5000000.0 - units: "kW" + units: kW electrolyzer: n_clusters: flag: true lower: 1 upper: 25 - units: "unitless" + units: unitless objective: name: finance_subgroup_hydrogen.LCOH_optimistic recorder: - file: cases.sql - overwrite_recorder: true - flag: true - includes: ['*'] - excludes: ['*_resource*'] + file: cases.sql + overwrite_recorder: true + flag: true + includes: ['*'] + excludes: ['*_resource*'] diff --git a/examples/20_solar_electrolyzer_doe/plant_config.yaml b/examples/20_solar_electrolyzer_doe/plant_config.yaml index 5958dcc9a..8921d2b18 100644 --- a/examples/20_solar_electrolyzer_doe/plant_config.yaml +++ b/examples/20_solar_electrolyzer_doe/plant_config.yaml @@ -1,44 +1,37 @@ -name: "plant_config" -description: "This plant uses solar resource data from 2012" - +name: plant_config +description: This plant uses solar resource data from 2012 sites: site: latitude: 34.22 longitude: -102.75 - resources: solar_resource: - resource_model: "GOESAggregatedSolarAPI" + resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2012 - resource_filename: "34.22_-102.75_2012_goes_aggregated_v4_60min_utc_tz.csv" - + resource_filename: 34.22_-102.75_2012_goes_aggregated_v4_60min_utc_tz.csv # array of arrays containing left-to-right technology -technology_interconnections: [ - ["solar", "electrolyzer", "electricity", "cable"], #connect solar power to electrolyzer -] - -resource_to_tech_connections: [ +technology_interconnections: + - [solar, electrolyzer, electricity, cable] + # connect solar power to electrolyzer +resource_to_tech_connections: # connect the solar resource to the solar technology - ['site.solar_resource', 'solar', 'solar_resource_data'], -] - + - [site.solar_resource, solar, solar_resource_data] plant: plant_life: 30 simulation: n_timesteps: 8760 dt: 3600 timezone: 0 - finance_parameters: finance_groups: optimistic: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.0615 debt_equity_ratio: 2.82 property_tax_and_insurance: 0.015 @@ -46,21 +39,21 @@ finance_parameters: capital_gains_tax_rate: 0.15 sales_tax_rate: 0.00 debt_interest_rate: 0.0439 - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan" + debt_type: Revolving debt # can be "Revolving debt" or "One time loan" loan_period_if_used: 0 # Not used for "Revolving debt" cash_onhand_months: 1 - admin_expense: 0.00 # percent of sales + admin_expense: 0.00 # percent of sales capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years refurb: [0.] conservative: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.0948 debt_equity_ratio: 1.72 property_tax_and_insurance: 0.015 @@ -68,26 +61,25 @@ finance_parameters: capital_gains_tax_rate: 0.15 sales_tax_rate: 0.00 debt_interest_rate: 0.046 - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan" + debt_type: Revolving debt # can be "Revolving debt" or "One time loan" loan_period_if_used: 0 # Not used for "Revolving debt" cash_onhand_months: 1 - admin_expense: 0.00 # percent of sales + admin_expense: 0.00 # percent of sales capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_type: MACRS # can be "MACRS" or "Straight line" depr_period: 5 refurb: [0.] - finance_subgroups: electricity: - commodity: "electricity" - commodity_stream: "solar" - finance_groups: ["optimistic", "conservative"] - technologies: ["solar"] + commodity: electricity + commodity_stream: solar + finance_groups: [optimistic, conservative] + technologies: [solar] hydrogen: - commodity: "hydrogen" - commodity_stream: "electrolyzer" - finance_groups: ["optimistic", "conservative"] - technologies: ["solar","electrolyzer"] + commodity: hydrogen + commodity_stream: electrolyzer + finance_groups: [optimistic, conservative] + technologies: [solar, electrolyzer] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/20_solar_electrolyzer_doe/tech_config.yaml b/examples/20_solar_electrolyzer_doe/tech_config.yaml index 4a29bcdd6..eb0af89b9 100644 --- a/examples/20_solar_electrolyzer_doe/tech_config.yaml +++ b/examples/20_solar_electrolyzer_doe/tech_config.yaml @@ -1,18 +1,17 @@ -name: "technology_config" -description: "This plant produces hydrogen using water electrolysis powered by a solar-PV system" - +name: technology_config +description: This plant produces hydrogen using water electrolysis powered by a solar-PV system technologies: solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBUtilityPVCostModel" + model: ATBUtilityPVCostModel model_inputs: performance_parameters: pv_capacity_kWdc: 400000 dc_ac_ratio: 1.34 - create_model_from: "new" - tilt_angle_func: "lat-func" + create_model_from: new + tilt_angle_func: lat-func pysam_options: SystemDesign: gcr: 0.3 @@ -26,25 +25,25 @@ technologies: SolarResource: albedo_default: 0.2 cost_parameters: - capex_per_kWac: 1367 #2022 costs from ATB 2024 v3 - opex_per_kWac_per_year: 24 #2022 costs from ATB 2024 v3 + capex_per_kWac: 1367 # 2022 costs from ATB 2024 v3 + opex_per_kWac_per_year: 24 # 2022 costs from ATB 2024 v3 cost_year: 2022 electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "CustomElectrolyzerCostModel" + model: CustomElectrolyzerCostModel model_inputs: performance_parameters: - size_mode: "normal" + size_mode: normal n_clusters: 18 cluster_rating_MW: 10 - eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000. #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW - location: "onshore" - electrolyzer_capex: 1295 #unused in the performance model if pem_control_type is 'basic' but required as an input + eol_eff_percent_loss: 10 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000. # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW + location: onshore + electrolyzer_capex: 1295 # unused in the performance model if pem_control_type is 'basic' but required as an input cost_parameters: capex_USD_per_kW: 1000.0 fixed_om_USD_per_kW_per_year: 12.8 @@ -52,4 +51,4 @@ technologies: financial_parameters: capital_items: depr_period: 7 - replacement_cost_percent: 0.15 # percent of capex - H2A default case + replacement_cost_percent: 0.15 # percent of capex - H2A default case diff --git a/examples/21_iron_mn_to_il/21_iron.yaml b/examples/21_iron_mn_to_il/21_iron.yaml index 6028d728e..2403fa15c 100644 --- a/examples/21_iron_mn_to_il/21_iron.yaml +++ b/examples/21_iron_mn_to_il/21_iron.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "An iron mine producing ore pellets and a separately-located iron plant performing direct reduction." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: An iron mine producing ore pellets and a separately-located iron plant performing direct reduction. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/21_iron_mn_to_il/driver_config.yaml b/examples/21_iron_mn_to_il/driver_config.yaml index c279b7f1b..1f8d10de9 100644 --- a/examples/21_iron_mn_to_il/driver_config.yaml +++ b/examples/21_iron_mn_to_il/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "Simply setting up an outputs folder, nothing fancy" - +name: driver_config +description: Simply setting up an outputs folder, nothing fancy general: folder_output: outputs diff --git a/examples/21_iron_mn_to_il/plant_config.yaml b/examples/21_iron_mn_to_il/plant_config.yaml index 97eafde19..36e3d356a 100644 --- a/examples/21_iron_mn_to_il/plant_config.yaml +++ b/examples/21_iron_mn_to_il/plant_config.yaml @@ -1,33 +1,29 @@ -name: "plant_config" -description: "This plant is located in MN, USA..." - +name: plant_config +description: This plant is located in MN, USA... sites: site: latitude: 41.717 longitude: -88.398 - -technology_interconnections: [ +technology_interconnections: # Connect feedstocks to iron mine. - ["mine_electricity_feedstock", "iron_mine", "electricity", "cable"], - ["mine_crude_ore_feedstock", "iron_mine", "crude_ore", "crude_ore_transport"], + - [mine_electricity_feedstock, iron_mine, electricity, cable] + - [mine_crude_ore_feedstock, iron_mine, crude_ore, crude_ore_transport] # Connect iron_ore price and processed_ore_feedstock to iron_transport # Connect the LCOI of iron ore to the price of a feedstock component representing the ore to be used in DRI - ["finance_subgroup_iron_ore", "processed_ore_feedstock", ["price_iron_ore", "price"]], + - [finance_subgroup_iron_ore, processed_ore_feedstock, [price_iron_ore, price]] # Connect the ore feedstock available to the iron plant - ["processed_ore_feedstock", "iron_plant", "iron_ore", "iron_ore_transport"], - ["dri_grid_feedstock", "iron_plant", "electricity", "cable"], - ["catalyst_feedstock", "iron_plant", "reformer_catalyst", "catalyst_transport"], - ["water_feedstock", "iron_plant", "water", "pipe"], - ["natural_gas_feedstock", "iron_plant", "natural_gas", "pipe"], + - [processed_ore_feedstock, iron_plant, iron_ore, iron_ore_transport] + - [dri_grid_feedstock, iron_plant, electricity, cable] + - [catalyst_feedstock, iron_plant, reformer_catalyst, catalyst_transport] + - [water_feedstock, iron_plant, water, pipe] + - [natural_gas_feedstock, iron_plant, natural_gas, pipe] # Use the iron ore consumed by the iron plant to calculate transport costs - ["iron_plant", "iron_transport", ["iron_ore_consumed", "iron_ore_in"]], + - [iron_plant, iron_transport, [iron_ore_consumed, iron_ore_in]] # Connect feedstocks to steel plant - ["eaf_grid_feedstock", "steel_plant", "electricity", "cable"], - ["eaf_water_feedstock", "steel_plant", "water", "pipe"], - ["eaf_natural_gas_feedstock", "steel_plant", "natural_gas", "pipe"], - ["iron_plant", "steel_plant", "pig_iron", "pig_iron_transport"], -] - + - [eaf_grid_feedstock, steel_plant, electricity, cable] + - [eaf_water_feedstock, steel_plant, water, pipe] + - [eaf_natural_gas_feedstock, steel_plant, natural_gas, pipe] + - [iron_plant, steel_plant, pig_iron, pig_iron_transport] plant: plant_life: 30 simulation: @@ -36,58 +32,61 @@ plant: timezone: 0 finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: cost_year_adjustment_inflation: 0.025 target_dollar_year: 2022 finance_subgroups: iron_ore: - commodity: "iron_ore" - commodity_stream: "iron_mine" - technologies: ["iron_mine", "mine_electricity_feedstock", "mine_crude_ore_feedstock"] + commodity: iron_ore + commodity_stream: iron_mine + technologies: + - iron_mine + - mine_electricity_feedstock + - mine_crude_ore_feedstock pig_iron: - commodity: "pig_iron" - commodity_stream: "iron_plant" + commodity: pig_iron + commodity_stream: iron_plant technologies: - - "processed_ore_feedstock" - - "iron_transport" - - "iron_plant" - - "dri_grid_feedstock" - - "catalyst_feedstock" - - "water_feedstock" - - "natural_gas_feedstock" + - processed_ore_feedstock + - iron_transport + - iron_plant + - dri_grid_feedstock + - catalyst_feedstock + - water_feedstock + - natural_gas_feedstock steel: - commodity: "steel" - commodity_stream: "steel_plant" + commodity: steel + commodity_stream: steel_plant technologies: - - "processed_ore_feedstock" - - "iron_transport" - - "iron_plant" - - "dri_grid_feedstock" - - "catalyst_feedstock" - - "water_feedstock" - - "natural_gas_feedstock" - - "eaf_water_feedstock" - - "eaf_natural_gas_feedstock" - - "eaf_grid_feedstock" - - "steel_plant" + - processed_ore_feedstock + - iron_transport + - iron_plant + - dri_grid_feedstock + - catalyst_feedstock + - water_feedstock + - natural_gas_feedstock + - eaf_water_feedstock + - eaf_natural_gas_feedstock + - eaf_grid_feedstock + - steel_plant diff --git a/examples/21_iron_mn_to_il/tech_config.yaml b/examples/21_iron_mn_to_il/tech_config.yaml index 96c13e07c..39e3d0103 100644 --- a/examples/21_iron_mn_to_il/tech_config.yaml +++ b/examples/21_iron_mn_to_il/tech_config.yaml @@ -1,253 +1,239 @@ -name: "technology_config" -description: "This hybrid plant produces iron" - +name: technology_config +description: This hybrid plant produces iron technologies: - mine_electricity_feedstock: #electricity feedstock for iron ore + mine_electricity_feedstock: # electricity feedstock for iron ore performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "MW" + commodity: electricity + commodity_rate_units: MW performance_parameters: - rated_capacity: 30. # MW, need 27.913 MW per timestep for iron ore + rated_capacity: 30. # MW, need 27.913 MW per timestep for iron ore cost_parameters: cost_year: 2022 - price: 0. # Electricity costs are already priced in to current mine model + price: 0. # Electricity costs are already priced in to current mine model annual_cost: 0. start_up_cost: 0. - - mine_crude_ore_feedstock: #iron ore feedstock + mine_crude_ore_feedstock: # iron ore feedstock performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "crude_ore" - commodity_rate_units: "t/h" + commodity: crude_ore + commodity_rate_units: t/h performance_parameters: - rated_capacity: 2000. # need 828.50385048 t/h + rated_capacity: 2000. # need 828.50385048 t/h cost_parameters: cost_year: 2022 - price: 0. #USD/t + price: 0. # USD/t annual_cost: 0. start_up_cost: 0. crude_ore_transport: performance_model: - model: "GenericTransporterPerformanceModel" + model: GenericTransporterPerformanceModel model_inputs: performance_parameters: - commodity: "crude_ore" - commodity_rate_units: "t/h" + commodity: crude_ore + commodity_rate_units: t/h iron_mine: performance_model: - model: "MartinIronMinePerformanceComponent" + model: MartinIronMinePerformanceComponent cost_model: - model: "MartinIronMineCostComponent" + model: MartinIronMineCostComponent model_inputs: shared_parameters: - mine: "Northshore" - taconite_pellet_type: "drg" + mine: Northshore + taconite_pellet_type: drg max_ore_production_rate_tonnes_per_hr: 221.2592636 iron_ore_transport: performance_model: - model: "GenericTransporterPerformanceModel" + model: GenericTransporterPerformanceModel model_inputs: performance_parameters: - commodity: "iron_ore" - commodity_rate_units: "kg/h" - processed_ore_feedstock: #iron ore feedstock + commodity: iron_ore + commodity_rate_units: kg/h + processed_ore_feedstock: # iron ore feedstock performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "iron_ore" - commodity_rate_units: "t/h" + commodity: iron_ore + commodity_rate_units: t/h performance_parameters: - rated_capacity: 250. # need 828.50385048 t/h + rated_capacity: 250. # need 828.50385048 t/h cost_parameters: cost_year: 2022 price: 0.0 annual_cost: 0. start_up_cost: 0. - iron_transport: performance_model: - model: "IronTransportPerformanceComponent" + model: IronTransportPerformanceComponent cost_model: - model: "IronTransportCostComponent" + model: IronTransportCostComponent model_inputs: performance_parameters: - find_closest_ship_site: False - shipment_site: "Chicago" + find_closest_ship_site: false + shipment_site: Chicago cost_parameters: transport_year: 2022 cost_year: 2022 - natural_gas_feedstock: performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "natural_gas" - commodity_rate_units: "MMBtu/h" + commodity: natural_gas + commodity_rate_units: MMBtu/h performance_parameters: - rated_capacity: 1270. # need 1268.934 MMBtu/h + rated_capacity: 1270. # need 1268.934 MMBtu/h cost_parameters: cost_year: 2022 - price: 4.0 #USD 4.0/MMBtu + price: 4.0 # USD 4.0/MMBtu annual_cost: 0. start_up_cost: 0. - - water_feedstock: #for iron reduction + water_feedstock: # for iron reduction performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "water" - commodity_rate_units: "galUS" #galUS/h + commodity: water + commodity_rate_units: galUS # galUS/h performance_parameters: - rated_capacity: 40000. # need 38710.49649 galUS/h + rated_capacity: 40000. # need 38710.49649 galUS/h cost_parameters: cost_year: 2022 - price: 0.0016700004398318847 # cost is USD 0.441167535/t, converted to USD/gal + price: 0.0016700004398318847 # cost is USD 0.441167535/t, converted to USD/gal annual_cost: 0. start_up_cost: 0. - - catalyst_feedstock: #for NG iron reduction + catalyst_feedstock: # for NG iron reduction performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "reformer_catalyst" - commodity_rate_units: "(m**3)" #m**3/h + commodity: reformer_catalyst + commodity_rate_units: (m**3) # m**3/h performance_parameters: - rated_capacity: 0.001 # need 0.00056546 m**3/h + rated_capacity: 0.001 # need 0.00056546 m**3/h cost_parameters: cost_year: 2022 - price: 17515.14 #USD 17515.14/m**3 + price: 17515.14 # USD 17515.14/m**3 annual_cost: 0. start_up_cost: 0. - catalyst_transport: performance_model: - model: "GenericTransporterPerformanceModel" + model: GenericTransporterPerformanceModel model_inputs: performance_parameters: - commodity: "reformer_catalyst" - commodity_rate_units: "(m**3)" - - dri_grid_feedstock: #electricity feedstock for iron dri + commodity: reformer_catalyst + commodity_rate_units: (m**3) + dri_grid_feedstock: # electricity feedstock for iron dri performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW performance_parameters: - rated_capacity: 27000. # need 26949.46472431 kW + rated_capacity: 27000. # need 26949.46472431 kW cost_parameters: cost_year: 2022 - price: 0.05802 #USD/kW + price: 0.05802 # USD/kW annual_cost: 0. start_up_cost: 0. - iron_plant: performance_model: - model: "NaturalGasIronReductionPlantPerformanceComponent" + model: NaturalGasIronReductionPlantPerformanceComponent cost_model: - model: "NaturalGasIronReductionPlantCostComponent" + model: NaturalGasIronReductionPlantCostComponent model_inputs: shared_parameters: - pig_iron_production_rate_tonnes_per_hr: 161.8829908675799 #equivalent to 1418095 t/yr + pig_iron_production_rate_tonnes_per_hr: 161.8829908675799 # equivalent to 1418095 t/yr performance_parameters: - water_density: 1000 #kg/m3 + water_density: 1000 # kg/m3 cost_parameters: - skilled_labor_cost: 40.85 #2022 USD/hr - unskilled_labor_cost: 30.0 #2022 USD/hr - + skilled_labor_cost: 40.85 # 2022 USD/hr + unskilled_labor_cost: 30.0 # 2022 USD/hr pig_iron_transport: performance_model: - model: "GenericTransporterPerformanceModel" + model: GenericTransporterPerformanceModel model_inputs: performance_parameters: - commodity: "pig_iron" - commodity_rate_units: "kg/h" - - eaf_grid_feedstock: #electricity feedstock for EAF + commodity: pig_iron + commodity_rate_units: kg/h + eaf_grid_feedstock: # electricity feedstock for EAF performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW performance_parameters: - rated_capacity: 56650. # need 56642.327357 kW + rated_capacity: 56650. # need 56642.327357 kW cost_parameters: cost_year: 2022 - price: 0.05802 #USD/kW + price: 0.05802 # USD/kW annual_cost: 0. start_up_cost: 0. - - eaf_water_feedstock: #for EAF + eaf_water_feedstock: # for EAF performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "water" - commodity_rate_units: "galUS" #galUS/h + commodity: water + commodity_rate_units: galUS # galUS/h performance_parameters: - rated_capacity: 10000. # need 9083.687924154146 galUS/h + rated_capacity: 10000. # need 9083.687924154146 galUS/h cost_parameters: cost_year: 2022 - price: 0.0016700004398318847 # cost is USD 0.441167535/t, converted to USD/gal + price: 0.0016700004398318847 # cost is USD 0.441167535/t, converted to USD/gal annual_cost: 0. start_up_cost: 0. - eaf_natural_gas_feedstock: performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "natural_gas" - commodity_rate_units: "MMBtu/h" + commodity: natural_gas + commodity_rate_units: MMBtu/h performance_parameters: - rated_capacity: 280. # need 276.5242929731515 MMBtu/h + rated_capacity: 280. # need 276.5242929731515 MMBtu/h cost_parameters: cost_year: 2022 - price: 4.0 #USD 4.0/MMBtu + price: 4.0 # USD 4.0/MMBtu annual_cost: 0. start_up_cost: 0. - steel_plant: performance_model: - model: "NaturalGasEAFPlantPerformanceComponent" + model: NaturalGasEAFPlantPerformanceComponent cost_model: - model: "NaturalGasEAFPlantCostComponent" + model: NaturalGasEAFPlantCostComponent model_inputs: shared_parameters: - steel_production_rate_tonnes_per_hr: 135.8187214611872 #equivalent to 1189772 t/yr + steel_production_rate_tonnes_per_hr: 135.8187214611872 # equivalent to 1189772 t/yr performance_parameters: - water_density: 1000 #kg/m3 + water_density: 1000 # kg/m3 cost_parameters: - skilled_labor_cost: 40.85 #2022 USD/hr - unskilled_labor_cost: 30.0 #2022 USD/hr + skilled_labor_cost: 40.85 # 2022 USD/hr + unskilled_labor_cost: 30.0 # 2022 USD/hr diff --git a/examples/22_site_doe/22_solar_site_doe.yaml b/examples/22_site_doe/22_solar_site_doe.yaml index 18a46333b..00b571660 100644 --- a/examples/22_site_doe/22_solar_site_doe.yaml +++ b/examples/22_site_doe/22_solar_site_doe.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "Run DOE over solar capacities and site locations" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: Run DOE over solar capacities and site locations +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/22_site_doe/driver_config.yaml b/examples/22_site_doe/driver_config.yaml index 0e521098d..906f736c2 100644 --- a/examples/22_site_doe/driver_config.yaml +++ b/examples/22_site_doe/driver_config.yaml @@ -1,6 +1,5 @@ description: Driver config for CSVGen design of experiments name: driver_config - general: folder_output: ex_22_out create_om_reports: false @@ -8,8 +7,8 @@ driver: design_of_experiments: flag: true debug_print: true - generator: "csvgen" - filename: "site_solar_doe.csv" + generator: csvgen + filename: site_solar_doe.csv run_parallel: false design_variables: solar: @@ -17,24 +16,23 @@ design_variables: flag: true lower: 5000.0 upper: 75000.0 - units: "kW" + units: kW site: latitude: - flag: True - units: "deg" + flag: true + units: deg lower: -90.0 upper: 90.0 longitude: - flag: True - units: "deg" + flag: true + units: deg lower: -180.0 upper: 180.0 - objective: name: finance_subgroup_electricity.LCOE_optimistic recorder: - file: cases.sql - overwrite_recorder: true - flag: true - includes: ['*'] - excludes: ['*wind_resource*'] + file: cases.sql + overwrite_recorder: true + flag: true + includes: ['*'] + excludes: ['*wind_resource*'] diff --git a/examples/22_site_doe/plant_config.yaml b/examples/22_site_doe/plant_config.yaml index f691660ef..062733131 100644 --- a/examples/22_site_doe/plant_config.yaml +++ b/examples/22_site_doe/plant_config.yaml @@ -1,39 +1,33 @@ -name: "plant_config" -description: "This plant uses solar resource data from 2012" - +name: plant_config +description: This plant uses solar resource data from 2012 sites: site: latitude: 34.22 longitude: -102.75 - resources: solar_resource: - resource_model: "GOESAggregatedSolarAPI" + resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2012 - use_fixed_resource_location: False #set to False since sweeping sites - -resource_to_tech_connections: [ + use_fixed_resource_location: false # set to False since sweeping sites +resource_to_tech_connections: # connect the solar resource to the solar technology - ['site.solar_resource', 'solar', 'solar_resource_data'], -] - + - [site.solar_resource, solar, solar_resource_data] plant: plant_life: 30 simulation: n_timesteps: 8760 dt: 3600 timezone: 0 - finance_parameters: finance_groups: optimistic: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.0615 debt_equity_ratio: 2.82 property_tax_and_insurance: 0.015 @@ -41,21 +35,21 @@ finance_parameters: capital_gains_tax_rate: 0.15 sales_tax_rate: 0.00 debt_interest_rate: 0.0439 - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan" + debt_type: Revolving debt # can be "Revolving debt" or "One time loan" loan_period_if_used: 0 # Not used for "Revolving debt" cash_onhand_months: 1 - admin_expense: 0.00 # percent of sales + admin_expense: 0.00 # percent of sales capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years refurb: [0.] conservative: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.0948 debt_equity_ratio: 1.72 property_tax_and_insurance: 0.015 @@ -63,21 +57,20 @@ finance_parameters: capital_gains_tax_rate: 0.15 sales_tax_rate: 0.00 debt_interest_rate: 0.046 - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan" + debt_type: Revolving debt # can be "Revolving debt" or "One time loan" loan_period_if_used: 0 # Not used for "Revolving debt" cash_onhand_months: 1 - admin_expense: 0.00 # percent of sales + admin_expense: 0.00 # percent of sales capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_type: MACRS # can be "MACRS" or "Straight line" depr_period: 5 refurb: [0.] - finance_subgroups: electricity: - commodity: "electricity" - commodity_stream: "solar" - finance_groups: ["optimistic", "conservative"] - technologies: ["solar"] + commodity: electricity + commodity_stream: solar + finance_groups: [optimistic, conservative] + technologies: [solar] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/22_site_doe/tech_config.yaml b/examples/22_site_doe/tech_config.yaml index a8b72f678..ecfd4da61 100644 --- a/examples/22_site_doe/tech_config.yaml +++ b/examples/22_site_doe/tech_config.yaml @@ -1,18 +1,17 @@ -name: "technology_config" -description: "This plant produces electricity from a solar-PV system" - +name: technology_config +description: This plant produces electricity from a solar-PV system technologies: solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBUtilityPVCostModel" + model: ATBUtilityPVCostModel model_inputs: performance_parameters: pv_capacity_kWdc: 400000 dc_ac_ratio: 1.34 - create_model_from: "new" - tilt_angle_func: "lat-func" + create_model_from: new + tilt_angle_func: lat-func pysam_options: SystemDesign: gcr: 0.3 @@ -26,6 +25,6 @@ technologies: SolarResource: albedo_default: 0.2 cost_parameters: - capex_per_kWac: 1367 #2022 costs from ATB 2024 v3 - opex_per_kWac_per_year: 24 #2022 costs from ATB 2024 v3 + capex_per_kWac: 1367 # 2022 costs from ATB 2024 v3 + opex_per_kWac_per_year: 24 # 2022 costs from ATB 2024 v3 cost_year: 2022 diff --git a/examples/23_solar_wind_ng_demand/driver_config.yaml b/examples/23_solar_wind_ng_demand/driver_config.yaml index 4d9ffd9dd..5b6b7e05a 100644 --- a/examples/23_solar_wind_ng_demand/driver_config.yaml +++ b/examples/23_solar_wind_ng_demand/driver_config.yaml @@ -1,5 +1,4 @@ name: driver_config description: This analysis runs a natural gas power plant - general: folder_output: outputs diff --git a/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml b/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml index f20567a99..4f10f7ddc 100644 --- a/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml +++ b/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml @@ -1,6 +1,6 @@ name: technology_config -description: This plant produces electricity with wind, solar, and a natural gas power plant to meet a fixed electrical load demand. - +description: This plant produces electricity with wind, solar, and a natural gas power plant to meet a fixed electrical load + demand. technologies: wind: performance_model: @@ -32,7 +32,6 @@ technologies: capex_per_kW: 1300 opex_per_kW_per_year: 39 cost_year: 2022 - solar: performance_model: model: PYSAMSolarPlantPerformanceModel @@ -40,7 +39,7 @@ technologies: model: ATBUtilityPVCostModel model_inputs: performance_parameters: - pv_capacity_kWdc: 100000 #100 MWdc + pv_capacity_kWdc: 100000 # 100 MWdc dc_ac_ratio: 1.34 create_model_from: new tilt_angle_func: none @@ -61,7 +60,6 @@ technologies: capex_per_kWac: 1193 opex_per_kWac_per_year: 18 cost_year: 2024 - ng_feedstock: performance_model: model: FeedstockPerformanceModel @@ -70,15 +68,14 @@ technologies: model_inputs: shared_parameters: commodity: natural_gas - commodity_rate_units: "MMBtu/h" + commodity_rate_units: MMBtu/h performance_parameters: - rated_capacity: 750. #MMBtu + rated_capacity: 750. # MMBtu cost_parameters: cost_year: 2023 - price: 4.2 #USD/MMBtu + price: 4.2 # USD/MMBtu annual_cost: 0. start_up_cost: 0. - natural_gas_plant: performance_model: model: NaturalGasPerformanceModel @@ -87,28 +84,25 @@ technologies: model_inputs: shared_parameters: heat_rate_mmbtu_per_mwh: 7.5 # MMBtu/MWh - typical for NGCC - system_capacity_mw: 100. #MW + system_capacity_mw: 100. # MW cost_parameters: capex_per_kw: 1000 # $/kW - typical for NGCC fixed_opex_per_kw_per_year: 10.0 # $/kW/year variable_opex_per_mwh: 0.0 # $/MWh cost_year: 2023 - electrical_load_demand: - control_strategy: - model: FlexibleDemandOpenLoopConverterController - model_inputs: - control_parameters: - commodity: electricity - commodity_rate_units: kW - rated_demand: 100000 - demand_profile: 100000 #100 MW - turndown_ratio: 0.5 - ramp_down_rate_fraction: 0.1 - ramp_up_rate_fraction: 0.1 - min_utilization: 0 - - + control_strategy: + model: FlexibleDemandOpenLoopConverterController + model_inputs: + control_parameters: + commodity: electricity + commodity_rate_units: kW + rated_demand: 100000 + demand_profile: 100000 # 100 MW + turndown_ratio: 0.5 + ramp_down_rate_fraction: 0.1 + ramp_up_rate_fraction: 0.1 + min_utilization: 0 combiner: performance_model: model: GenericCombinerPerformanceModel @@ -116,7 +110,6 @@ technologies: performance_parameters: commodity: electricity commodity_rate_units: kW - fin_combiner: performance_model: model: GenericCombinerPerformanceModel diff --git a/examples/23_solar_wind_ng_demand/plant_config.yaml b/examples/23_solar_wind_ng_demand/plant_config.yaml index afaaca4ad..6b4186ddd 100644 --- a/examples/23_solar_wind_ng_demand/plant_config.yaml +++ b/examples/23_solar_wind_ng_demand/plant_config.yaml @@ -1,11 +1,9 @@ name: plant_config description: This plant is located in Texas, USA. - sites: site: latitude: 30.6617 longitude: -101.7096 - resources: wind_resource: resource_model: WTKNRELDeveloperAPIWindResource @@ -15,31 +13,28 @@ sites: resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2013 - resource_dir: "../11_hybrid_energy_plant/tech_inputs/weather/solar" - resource_filename: "30.6617_-101.7096_psmv3_60_2013.csv" - - + resource_dir: ../11_hybrid_energy_plant/tech_inputs/weather/solar + resource_filename: 30.6617_-101.7096_psmv3_60_2013.csv # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "combiner", "electricity", "cable"], #source_tech, dest_tech, transport_item, transport_type = connection - ["solar", "combiner", "electricity", "cable"], - ["ng_feedstock", "natural_gas_plant", "natural_gas", "pipe"], #connect NG feedstock to NG plant - ["combiner", "electrical_load_demand", ["electricity_out", "electricity_in"]], # subtract wind and solar from demand - ["electrical_load_demand", "natural_gas_plant", ["electricity_unmet_demand", "electricity_demand"]], #give remaining load demand to natural gas plant - ["combiner", "fin_combiner", "electricity", "cable"], - ["natural_gas_plant", "fin_combiner", "electricity", "cable"], -] - -resource_to_tech_connections: [ +technology_interconnections: + - [wind, combiner, electricity, cable] + # source_tech, dest_tech, transport_item, transport_type = connection + - [solar, combiner, electricity, cable] + - [ng_feedstock, natural_gas_plant, natural_gas, pipe] + # connect NG feedstock to NG plant + - [combiner, electrical_load_demand, [electricity_out, electricity_in]] + # subtract wind and solar from demand + - [electrical_load_demand, natural_gas_plant, [electricity_unmet_demand, electricity_demand]] + # give remaining load demand to natural gas plant + - [combiner, fin_combiner, electricity, cable] + - [natural_gas_plant, fin_combiner, electricity, cable] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], - ['site.solar_resource', 'solar', 'solar_resource_data'] -] - - + - [site.wind_resource, wind, wind_resource_data] + - [site.solar_resource, solar, solar_resource_data] plant: plant_life: 30 simulation: @@ -52,22 +47,22 @@ finance_parameters: model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: depr_type: MACRS # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] profast_npv: finance_model: ProFastNPV @@ -75,39 +70,39 @@ finance_parameters: commodity_sell_price: 0.05167052 params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: depr_type: MACRS # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] finance_subgroups: renewables: commodity: electricity - commodity_stream: "combiner" - finance_groups: ["profast_lco","profast_npv"] - technologies: ["solar", "wind"] + commodity_stream: combiner + finance_groups: [profast_lco, profast_npv] + technologies: [solar, wind] natural_gas: commodity: electricity - commodity_stream: "natural_gas_plant" - finance_groups: ["profast_lco"] - technologies: ["natural_gas_plant", "ng_feedstock"] + commodity_stream: natural_gas_plant + finance_groups: [profast_lco] + technologies: [natural_gas_plant, ng_feedstock] electricity: commodity: electricity - commodity_stream: "fin_combiner" - finance_groups: ["profast_lco"] - technologies: ["solar", "wind", "natural_gas_plant", "ng_feedstock"] + commodity_stream: fin_combiner + finance_groups: [profast_lco] + technologies: [solar, wind, natural_gas_plant, ng_feedstock] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/23_solar_wind_ng_demand/solar_wind_ng_demand.yaml b/examples/23_solar_wind_ng_demand/solar_wind_ng_demand.yaml index 3256f3f11..f2b5599a0 100644 --- a/examples/23_solar_wind_ng_demand/solar_wind_ng_demand.yaml +++ b/examples/23_solar_wind_ng_demand/solar_wind_ng_demand.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This example uses wind, solar and a natural gas power plant to meet a fixed electrical load demand." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This example uses wind, solar and a natural gas power plant to meet a fixed electrical load demand. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/23_solar_wind_ng_demand/solar_wind_ng_flexible_demand.yaml b/examples/23_solar_wind_ng_demand/solar_wind_ng_flexible_demand.yaml index 32fffb00b..036a4fa15 100644 --- a/examples/23_solar_wind_ng_demand/solar_wind_ng_flexible_demand.yaml +++ b/examples/23_solar_wind_ng_demand/solar_wind_ng_flexible_demand.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This example uses wind, solar and a natural gas power plant to meet a fixed electrical load demand." - -driver_config: "driver_config.yaml" -technology_config: "flexible_demand_tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This example uses wind, solar and a natural gas power plant to meet a fixed electrical load demand. +driver_config: driver_config.yaml +technology_config: flexible_demand_tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/23_solar_wind_ng_demand/tech_config.yaml b/examples/23_solar_wind_ng_demand/tech_config.yaml index 2e5b8c6fc..5fbabe17f 100644 --- a/examples/23_solar_wind_ng_demand/tech_config.yaml +++ b/examples/23_solar_wind_ng_demand/tech_config.yaml @@ -1,6 +1,6 @@ name: technology_config -description: This plant produces electricity with wind, solar, and a natural gas power plant to meet a fixed electrical load demand. - +description: This plant produces electricity with wind, solar, and a natural gas power plant to meet a fixed electrical load + demand. technologies: wind: performance_model: @@ -32,7 +32,6 @@ technologies: capex_per_kW: 1300 opex_per_kW_per_year: 39 cost_year: 2022 - solar: performance_model: model: PYSAMSolarPlantPerformanceModel @@ -40,7 +39,7 @@ technologies: model: ATBUtilityPVCostModel model_inputs: performance_parameters: - pv_capacity_kWdc: 100000 #100 MWdc + pv_capacity_kWdc: 100000 # 100 MWdc dc_ac_ratio: 1.34 create_model_from: new tilt_angle_func: none @@ -61,7 +60,6 @@ technologies: capex_per_kWac: 1193 opex_per_kWac_per_year: 18 cost_year: 2024 - ng_feedstock: performance_model: model: FeedstockPerformanceModel @@ -70,15 +68,14 @@ technologies: model_inputs: shared_parameters: commodity: natural_gas - commodity_rate_units: "MMBtu/h" + commodity_rate_units: MMBtu/h performance_parameters: - rated_capacity: 750. #MMBtu + rated_capacity: 750. # MMBtu cost_parameters: cost_year: 2023 - price: 4.2 #USD/MMBtu + price: 4.2 # USD/MMBtu annual_cost: 0. start_up_cost: 0. - natural_gas_plant: performance_model: model: NaturalGasPerformanceModel @@ -87,22 +84,20 @@ technologies: model_inputs: shared_parameters: heat_rate_mmbtu_per_mwh: 7.5 # MMBtu/MWh - typical for NGCC - system_capacity_mw: 100. #MW + system_capacity_mw: 100. # MW cost_parameters: capex_per_kw: 1000 # $/kW - typical for NGCC fixed_opex_per_kw_per_year: 10.0 # $/kW/year variable_opex_per_mwh: 0.0 # $/MWh cost_year: 2023 - electrical_load_demand: - control_strategy: - model: DemandOpenLoopConverterController - model_inputs: - control_parameters: - commodity: electricity - commodity_rate_units: kW - demand_profile: 100000 #100 MW - + control_strategy: + model: DemandOpenLoopConverterController + model_inputs: + control_parameters: + commodity: electricity + commodity_rate_units: kW + demand_profile: 100000 # 100 MW combiner: performance_model: model: GenericCombinerPerformanceModel @@ -110,7 +105,6 @@ technologies: performance_parameters: commodity: electricity commodity_rate_units: kW - fin_combiner: performance_model: model: GenericCombinerPerformanceModel diff --git a/examples/24_solar_battery_grid/driver_config.yaml b/examples/24_solar_battery_grid/driver_config.yaml index 4a7bca28f..8e0dc2cdf 100644 --- a/examples/24_solar_battery_grid/driver_config.yaml +++ b/examples/24_solar_battery_grid/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs solar and battery storage systems with buying and selling electricity to the grid" - +name: driver_config +description: This analysis runs solar and battery storage systems with buying and selling electricity to the grid general: folder_output: outputs diff --git a/examples/24_solar_battery_grid/plant_config.yaml b/examples/24_solar_battery_grid/plant_config.yaml index 87468ce4d..f9dd733d6 100644 --- a/examples/24_solar_battery_grid/plant_config.yaml +++ b/examples/24_solar_battery_grid/plant_config.yaml @@ -1,20 +1,16 @@ -name: "plant_config" -description: "This plant is located in Texas" - +name: plant_config +description: This plant is located in Texas sites: site: latitude: 32.34 longitude: -98.27 - resources: solar_resource: - resource_model: "GOESAggregatedSolarAPI" + resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2013 - resource_dir: "../11_hybrid_energy_plant/tech_inputs/weather/solar" - resource_filename: "30.6617_-101.7096_psmv3_60_2013.csv" - - + resource_dir: ../11_hybrid_energy_plant/tech_inputs/weather/solar + resource_filename: 30.6617_-101.7096_psmv3_60_2013.csv # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. @@ -22,29 +18,27 @@ sites: # This example showcases using two separate grid instances: # - grid_buy: purchases electricity to meet unmet demand (upstream) # - grid_sell: sells excess electricity back to grid (downstream) -technology_interconnections: [ - ["solar", "battery", "electricity", "cable"], # connect solar to battery - ["battery", "grid_buy", ["electricity_unmet_demand", "electricity_demand"]], # connect battery demand to grid buying - ["battery", "grid_sell", ["electricity_unused_commodity", "electricity_in"]], # connect battery surplus to grid selling - ["solar", "combiner", "electricity", "cable"], - ["grid_buy","combiner","electricity","cable"], -] - -resource_to_tech_connections: [ +technology_interconnections: + - [solar, battery, electricity, cable] + # connect solar to battery + - [battery, grid_buy, [electricity_unmet_demand, electricity_demand]] + # connect battery demand to grid buying + - [battery, grid_sell, [electricity_unused_commodity, electricity_in]] + # connect battery surplus to grid selling + - [solar, combiner, electricity, cable] + - [grid_buy, combiner, electricity, cable] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.solar_resource', 'solar', 'solar_resource_data'], -] - + - [site.solar_resource, solar, solar_resource_data] plant: plant_life: 30 simulation: n_timesteps: 8760 - finance_parameters: finance_groups: profast_model: - commodity: "electricity" - finance_model: "ProFastLCO" + commodity: electricity + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 @@ -57,20 +51,20 @@ finance_parameters: capital_gains_tax_rate: 0.15 sales_tax_rate: 0.07375 debt_interest_rate: 0.07 - debt_type: "Revolving debt" + debt_type: Revolving debt loan_period_if_used: 0 cash_onhand_months: 1 admin_expense: 0.00 capital_items: - depr_type: "MACRS" - depr_period: 5 - refurb: [0.] + depr_type: MACRS + depr_period: 5 + refurb: [0.] cost_adjustment_parameters: cost_year_adjustment_inflation: 0.025 target_dollar_year: 2022 finance_subgroups: renewables: - commodity: "electricity" - commodity_stream: "combiner" - finance_groups: ["profast_model"] - technologies: ["solar", "battery", "grid_buy", "grid_sell"] + commodity: electricity + commodity_stream: combiner + finance_groups: [profast_model] + technologies: [solar, battery, grid_buy, grid_sell] diff --git a/examples/24_solar_battery_grid/solar_battery_grid.yaml b/examples/24_solar_battery_grid/solar_battery_grid.yaml index 7efd3cef4..d56686450 100644 --- a/examples/24_solar_battery_grid/solar_battery_grid.yaml +++ b/examples/24_solar_battery_grid/solar_battery_grid.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "This reference plant firms using the grid" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference plant firms using the grid +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/24_solar_battery_grid/tech_config.yaml b/examples/24_solar_battery_grid/tech_config.yaml index 1d8211c88..06265e00d 100644 --- a/examples/24_solar_battery_grid/tech_config.yaml +++ b/examples/24_solar_battery_grid/tech_config.yaml @@ -1,18 +1,17 @@ -name: "technology_config" -description: "This plant produces electricity from natural gas using a combined cycle turbine" - +name: technology_config +description: This plant produces electricity from natural gas using a combined cycle turbine technologies: solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBUtilityPVCostModel" + model: ATBUtilityPVCostModel model_inputs: performance_parameters: - pv_capacity_kWdc: 200000 #200 MWdc + pv_capacity_kWdc: 200000 # 200 MWdc dc_ac_ratio: 1.34 - create_model_from: "new" - tilt_angle_func: "none" + create_model_from: new + tilt_angle_func: none tilt: 0 pysam_options: SystemDesign: @@ -32,15 +31,15 @@ technologies: cost_year: 2024 battery: performance_model: - model: "SimpleGenericStorage" + model: SimpleGenericStorage cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel control_strategy: - model: "DemandOpenLoopStorageController" + model: DemandOpenLoopStorageController model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW max_charge_rate: 25000.0 # kW/time step, 25 MW max_capacity: 200000.0 # kWh, 200 MWh control_parameters: @@ -48,46 +47,46 @@ technologies: min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.1 # percent as decimal max_discharge_rate: 25000.0 # kW/time step - charge_efficiency: 1.0 # percent as decimal - discharge_efficiency: 1.0 # percent as decimal - demand_profile: 100000 #kW, 100 MW + charge_efficiency: 1.0 # percent as decimal + discharge_efficiency: 1.0 # percent as decimal + demand_profile: 100000 # kW, 100 MW cost_parameters: cost_year: 2022 - energy_capex: 300 # $/kWh - power_capex: 100 # $/kW - opex_fraction: 0.05 # percent of capex + energy_capex: 300 # $/kWh + power_capex: 100 # $/kW + opex_fraction: 0.05 # percent of capex grid_buy: performance_model: - model: "GridPerformanceModel" + model: GridPerformanceModel cost_model: - model: "GridCostModel" + model: GridCostModel model_inputs: shared_parameters: interconnection_size: 1.e6 # kW cost_parameters: cost_year: 2022 - electricity_buy_price: 0.10 # $/kWh - only buying, no selling + electricity_buy_price: 0.10 # $/kWh - only buying, no selling interconnection_capex_per_kw: 0.0 # $/kW capital cost interconnection_opex_per_kw: 0.0 # $/kW/year O&M cost fixed_interconnection_cost: 0.0 # $ one-time fixed cost grid_sell: performance_model: - model: "GridPerformanceModel" + model: GridPerformanceModel cost_model: - model: "GridCostModel" + model: GridCostModel model_inputs: shared_parameters: interconnection_size: 1.e6 # kW cost_parameters: cost_year: 2022 - electricity_sell_price: 0.0 # $/kWh - only selling, no buying + electricity_sell_price: 0.0 # $/kWh - only selling, no buying interconnection_capex_per_kw: 0.0 # $/kW capital cost interconnection_opex_per_kw: 0.0 # $/kW/year O&M cost fixed_interconnection_cost: 0.0 # $ one-time fixed cost combiner: performance_model: - model: "GenericCombinerPerformanceModel" + model: GenericCombinerPerformanceModel model_inputs: performance_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW diff --git a/examples/25_sizing_modes/driver_config.yaml b/examples/25_sizing_modes/driver_config.yaml index 0dddecc96..f5fa3c42d 100644 --- a/examples/25_sizing_modes/driver_config.yaml +++ b/examples/25_sizing_modes/driver_config.yaml @@ -1,39 +1,33 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to match the first example in H2Integrate" - +name: driver_config +description: This analysis runs a hybrid plant to match the first example in H2Integrate general: folder_output: outputs - - driver: optimization: - flag: False + flag: false solver: COBYLA tol: 0.01 catol: 15000 max_iter: 100 rhobeg: 0.1 - debug_print: True - + debug_print: true design_variables: electrolyzer: max_feedstock_ratio: - flag: False + flag: false lower: 0.1 upper: 10. units: unitless ammonia: max_feedstock_ratio: - flag: False + flag: false lower: 0.1 upper: 10. units: unitless - objective: name: finance_subgroup_nh3.LCOA - recorder: - flag: False - file: "size_mode_example.sql" - includes: ["*"] - excludes: ["wind_resource.wind_resource_data"] + flag: false + file: size_mode_example.sql + includes: ['*'] + excludes: [wind_resource.wind_resource_data] diff --git a/examples/25_sizing_modes/plant_config.yaml b/examples/25_sizing_modes/plant_config.yaml index ef0035ef2..fa237f4af 100644 --- a/examples/25_sizing_modes/plant_config.yaml +++ b/examples/25_sizing_modes/plant_config.yaml @@ -1,55 +1,50 @@ -name: "plant_config" -description: "This plant is located in MN, USA..." - +name: plant_config +description: This plant is located in MN, USA... sites: site: latitude: 47.5233 longitude: -92.5366 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["hopp","electrolyzer","electricity","cable"], - ["electrolyzer", "ammonia", "hydrogen", "pipe"], - ["n2_feedstock", "ammonia", "nitrogen", "pipe"], - ["electricity_feedstock", "ammonia", "electricity", "cable"], -] - +technology_interconnections: + - [hopp, electrolyzer, electricity, cable] + - [electrolyzer, ammonia, hydrogen, pipe] + - [n2_feedstock, ammonia, nitrogen, pipe] + - [electricity_feedstock, ammonia, electricity, cable] plant: plant_life: 30 - finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for real analysis - discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for real analysis + discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 7 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 7 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: h2: - commodity: "hydrogen" - technologies: ["hopp", "electrolyzer"] + commodity: hydrogen + technologies: [hopp, electrolyzer] nh3: - commodity: "ammonia" - technologies: ["hopp", "electrolyzer", "ammonia"] + commodity: ammonia + technologies: [hopp, electrolyzer, ammonia] diff --git a/examples/25_sizing_modes/tech_config.yaml b/examples/25_sizing_modes/tech_config.yaml index d31ee8e77..5cf9db6b2 100644 --- a/examples/25_sizing_modes/tech_config.yaml +++ b/examples/25_sizing_modes/tech_config.yaml @@ -1,54 +1,52 @@ -name: "technology_config" -description: "This hybrid plant produces ammonia" - +name: technology_config +description: This hybrid plant produces ammonia technologies: electrolyzer: performance_model: - model: "ECOElectrolyzerPerformanceModel" + model: ECOElectrolyzerPerformanceModel cost_model: - model: "SingliticoCostModel" + model: SingliticoCostModel model_inputs: shared_parameters: - location: "onshore" - electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) + location: onshore + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - size_mode: "normal" + size_mode: normal n_clusters: 16 cluster_rating_MW: 40 - pem_control_type: 'basic' - eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 80000 #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW - + pem_control_type: basic + eol_eff_percent_loss: 10 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000 # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: capital_items: - depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - replacement_cost_percent: 0.15 # percent of capex - H2A default case + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case hopp: performance_model: - model: "HOPPComponent" + model: HOPPComponent cost_model: - model: "HOPPComponent" + model: HOPPComponent model_inputs: shared_parameters: cost_year: 2019 performance_parameters: - cache_dir: "cache" - enable_caching: True + cache_dir: cache + enable_caching: true hopp_config: !include tech_inputs/hopp_config_tx.yaml - electrolyzer_rating: 640. # MW + electrolyzer_rating: 640. # MW n2_feedstock: performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "nitrogen" - commodity_rate_units: "t/h" + commodity: nitrogen + commodity_rate_units: t/h performance_parameters: - rated_capacity: 50.0 #metric tonnes of N2/hour + rated_capacity: 50.0 # metric tonnes of N2/hour cost_parameters: cost_year: 2022 price: 0.0 @@ -56,15 +54,15 @@ technologies: start_up_cost: 0.0 electricity_feedstock: performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "MW" + commodity: electricity + commodity_rate_units: MW performance_parameters: - rated_capacity: 29.0 #MW of electricity + rated_capacity: 29.0 # MW of electricity cost_parameters: cost_year: 2022 price: 0.0 @@ -72,16 +70,16 @@ technologies: start_up_cost: 0.0 ammonia: performance_model: - model: "AmmoniaSynLoopPerformanceModel" + model: AmmoniaSynLoopPerformanceModel cost_model: - model: "AmmoniaSynLoopCostModel" - model_inputs: # See converters/ammonia/Ammonia cost breakdown-ANL source.xlsx + model: AmmoniaSynLoopCostModel + model_inputs: # See converters/ammonia/Ammonia cost breakdown-ANL source.xlsx shared_parameters: production_capacity: 52777.6 catalyst_consumption_rate: 0.000091295354067341 catalyst_replacement_interval: 3 performance_parameters: - size_mode: "normal" + size_mode: normal capacity_factor: 0.9 energy_demand: 0.530645243 heat_output: 0.8299956 @@ -102,8 +100,8 @@ technologies: base_cost_year: 2016 capex_scaling_exponent: 0.6 labor_scaling_exponent: 0.25 - asu_capex_base: 236920646 # See ASU + HB capex-NETL source.xlsx - synloop_capex_base: 302460908 # See ASU + HB capex-NETL source.xlsx + asu_capex_base: 236920646 # See ASU + HB capex-NETL source.xlsx + synloop_capex_base: 302460908 # See ASU + HB capex-NETL source.xlsx heat_capex_base: 7069100 cool_capex_base: 4799200 other_eqpt_capex_base: 0.001 diff --git a/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml b/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml index cb0320449..71d06343d 100644 --- a/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml +++ b/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml @@ -1,4 +1,4 @@ -site: #!include flatirons_site.yaml +site: #!include flatirons_site.yaml data: lat: 32.31714 lon: -100.18 @@ -16,19 +16,19 @@ site: #!include flatirons_site.yaml - [0.0, 20000.0] - [20000.0, 20000.0] - [20000.0, 0.0] - solar_resource_file: "../11_hybrid_energy_plant/tech_inputs/weather/solar/30.6617_-101.7096_psmv3_60_2013.csv" - wind_resource_file: "../11_hybrid_energy_plant/tech_inputs/weather/wind/30.6617_-101.7096_windtoolkit_2013_60min_80m_100m.srw" - wave_resource_file: "" - grid_resource_file: "" + solar_resource_file: ../11_hybrid_energy_plant/tech_inputs/weather/solar/30.6617_-101.7096_psmv3_60_2013.csv + wind_resource_file: ../11_hybrid_energy_plant/tech_inputs/weather/wind/30.6617_-101.7096_windtoolkit_2013_60min_80m_100m.srw + wave_resource_file: '' + grid_resource_file: '' hub_height: 115.0 capacity_hours: [] solar: true wind: true wave: false - wind_resource_origin: "WTK" + wind_resource_origin: WTK technologies: wind: - num_turbines: 148 # 175 + num_turbines: 148 # 175 turbine_rating_kw: 6000.0 operational_losses: 10.49 model_name: pysam @@ -52,31 +52,56 @@ technologies: om_replacement_cost_escal: 0 system_use_lifetime_output: 0 financial_parameters: - inflation_rate: 0.0 # real basis - real_discount_rate: 6.3 # real return based on 2024 ATB baseline workbook for land-based wind. - federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates - state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation - property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ - insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf - debt_percent: 72.4 # based on 2024 ATB for land-based wind - term_int_rate: 4.4 # based on 2024 ATB real interest rate for land-based onshore wind + inflation_rate: 0.0 # real basis + real_discount_rate: 6.3 # real return based on 2024 ATB baseline workbook for land-based wind. + federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates + state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation + property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + debt_percent: 72.4 # based on 2024 ATB for land-based wind + term_int_rate: 4.4 # based on 2024 ATB real interest rate for land-based onshore wind months_working_reserve: 1 analysis_start_year: 2030 installation_months: 36 - sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ - admin_expense_percent_of_sales: 0.0 # H2FAST default - capital_gains_tax_rate: 15.0 # H2FAST default - debt_type: "Revolving debt" # H2FAST default - depreciation_method: "MACRS" - depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ + admin_expense_percent_of_sales: 0.0 # H2FAST default + capital_gains_tax_rate: 15.0 # H2FAST default + debt_type: Revolving debt # H2FAST default + depreciation_method: MACRS + depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 cp_capacity_credit_percent: [0] degradation: [0] revenue: - ppa_price_input: [0.0] # cents/kWh - ppa_escalation: 0 # % + ppa_price_input: [0.0] # cents/kWh + ppa_escalation: 0 # % pv: - system_capacity_kw: 400000 # 750500 - 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] + system_capacity_kw: 400000 # 750500 + 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: battery_system: batt_replacement_schedule_percent: [0] @@ -95,31 +120,31 @@ technologies: om_replacement_cost_escal: 0 system_use_lifetime_output: 0 financial_parameters: - inflation_rate: 0.0 # real basis - real_discount_rate: 5.9 # real return based on 2024 ATB baseline for utility-scale PV - federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates - state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation - property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ - insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf - debt_percent: 75.3 # based on 2024 ATB for utility-scale pv solar - term_int_rate: 4.4 # based on 2024 ATB real interest rate for utility-scale pv solar + inflation_rate: 0.0 # real basis + real_discount_rate: 5.9 # real return based on 2024 ATB baseline for utility-scale PV + federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates + state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation + property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + debt_percent: 75.3 # based on 2024 ATB for utility-scale pv solar + term_int_rate: 4.4 # based on 2024 ATB real interest rate for utility-scale pv solar months_working_reserve: 1 analysis_start_year: 2030 installation_months: 36 - sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ - admin_expense_percent_of_sales: 0.0 # H2FAST default - capital_gains_tax_rate: 15.0 # H2FAST default - debt_type: "Revolving debt" # H2FAST default - depreciation_method: "MACRS" - depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ + admin_expense_percent_of_sales: 0.0 # H2FAST default + capital_gains_tax_rate: 15.0 # H2FAST default + debt_type: Revolving debt # H2FAST default + depreciation_method: MACRS + depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 cp_capacity_credit_percent: [0] degradation: [0] revenue: - ppa_price_input: [0.0] # cents/kWh - ppa_escalation: 0 # % + ppa_price_input: [0.0] # cents/kWh + ppa_escalation: 0 # % battery: - system_capacity_kwh: 96 # 375750 - system_capacity_kw: 96 # 375750 + system_capacity_kwh: 96 # 375750 + system_capacity_kw: 96 # 375750 minimum_SOC: 20.0 maximum_SOC: 100.0 initial_SOC: 90.0 @@ -141,30 +166,30 @@ technologies: om_replacement_cost_escal: 0 system_use_lifetime_output: 0 financial_parameters: - inflation_rate: 0.0 # real basis - real_discount_rate: 6.6 # real return based on 2024 ATB baseline for utility-scale battery - federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates - state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation - property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ - insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf - debt_percent: 75.4 # based on 2024 ATB for utility-scale pv plus battery - term_int_rate: 4.4 # based on 2024 ATB real interest rate for utility-scale battery + inflation_rate: 0.0 # real basis + real_discount_rate: 6.6 # real return based on 2024 ATB baseline for utility-scale battery + federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates + state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation + property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + debt_percent: 75.4 # based on 2024 ATB for utility-scale pv plus battery + term_int_rate: 4.4 # based on 2024 ATB real interest rate for utility-scale battery months_working_reserve: 1 analysis_start_year: 2030 installation_months: 36 - sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ - admin_expense_percent_of_sales: 0.0 # H2FAST default - capital_gains_tax_rate: 15.0 # H2FAST default - debt_type: "Revolving debt" # H2FAST default - depreciation_method: "MACRS" - depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ + admin_expense_percent_of_sales: 0.0 # H2FAST default + capital_gains_tax_rate: 15.0 # H2FAST default + debt_type: Revolving debt # H2FAST default + depreciation_method: MACRS + depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 cp_capacity_credit_percent: [0] degradation: [0] revenue: - ppa_price_input: [0.0] # cents/kWh - ppa_escalation: 0 # % + ppa_price_input: [0.0] # cents/kWh + ppa_escalation: 0 # % grid: - interconnect_kw: 2000000 # Set higher than rated generation capacity + interconnect_kw: 2000000 # Set higher than rated generation capacity fin_model: battery_system: batt_replacement_schedule_percent: [0] @@ -183,46 +208,45 @@ technologies: om_replacement_cost_escal: 0 system_use_lifetime_output: 0 financial_parameters: - inflation_rate: 0.0 # real basis - real_discount_rate: 6.3 # real return based on 2024 ATB baseline workbook for land-based wind. - federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates - state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation - property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ - insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf - debt_percent: 72.4 # based on 2024 ATB for land-based wind - term_int_rate: 4.4 # based on 2024 ATB real interest rate for land-based onshore wind + inflation_rate: 0.0 # real basis + real_discount_rate: 6.3 # real return based on 2024 ATB baseline workbook for land-based wind. + federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates + state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation + property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + debt_percent: 72.4 # based on 2024 ATB for land-based wind + term_int_rate: 4.4 # based on 2024 ATB real interest rate for land-based onshore wind months_working_reserve: 1 analysis_start_year: 2030 installation_months: 36 - sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ - admin_expense_percent_of_sales: 0.0 # H2FAST default - capital_gains_tax_rate: 15.0 # H2FAST default - debt_type: "Revolving debt" # H2FAST default - depreciation_method: "MACRS" - depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ + admin_expense_percent_of_sales: 0.0 # H2FAST default + capital_gains_tax_rate: 15.0 # H2FAST default + debt_type: Revolving debt # H2FAST default + depreciation_method: MACRS + depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 cp_capacity_credit_percent: [0] degradation: [0] revenue: - ppa_price_input: [0.0] # cents/kWh - ppa_escalation: 0 # % - + ppa_price_input: [0.0] # cents/kWh + ppa_escalation: 0 # % config: simulation_options: cache: true wind: skip_financial: false dispatch_options: - battery_dispatch: load_following_heuristic # load_following_heuristic #heuristic + 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: - wind_installed_cost_mw: 1380000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for land-based wind. 2025 used as an overnight-capex lock-in date for 2030 operation - solar_installed_cost_mw: 1323000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for utility-scale pv. 2025 used as an overnight-capex lock-in date for 2030 operation - storage_installed_cost_mwh: 310000 # (2022USD) 2025 battery costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation - storage_installed_cost_mw: 311000 # (2022USD) 2025 battery costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation - wind_om_per_kw: 29 # (2022USD) 2030 costs in 2022 USD from 2024 ATB for land-based wind - pv_om_per_kw: 18 # (2022USD) 2030 costs in 2022 USD from NREL 2024 ATB for utility-scale PV - battery_om_per_kw: 15.525 # (2022USD) based on 2.5 percent of battery capex/kW for a 1-hour battery using both power and energy costs above + wind_installed_cost_mw: 1380000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for land-based wind. 2025 used as an overnight-capex lock-in date for 2030 operation + solar_installed_cost_mw: 1323000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for utility-scale pv. 2025 used as an overnight-capex lock-in date for 2030 operation + storage_installed_cost_mwh: 310000 # (2022USD) 2025 battery costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation + storage_installed_cost_mw: 311000 # (2022USD) 2025 battery costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation + wind_om_per_kw: 29 # (2022USD) 2030 costs in 2022 USD from 2024 ATB for land-based wind + pv_om_per_kw: 18 # (2022USD) 2030 costs in 2022 USD from NREL 2024 ATB for utility-scale PV + battery_om_per_kw: 15.525 # (2022USD) based on 2.5 percent of battery capex/kW for a 1-hour battery using both power and energy costs above diff --git a/examples/26_floris/driver_config.yaml b/examples/26_floris/driver_config.yaml index aff911d3b..68de33572 100644 --- a/examples/26_floris/driver_config.yaml +++ b/examples/26_floris/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a wind plant using FLORIS" - +name: driver_config +description: This analysis runs a wind plant using FLORIS general: folder_output: floris_wind_outputs diff --git a/examples/26_floris/plant_config.yaml b/examples/26_floris/plant_config.yaml index 533901a2b..301bd7508 100644 --- a/examples/26_floris/plant_config.yaml +++ b/examples/26_floris/plant_config.yaml @@ -1,37 +1,32 @@ -name: "plant_config" -description: "" - +name: plant_config +description: '' sites: - distributed_wind_site: #name of the site for the distributed_wind_plant technology + distributed_wind_site: # name of the site for the distributed_wind_plant technology latitude: 44.04218 longitude: -95.19757 resources: - wind_resource: #name of the resource model for this site - resource_model: "OpenMeteoHistoricalWindResource" + wind_resource: # name of the resource model for this site + resource_model: OpenMeteoHistoricalWindResource resource_parameters: resource_year: 2023 timezone: -6 - utility_wind_site: #name of the site for the utility_wind_plant technology + utility_wind_site: # name of the site for the utility_wind_plant technology latitude: 35.2018863 longitude: -101.945027 resources: - wind_resource: #name of the resource model for this site - resource_model: "WTKNRELDeveloperAPIWindResource" + wind_resource: # name of the resource model for this site + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - -technology_interconnections: [ - ["utility_wind_plant", "combiner", "electricity", "cable"], #source_tech, dest_tech, transport_item, transport_type = connection - ["distributed_wind_plant", "combiner", "electricity", "cable"], -] - -resource_to_tech_connections: [ +technology_interconnections: + - [utility_wind_plant, combiner, electricity, cable] + # source_tech, dest_tech, transport_item, transport_type = connection + - [distributed_wind_plant, combiner, electricity, cable] +resource_to_tech_connections: # connect the wind resource at the distributed_wind_site to the distributed_wind_plant technology - ['distributed_wind_site.wind_resource', 'distributed_wind_plant', 'wind_resource_data'], + - [distributed_wind_site.wind_resource, distributed_wind_plant, wind_resource_data] # connect the wind resource at the utility_wind_site to the utility_wind_plant technology - ['utility_wind_site.wind_resource', 'utility_wind_plant', 'wind_resource_data'], -] - + - [utility_wind_site.wind_resource, utility_wind_plant, wind_resource_data] plant: plant_life: 30 simulation: @@ -39,40 +34,40 @@ plant: dt: 3600 finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 debt_equity_ratio: 2.62 - property_tax_and_insurance: 0.03 # percent of CAPEX + property_tax_and_insurance: 0.03 # percent of CAPEX total_income_tax_rate: 0.257 - capital_gains_tax_rate: 0.15 # H2FAST default + capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 debt_interest_rate: 0.07 - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 7 #years + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 7 # years refurb: [0.] finance_subgroups: distributed: - commodity: "electricity" - commodity_stream: "distributed_wind_plant" #use the total electricity output from the combiner for the finance calc - technologies: ["distributed_wind_plant"] + commodity: electricity + commodity_stream: distributed_wind_plant # use the total electricity output from the combiner for the finance calc + technologies: [distributed_wind_plant] utility: - commodity: "electricity" - commodity_stream: "utility_wind_plant" #use the total electricity output from the combiner for the finance calc - technologies: ["utility_wind_plant"] + commodity: electricity + commodity_stream: utility_wind_plant # use the total electricity output from the combiner for the finance calc + technologies: [utility_wind_plant] total_electricity: - commodity: "electricity" - commodity_stream: "combiner" #use the total electricity output from the combiner for the finance calc - technologies: ["distributed_wind_plant", "utility_wind_plant"] + commodity: electricity + commodity_stream: combiner # use the total electricity output from the combiner for the finance calc + technologies: [distributed_wind_plant, utility_wind_plant] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/26_floris/tech_config.yaml b/examples/26_floris/tech_config.yaml index 2a3b5533f..51c6700df 100644 --- a/examples/26_floris/tech_config.yaml +++ b/examples/26_floris/tech_config.yaml @@ -1,32 +1,31 @@ -name: "technology_config" -description: "This plant runs a wind farm using FLORIS" - +name: technology_config +description: This plant runs a wind farm using FLORIS technologies: distributed_wind_plant: performance_model: - model: "FlorisWindPlantPerformanceModel" + model: FlorisWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: - num_turbines: 100 #number of turbines in the farm - hub_height: 65.0 # turbine hub-height - operational_losses: 12.83 #percentage of non-wake losses + num_turbines: 100 # number of turbines in the farm + hub_height: 65.0 # turbine hub-height + operational_losses: 12.83 # percentage of non-wake losses floris_wake_config: !include "floris_v4_default_template.yaml" #floris wake model file floris_turbine_config: !include "floris_turbine_Vestas_660kW.yaml" #turbine model file formatted for floris - resource_data_averaging_method: "weighted_average" #"weighted_average", "average" or "nearest" - operation_model: "cosine-loss" #turbine operation model + resource_data_averaging_method: weighted_average #"weighted_average", "average" or "nearest" + operation_model: cosine-loss # turbine operation model default_turbulence_intensity: 0.06 - enable_caching: True #whether to use cached results - cache_dir: "cache" #directory to save or load cached data + enable_caching: true # whether to use cached results + cache_dir: cache # directory to save or load cached data layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 5.0 turbine_D_spacing: 5.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1472.0 opex_per_kW_per_year: 32 diff --git a/examples/27_site_doe_diff/27_wind_solar_site_doe.yaml b/examples/27_site_doe_diff/27_wind_solar_site_doe.yaml index 18a46333b..00b571660 100644 --- a/examples/27_site_doe_diff/27_wind_solar_site_doe.yaml +++ b/examples/27_site_doe_diff/27_wind_solar_site_doe.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "Run DOE over solar capacities and site locations" - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: Run DOE over solar capacities and site locations +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/27_site_doe_diff/driver_config.yaml b/examples/27_site_doe_diff/driver_config.yaml index 0a066f788..8a62040c8 100644 --- a/examples/27_site_doe_diff/driver_config.yaml +++ b/examples/27_site_doe_diff/driver_config.yaml @@ -1,6 +1,5 @@ description: Driver config for CSVGen design of experiments name: driver_config - general: folder_output: ex_27_out create_om_reports: false @@ -8,8 +7,8 @@ driver: design_of_experiments: flag: true debug_print: false - generator: "csvgen" - filename: "site_wind_solar_doe.csv" + generator: csvgen + filename: site_wind_solar_doe.csv run_parallel: false design_variables: solar: @@ -17,35 +16,34 @@ design_variables: flag: true lower: 5000.0 upper: 5000000.0 - units: "kW" + units: kW wind_site.wind_resource: latitude: - flag: True - units: "deg" + flag: true + units: deg lower: -90.0 upper: 90.0 longitude: - flag: True - units: "deg" + flag: true + units: deg lower: -180.0 upper: 180.0 solar_site.solar_resource: latitude: - flag: True - units: "deg" + flag: true + units: deg lower: -90.0 upper: 90.0 longitude: - flag: True - units: "deg" + flag: true + units: deg lower: -180.0 upper: 180.0 - objective: name: finance_subgroup_electricity.LCOE recorder: - file: cases.sql - overwrite_recorder: true - flag: true - includes: ['*'] - excludes: ['*river_resource_data'] + file: cases.sql + overwrite_recorder: true + flag: true + includes: ['*'] + excludes: ['*river_resource_data'] diff --git a/examples/27_site_doe_diff/plant_config.yaml b/examples/27_site_doe_diff/plant_config.yaml index fd626df98..9a4d7256b 100644 --- a/examples/27_site_doe_diff/plant_config.yaml +++ b/examples/27_site_doe_diff/plant_config.yaml @@ -1,54 +1,48 @@ -name: "plant_config" -description: "This plant uses solar resource data from 2012" - +name: plant_config +description: This plant uses solar resource data from 2012 sites: - wind_site: #name of the site for the wind technology + wind_site: # name of the site for the wind technology latitude: 35.2018863 longitude: -101.945027 resources: - wind_resource: #name of the resource model for the wind_site - resource_model: "WTKNRELDeveloperAPIWindResource" + wind_resource: # name of the resource model for the wind_site + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - use_fixed_resource_location: False #set to False so the resource data is updated when the site location changes in the design sweep - solar_site: #name of the site for the solar technology + use_fixed_resource_location: false # set to False so the resource data is updated when the site location changes in the design sweep + solar_site: # name of the site for the solar technology latitude: 34.22 longitude: -102.75 resources: - solar_resource: #name of the resource model for the solar_site - resource_model: "GOESAggregatedSolarAPI" + solar_resource: # name of the resource model for the solar_site + resource_model: GOESAggregatedSolarAPI resource_parameters: resource_year: 2012 - use_fixed_resource_location: False #set to False so the resource data is updated when the site location changes in the design sweep - -resource_to_tech_connections: [ + use_fixed_resource_location: false # set to False so the resource data is updated when the site location changes in the design sweep +resource_to_tech_connections: # connect the wind resource to the wind technology - ['wind_site.wind_resource', 'wind', 'wind_resource_data'], + - [wind_site.wind_resource, wind, wind_resource_data] # connect the solar resource to the solar technology - ['solar_site.solar_resource', 'solar', 'solar_resource_data'], -] - -technology_interconnections: [ - ["wind", "combiner", "electricity", "cable"], #source_tech, dest_tech, transport_item, transport_type = connection - ["solar", "combiner", "electricity", "cable"], -] - + - [solar_site.solar_resource, solar, solar_resource_data] +technology_interconnections: + - [wind, combiner, electricity, cable] + # source_tech, dest_tech, transport_item, transport_type = connection + - [solar, combiner, electricity, cable] plant: plant_life: 30 simulation: n_timesteps: 8760 dt: 3600 timezone: 0 - finance_parameters: finance_groups: optimistic: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.0615 debt_equity_ratio: 2.82 property_tax_and_insurance: 0.015 @@ -56,31 +50,30 @@ finance_parameters: capital_gains_tax_rate: 0.15 sales_tax_rate: 0.00 debt_interest_rate: 0.0439 - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan" + debt_type: Revolving debt # can be "Revolving debt" or "One time loan" loan_period_if_used: 0 # Not used for "Revolving debt" cash_onhand_months: 1 - admin_expense: 0.00 # percent of sales + admin_expense: 0.00 # percent of sales capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years refurb: [0.] - finance_subgroups: solar: - commodity: "electricity" - commodity_stream: "solar" - finance_groups: ["optimistic"] - technologies: ["solar"] + commodity: electricity + commodity_stream: solar + finance_groups: [optimistic] + technologies: [solar] wind: - commodity: "electricity" - commodity_stream: "wind" - finance_groups: ["optimistic"] - technologies: ["wind"] + commodity: electricity + commodity_stream: wind + finance_groups: [optimistic] + technologies: [wind] electricity: - commodity: "electricity" - commodity_stream: "combiner" - finance_groups: ["optimistic"] - technologies: ["wind","solar"] + commodity: electricity + commodity_stream: combiner + finance_groups: [optimistic] + technologies: [wind, solar] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/27_site_doe_diff/tech_config.yaml b/examples/27_site_doe_diff/tech_config.yaml index 44306a84a..381129e5a 100644 --- a/examples/27_site_doe_diff/tech_config.yaml +++ b/examples/27_site_doe_diff/tech_config.yaml @@ -1,45 +1,44 @@ -name: "technology_config" -description: "This plant produces electricity from a solar-PV system" - +name: technology_config +description: This plant produces electricity from a solar-PV system technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel model_inputs: performance_parameters: num_turbines: 100 turbine_rating_kw: 6000 rotor_diameter: 170. hub_height: 115. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include pysam_options_6MW.yaml - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 7.0 turbine_D_spacing: 7.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 45 cost_year: 2019 solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBUtilityPVCostModel" + model: ATBUtilityPVCostModel model_inputs: performance_parameters: pv_capacity_kWdc: 400000 dc_ac_ratio: 1.34 - create_model_from: "new" - tilt_angle_func: "lat-func" + create_model_from: new + tilt_angle_func: lat-func pysam_options: SystemDesign: gcr: 0.3 @@ -53,13 +52,13 @@ technologies: SolarResource: albedo_default: 0.2 cost_parameters: - capex_per_kWac: 1367 #2022 costs from ATB 2024 v3 - opex_per_kWac_per_year: 24 #2022 costs from ATB 2024 v3 + capex_per_kWac: 1367 # 2022 costs from ATB 2024 v3 + opex_per_kWac_per_year: 24 # 2022 costs from ATB 2024 v3 cost_year: 2022 combiner: performance_model: model: GenericCombinerPerformanceModel model_inputs: performance_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW diff --git a/examples/28_iron_map/driver_config.yaml b/examples/28_iron_map/driver_config.yaml index 3bf03b33c..1cf9ebc1f 100644 --- a/examples/28_iron_map/driver_config.yaml +++ b/examples/28_iron_map/driver_config.yaml @@ -1,47 +1,42 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to match the first example in H2Integrate" - +name: driver_config +description: This analysis runs a hybrid plant to match the first example in H2Integrate general: folder_output: outputs - -general: - folder_output: ex_28_out - create_om_reports: false driver: design_of_experiments: flag: true debug_print: false - generator: "csvgen" - filename: "ned_reduced_sitelist.csv" - run_parallel: False + generator: csvgen + filename: ned_reduced_sitelist.csv + run_parallel: false design_variables: site: latitude: - flag: True - units: "deg" + flag: true + units: deg lower: -90.0 upper: 90.0 longitude: - flag: True - units: "deg" + flag: true + units: deg lower: -180.0 upper: 180.0 iron: LCOE: - flag: True - units: "USD/MW/h" + flag: true + units: USD/MW/h lower: 0 upper: 100 LCOH: - flag: True - units: "USD/kg" + flag: true + units: USD/kg lower: 0 upper: 10 objective: name: iron.LCOI recorder: - file: cases.sql - overwrite_recorder: true - flag: true - includes: ['site.latitude','site.longitude','iron.LCOI'] - excludes: ['*'] + file: cases.sql + overwrite_recorder: true + flag: true + includes: [site.latitude, site.longitude, iron.LCOI] + excludes: ['*'] diff --git a/examples/28_iron_map/iron_map.yaml b/examples/28_iron_map/iron_map.yaml index 33588912d..1a90e1342 100644 --- a/examples/28_iron_map/iron_map.yaml +++ b/examples/28_iron_map/iron_map.yaml @@ -1,7 +1,6 @@ -name: "H2Integrate_config" - -system_summary: "This reference hybrid plant is located in Minnesota and contains wind, solar, and battery storage technologies. The system is designed to produce hydrogen using an electrolyzer and also produce steel using a grid-connected plant." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This reference hybrid plant is located in Minnesota and contains wind, solar, and battery storage technologies. + The system is designed to produce hydrogen using an electrolyzer and also produce steel using a grid-connected plant. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/28_iron_map/plant_config.yaml b/examples/28_iron_map/plant_config.yaml index d403599f6..589985954 100644 --- a/examples/28_iron_map/plant_config.yaml +++ b/examples/28_iron_map/plant_config.yaml @@ -1,48 +1,44 @@ -name: "plant_config" -description: "This plant is located in MN, USA..." - +name: plant_config +description: This plant is located in MN, USA... sites: site: latitude: 41.717 longitude: -88.398 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ -] - +technology_interconnections: [] plant: plant_life: 30 finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: cost_year_adjustment_inflation: 0.025 target_dollar_year: 2022 finance_subgroups: iron: - commodity: "iron" - commodity_stream: "iron" - technologies: ["iron"] + commodity: iron + commodity_stream: iron + technologies: [iron] diff --git a/examples/28_iron_map/tech_config.yaml b/examples/28_iron_map/tech_config.yaml index ab784d379..18f331b4e 100644 --- a/examples/28_iron_map/tech_config.yaml +++ b/examples/28_iron_map/tech_config.yaml @@ -1,26 +1,24 @@ -name: "technology_config" -description: "This hybrid plant produces iron" - +name: technology_config +description: This hybrid plant produces iron technologies: iron: performance_model: model: IronComponent model_inputs: cost_parameters: - # h2_kgpy: 68583942.6460997 #1000000 #68583942.6460997 - LCOE: 58.02 #$/MWh - LCOH: 7.10 #$/kg - ROM_iron_site_name: "Hibbing" #"Hibbing", "Northshore", "United", "Minorca" or "Tilden" - iron_ore_product_selection: "drg_taconite_pellets" #"drg_taconite_pellets" or "std_taconite_pellets" - reduced_iron_product_selection: "h2_dri" #"h2_dri" or "ng_dri" - structural_iron_product_selection: "eaf_steel" #"eaf_steel" or "none" + # h2_kgpy: 68583942.6460997 # 1000000 # 68583942.6460997 + LCOE: 58.02 #$/MWh + LCOH: 7.10 #$/kg + ROM_iron_site_name: Hibbing #"Hibbing", "Northshore", "United", "Minorca" or "Tilden" + iron_ore_product_selection: drg_taconite_pellets #"drg_taconite_pellets" or "std_taconite_pellets" + reduced_iron_product_selection: h2_dri #"h2_dri" or "ng_dri" + structural_iron_product_selection: eaf_steel #"eaf_steel" or "none" cost_year: 2020 reduced_iron_site_latitude: 41.717 reduced_iron_site_longitude: -88.398 - transport_cost_included: True - ng_mod: False + transport_cost_included: true + ng_mod: false ng_price: 4 - capex_mod: False + capex_mod: false capex_mod_pct: 0 - # baseline 843.37604007 diff --git a/examples/29_wind_ard/ard_inputs/open-meteo-56.20N8.54E86m.yaml b/examples/29_wind_ard/ard_inputs/open-meteo-56.20N8.54E86m.yaml index 1ef72a319..72dde8a46 100644 --- a/examples/29_wind_ard/ard_inputs/open-meteo-56.20N8.54E86m.yaml +++ b/examples/29_wind_ard/ard_inputs/open-meteo-56.20N8.54E86m.yaml @@ -1,35047 +1,35047 @@ name: open-meteo-56.20N8.54E86m.csv wind_resource: time: - - '2023-01-01T00:00:00Z' - - '2023-01-01T01:00:00Z' - - '2023-01-01T02:00:00Z' - - '2023-01-01T03:00:00Z' - - '2023-01-01T04:00:00Z' - - '2023-01-01T05:00:00Z' - - '2023-01-01T06:00:00Z' - - '2023-01-01T07:00:00Z' - - '2023-01-01T08:00:00Z' - - '2023-01-01T09:00:00Z' - - '2023-01-01T10:00:00Z' - - '2023-01-01T11:00:00Z' - - '2023-01-01T12:00:00Z' - - '2023-01-01T13:00:00Z' - - '2023-01-01T14:00:00Z' - - '2023-01-01T15:00:00Z' - - '2023-01-01T16:00:00Z' - - '2023-01-01T17:00:00Z' - - '2023-01-01T18:00:00Z' - - '2023-01-01T19:00:00Z' - - '2023-01-01T20:00:00Z' - - '2023-01-01T21:00:00Z' - - '2023-01-01T22:00:00Z' - - '2023-01-01T23:00:00Z' - - '2023-01-02T00:00:00Z' - - '2023-01-02T01:00:00Z' - - '2023-01-02T02:00:00Z' - - '2023-01-02T03:00:00Z' - - '2023-01-02T04:00:00Z' - - '2023-01-02T05:00:00Z' - - '2023-01-02T06:00:00Z' - - '2023-01-02T07:00:00Z' - - '2023-01-02T08:00:00Z' - - '2023-01-02T09:00:00Z' - - '2023-01-02T10:00:00Z' - - '2023-01-02T11:00:00Z' - - '2023-01-02T12:00:00Z' - - '2023-01-02T13:00:00Z' - - '2023-01-02T14:00:00Z' - - '2023-01-02T15:00:00Z' - - '2023-01-02T16:00:00Z' - - '2023-01-02T17:00:00Z' - - '2023-01-02T18:00:00Z' - - '2023-01-02T19:00:00Z' - - '2023-01-02T20:00:00Z' - - '2023-01-02T21:00:00Z' - - '2023-01-02T22:00:00Z' - - '2023-01-02T23:00:00Z' - - '2023-01-03T00:00:00Z' - - '2023-01-03T01:00:00Z' - - '2023-01-03T02:00:00Z' - - '2023-01-03T03:00:00Z' - - '2023-01-03T04:00:00Z' - - '2023-01-03T05:00:00Z' - - '2023-01-03T06:00:00Z' - - '2023-01-03T07:00:00Z' - - '2023-01-03T08:00:00Z' - - '2023-01-03T09:00:00Z' - - '2023-01-03T10:00:00Z' - - '2023-01-03T11:00:00Z' - - '2023-01-03T12:00:00Z' - - '2023-01-03T13:00:00Z' - - '2023-01-03T14:00:00Z' - - '2023-01-03T15:00:00Z' - - '2023-01-03T16:00:00Z' - - '2023-01-03T17:00:00Z' - - '2023-01-03T18:00:00Z' - - '2023-01-03T19:00:00Z' - - '2023-01-03T20:00:00Z' - - '2023-01-03T21:00:00Z' - - '2023-01-03T22:00:00Z' - - '2023-01-03T23:00:00Z' - - '2023-01-04T00:00:00Z' - - '2023-01-04T01:00:00Z' - - '2023-01-04T02:00:00Z' - - '2023-01-04T03:00:00Z' - - '2023-01-04T04:00:00Z' - - '2023-01-04T05:00:00Z' - - '2023-01-04T06:00:00Z' - - '2023-01-04T07:00:00Z' - - '2023-01-04T08:00:00Z' - - '2023-01-04T09:00:00Z' - - '2023-01-04T10:00:00Z' - - '2023-01-04T11:00:00Z' - - '2023-01-04T12:00:00Z' - - '2023-01-04T13:00:00Z' - - '2023-01-04T14:00:00Z' - - '2023-01-04T15:00:00Z' - - '2023-01-04T16:00:00Z' - - '2023-01-04T17:00:00Z' - - '2023-01-04T18:00:00Z' - - '2023-01-04T19:00:00Z' - - '2023-01-04T20:00:00Z' - - '2023-01-04T21:00:00Z' - - '2023-01-04T22:00:00Z' - - '2023-01-04T23:00:00Z' - - '2023-01-05T00:00:00Z' - - '2023-01-05T01:00:00Z' - - '2023-01-05T02:00:00Z' - - '2023-01-05T03:00:00Z' - - '2023-01-05T04:00:00Z' - - '2023-01-05T05:00:00Z' - - '2023-01-05T06:00:00Z' - - '2023-01-05T07:00:00Z' - - '2023-01-05T08:00:00Z' - - '2023-01-05T09:00:00Z' - - '2023-01-05T10:00:00Z' - - '2023-01-05T11:00:00Z' - - '2023-01-05T12:00:00Z' - - '2023-01-05T13:00:00Z' - - '2023-01-05T14:00:00Z' - - '2023-01-05T15:00:00Z' - - '2023-01-05T16:00:00Z' - - '2023-01-05T17:00:00Z' - - '2023-01-05T18:00:00Z' - - '2023-01-05T19:00:00Z' - - '2023-01-05T20:00:00Z' - - '2023-01-05T21:00:00Z' - - '2023-01-05T22:00:00Z' - - '2023-01-05T23:00:00Z' - - '2023-01-06T00:00:00Z' - - '2023-01-06T01:00:00Z' - - '2023-01-06T02:00:00Z' - - '2023-01-06T03:00:00Z' - - '2023-01-06T04:00:00Z' - - '2023-01-06T05:00:00Z' - - '2023-01-06T06:00:00Z' - - '2023-01-06T07:00:00Z' - - '2023-01-06T08:00:00Z' - - '2023-01-06T09:00:00Z' - - '2023-01-06T10:00:00Z' - - '2023-01-06T11:00:00Z' - - '2023-01-06T12:00:00Z' - - '2023-01-06T13:00:00Z' - - '2023-01-06T14:00:00Z' - - '2023-01-06T15:00:00Z' - - '2023-01-06T16:00:00Z' - - '2023-01-06T17:00:00Z' - - '2023-01-06T18:00:00Z' - - '2023-01-06T19:00:00Z' - - '2023-01-06T20:00:00Z' - - '2023-01-06T21:00:00Z' - - '2023-01-06T22:00:00Z' - - '2023-01-06T23:00:00Z' - - '2023-01-07T00:00:00Z' - - '2023-01-07T01:00:00Z' - - '2023-01-07T02:00:00Z' - - '2023-01-07T03:00:00Z' - - '2023-01-07T04:00:00Z' - - '2023-01-07T05:00:00Z' - - '2023-01-07T06:00:00Z' - - '2023-01-07T07:00:00Z' - - '2023-01-07T08:00:00Z' - - '2023-01-07T09:00:00Z' - - '2023-01-07T10:00:00Z' - - '2023-01-07T11:00:00Z' - - '2023-01-07T12:00:00Z' - - '2023-01-07T13:00:00Z' - - '2023-01-07T14:00:00Z' - - '2023-01-07T15:00:00Z' - - '2023-01-07T16:00:00Z' - - '2023-01-07T17:00:00Z' - - '2023-01-07T18:00:00Z' - - '2023-01-07T19:00:00Z' - - '2023-01-07T20:00:00Z' - - '2023-01-07T21:00:00Z' - - '2023-01-07T22:00:00Z' - - '2023-01-07T23:00:00Z' - - '2023-01-08T00:00:00Z' - - '2023-01-08T01:00:00Z' - - '2023-01-08T02:00:00Z' - - '2023-01-08T03:00:00Z' - - '2023-01-08T04:00:00Z' - - '2023-01-08T05:00:00Z' - - '2023-01-08T06:00:00Z' - - '2023-01-08T07:00:00Z' - - '2023-01-08T08:00:00Z' - - '2023-01-08T09:00:00Z' - - '2023-01-08T10:00:00Z' - - '2023-01-08T11:00:00Z' - - '2023-01-08T12:00:00Z' - - '2023-01-08T13:00:00Z' - - '2023-01-08T14:00:00Z' - - '2023-01-08T15:00:00Z' - - '2023-01-08T16:00:00Z' - - '2023-01-08T17:00:00Z' - - '2023-01-08T18:00:00Z' - - '2023-01-08T19:00:00Z' - - '2023-01-08T20:00:00Z' - - '2023-01-08T21:00:00Z' - - '2023-01-08T22:00:00Z' - - '2023-01-08T23:00:00Z' - - '2023-01-09T00:00:00Z' - - '2023-01-09T01:00:00Z' - - '2023-01-09T02:00:00Z' - - '2023-01-09T03:00:00Z' - - '2023-01-09T04:00:00Z' - - '2023-01-09T05:00:00Z' - - '2023-01-09T06:00:00Z' - - '2023-01-09T07:00:00Z' - - '2023-01-09T08:00:00Z' - - '2023-01-09T09:00:00Z' - - '2023-01-09T10:00:00Z' - - '2023-01-09T11:00:00Z' - - '2023-01-09T12:00:00Z' - - '2023-01-09T13:00:00Z' - - '2023-01-09T14:00:00Z' - - '2023-01-09T15:00:00Z' - - '2023-01-09T16:00:00Z' - - '2023-01-09T17:00:00Z' - - '2023-01-09T18:00:00Z' - - '2023-01-09T19:00:00Z' - - '2023-01-09T20:00:00Z' - - '2023-01-09T21:00:00Z' - - '2023-01-09T22:00:00Z' - - '2023-01-09T23:00:00Z' - - '2023-01-10T00:00:00Z' - - '2023-01-10T01:00:00Z' - - '2023-01-10T02:00:00Z' - - '2023-01-10T03:00:00Z' - - '2023-01-10T04:00:00Z' - - '2023-01-10T05:00:00Z' - - '2023-01-10T06:00:00Z' - - '2023-01-10T07:00:00Z' - - '2023-01-10T08:00:00Z' - - '2023-01-10T09:00:00Z' - - '2023-01-10T10:00:00Z' - - '2023-01-10T11:00:00Z' - - '2023-01-10T12:00:00Z' - - '2023-01-10T13:00:00Z' - - '2023-01-10T14:00:00Z' - - '2023-01-10T15:00:00Z' - - '2023-01-10T16:00:00Z' - - '2023-01-10T17:00:00Z' - - '2023-01-10T18:00:00Z' - - '2023-01-10T19:00:00Z' - - '2023-01-10T20:00:00Z' - - '2023-01-10T21:00:00Z' - - '2023-01-10T22:00:00Z' - - '2023-01-10T23:00:00Z' - - '2023-01-11T00:00:00Z' - - '2023-01-11T01:00:00Z' - - '2023-01-11T02:00:00Z' - - '2023-01-11T03:00:00Z' - - '2023-01-11T04:00:00Z' - - '2023-01-11T05:00:00Z' - - '2023-01-11T06:00:00Z' - - '2023-01-11T07:00:00Z' - - '2023-01-11T08:00:00Z' - - '2023-01-11T09:00:00Z' - - '2023-01-11T10:00:00Z' - - '2023-01-11T11:00:00Z' - - '2023-01-11T12:00:00Z' - - '2023-01-11T13:00:00Z' - - '2023-01-11T14:00:00Z' - - '2023-01-11T15:00:00Z' - - '2023-01-11T16:00:00Z' - - '2023-01-11T17:00:00Z' - - '2023-01-11T18:00:00Z' - - '2023-01-11T19:00:00Z' - - '2023-01-11T20:00:00Z' - - '2023-01-11T21:00:00Z' - - '2023-01-11T22:00:00Z' - - '2023-01-11T23:00:00Z' - - '2023-01-12T00:00:00Z' - - '2023-01-12T01:00:00Z' - - '2023-01-12T02:00:00Z' - - '2023-01-12T03:00:00Z' - - '2023-01-12T04:00:00Z' - - '2023-01-12T05:00:00Z' - - '2023-01-12T06:00:00Z' - - '2023-01-12T07:00:00Z' - - '2023-01-12T08:00:00Z' - - '2023-01-12T09:00:00Z' - - '2023-01-12T10:00:00Z' - - '2023-01-12T11:00:00Z' - - '2023-01-12T12:00:00Z' - - '2023-01-12T13:00:00Z' - - '2023-01-12T14:00:00Z' - - '2023-01-12T15:00:00Z' - - '2023-01-12T16:00:00Z' - - '2023-01-12T17:00:00Z' - - '2023-01-12T18:00:00Z' - - '2023-01-12T19:00:00Z' - - '2023-01-12T20:00:00Z' - - '2023-01-12T21:00:00Z' - - '2023-01-12T22:00:00Z' - - '2023-01-12T23:00:00Z' - - '2023-01-13T00:00:00Z' - - '2023-01-13T01:00:00Z' - - '2023-01-13T02:00:00Z' - - '2023-01-13T03:00:00Z' - - '2023-01-13T04:00:00Z' - - '2023-01-13T05:00:00Z' - - '2023-01-13T06:00:00Z' - - '2023-01-13T07:00:00Z' - - '2023-01-13T08:00:00Z' - - '2023-01-13T09:00:00Z' - - '2023-01-13T10:00:00Z' - - '2023-01-13T11:00:00Z' - - '2023-01-13T12:00:00Z' - - '2023-01-13T13:00:00Z' - - '2023-01-13T14:00:00Z' - - '2023-01-13T15:00:00Z' - - '2023-01-13T16:00:00Z' - - '2023-01-13T17:00:00Z' - - '2023-01-13T18:00:00Z' - - '2023-01-13T19:00:00Z' - - '2023-01-13T20:00:00Z' - - '2023-01-13T21:00:00Z' - - '2023-01-13T22:00:00Z' - - '2023-01-13T23:00:00Z' - - '2023-01-14T00:00:00Z' - - '2023-01-14T01:00:00Z' - - '2023-01-14T02:00:00Z' - - '2023-01-14T03:00:00Z' - - '2023-01-14T04:00:00Z' - - '2023-01-14T05:00:00Z' - - '2023-01-14T06:00:00Z' - - '2023-01-14T07:00:00Z' - - '2023-01-14T08:00:00Z' - - '2023-01-14T09:00:00Z' - - '2023-01-14T10:00:00Z' - - '2023-01-14T11:00:00Z' - - '2023-01-14T12:00:00Z' - - '2023-01-14T13:00:00Z' - - '2023-01-14T14:00:00Z' - - '2023-01-14T15:00:00Z' - - '2023-01-14T16:00:00Z' - - '2023-01-14T17:00:00Z' - - '2023-01-14T18:00:00Z' - - '2023-01-14T19:00:00Z' - - '2023-01-14T20:00:00Z' - - '2023-01-14T21:00:00Z' - - '2023-01-14T22:00:00Z' - - '2023-01-14T23:00:00Z' - - '2023-01-15T00:00:00Z' - - '2023-01-15T01:00:00Z' - - '2023-01-15T02:00:00Z' - - '2023-01-15T03:00:00Z' - - '2023-01-15T04:00:00Z' - - '2023-01-15T05:00:00Z' - - '2023-01-15T06:00:00Z' - - '2023-01-15T07:00:00Z' - - '2023-01-15T08:00:00Z' - - '2023-01-15T09:00:00Z' - - '2023-01-15T10:00:00Z' - - '2023-01-15T11:00:00Z' - - '2023-01-15T12:00:00Z' - - '2023-01-15T13:00:00Z' - - '2023-01-15T14:00:00Z' - - '2023-01-15T15:00:00Z' - - '2023-01-15T16:00:00Z' - - '2023-01-15T17:00:00Z' - - '2023-01-15T18:00:00Z' - - '2023-01-15T19:00:00Z' - - '2023-01-15T20:00:00Z' - - '2023-01-15T21:00:00Z' - - '2023-01-15T22:00:00Z' - - '2023-01-15T23:00:00Z' - - '2023-01-16T00:00:00Z' - - '2023-01-16T01:00:00Z' - - '2023-01-16T02:00:00Z' - - '2023-01-16T03:00:00Z' - - '2023-01-16T04:00:00Z' - - '2023-01-16T05:00:00Z' - - '2023-01-16T06:00:00Z' - - '2023-01-16T07:00:00Z' - - '2023-01-16T08:00:00Z' - - '2023-01-16T09:00:00Z' - - '2023-01-16T10:00:00Z' - - '2023-01-16T11:00:00Z' - - '2023-01-16T12:00:00Z' - - '2023-01-16T13:00:00Z' - - '2023-01-16T14:00:00Z' - - '2023-01-16T15:00:00Z' - - '2023-01-16T16:00:00Z' - - '2023-01-16T17:00:00Z' - - '2023-01-16T18:00:00Z' - - '2023-01-16T19:00:00Z' - - '2023-01-16T20:00:00Z' - - '2023-01-16T21:00:00Z' - - '2023-01-16T22:00:00Z' - - '2023-01-16T23:00:00Z' - - '2023-01-17T00:00:00Z' - - '2023-01-17T01:00:00Z' - - '2023-01-17T02:00:00Z' - - '2023-01-17T03:00:00Z' - - '2023-01-17T04:00:00Z' - - '2023-01-17T05:00:00Z' - - '2023-01-17T06:00:00Z' - - '2023-01-17T07:00:00Z' - - '2023-01-17T08:00:00Z' - - '2023-01-17T09:00:00Z' - - '2023-01-17T10:00:00Z' - - '2023-01-17T11:00:00Z' - - '2023-01-17T12:00:00Z' - - '2023-01-17T13:00:00Z' - - '2023-01-17T14:00:00Z' - - '2023-01-17T15:00:00Z' - - '2023-01-17T16:00:00Z' - - '2023-01-17T17:00:00Z' - - '2023-01-17T18:00:00Z' - - '2023-01-17T19:00:00Z' - - '2023-01-17T20:00:00Z' - - '2023-01-17T21:00:00Z' - - '2023-01-17T22:00:00Z' - - '2023-01-17T23:00:00Z' - - '2023-01-18T00:00:00Z' - - '2023-01-18T01:00:00Z' - - '2023-01-18T02:00:00Z' - - '2023-01-18T03:00:00Z' - - '2023-01-18T04:00:00Z' - - '2023-01-18T05:00:00Z' - - '2023-01-18T06:00:00Z' - - '2023-01-18T07:00:00Z' - - '2023-01-18T08:00:00Z' - - '2023-01-18T09:00:00Z' - - '2023-01-18T10:00:00Z' - - '2023-01-18T11:00:00Z' - - '2023-01-18T12:00:00Z' - - '2023-01-18T13:00:00Z' - - '2023-01-18T14:00:00Z' - - '2023-01-18T15:00:00Z' - - '2023-01-18T16:00:00Z' - - '2023-01-18T17:00:00Z' - - '2023-01-18T18:00:00Z' - - '2023-01-18T19:00:00Z' - - '2023-01-18T20:00:00Z' - - '2023-01-18T21:00:00Z' - - '2023-01-18T22:00:00Z' - - '2023-01-18T23:00:00Z' - - '2023-01-19T00:00:00Z' - - '2023-01-19T01:00:00Z' - - '2023-01-19T02:00:00Z' - - '2023-01-19T03:00:00Z' - - '2023-01-19T04:00:00Z' - - '2023-01-19T05:00:00Z' - - '2023-01-19T06:00:00Z' - - '2023-01-19T07:00:00Z' - - '2023-01-19T08:00:00Z' - - '2023-01-19T09:00:00Z' - - '2023-01-19T10:00:00Z' - - '2023-01-19T11:00:00Z' - - '2023-01-19T12:00:00Z' - - '2023-01-19T13:00:00Z' - - '2023-01-19T14:00:00Z' - - '2023-01-19T15:00:00Z' - - '2023-01-19T16:00:00Z' - - '2023-01-19T17:00:00Z' - - '2023-01-19T18:00:00Z' - - '2023-01-19T19:00:00Z' - - '2023-01-19T20:00:00Z' - - '2023-01-19T21:00:00Z' - - '2023-01-19T22:00:00Z' - - '2023-01-19T23:00:00Z' - - '2023-01-20T00:00:00Z' - - '2023-01-20T01:00:00Z' - - '2023-01-20T02:00:00Z' - - '2023-01-20T03:00:00Z' - - '2023-01-20T04:00:00Z' - - '2023-01-20T05:00:00Z' - - '2023-01-20T06:00:00Z' - - '2023-01-20T07:00:00Z' - - '2023-01-20T08:00:00Z' - - '2023-01-20T09:00:00Z' - - '2023-01-20T10:00:00Z' - - '2023-01-20T11:00:00Z' - - '2023-01-20T12:00:00Z' - - '2023-01-20T13:00:00Z' - - '2023-01-20T14:00:00Z' - - '2023-01-20T15:00:00Z' - - '2023-01-20T16:00:00Z' - - '2023-01-20T17:00:00Z' - - '2023-01-20T18:00:00Z' - - '2023-01-20T19:00:00Z' - - '2023-01-20T20:00:00Z' - - '2023-01-20T21:00:00Z' - - '2023-01-20T22:00:00Z' - - '2023-01-20T23:00:00Z' - - '2023-01-21T00:00:00Z' - - '2023-01-21T01:00:00Z' - - '2023-01-21T02:00:00Z' - - '2023-01-21T03:00:00Z' - - '2023-01-21T04:00:00Z' - - '2023-01-21T05:00:00Z' - - '2023-01-21T06:00:00Z' - - '2023-01-21T07:00:00Z' - - '2023-01-21T08:00:00Z' - - '2023-01-21T09:00:00Z' - - '2023-01-21T10:00:00Z' - - '2023-01-21T11:00:00Z' - - '2023-01-21T12:00:00Z' - - '2023-01-21T13:00:00Z' - - '2023-01-21T14:00:00Z' - - '2023-01-21T15:00:00Z' - - '2023-01-21T16:00:00Z' - - '2023-01-21T17:00:00Z' - - '2023-01-21T18:00:00Z' - - '2023-01-21T19:00:00Z' - - '2023-01-21T20:00:00Z' - - '2023-01-21T21:00:00Z' - - '2023-01-21T22:00:00Z' - - '2023-01-21T23:00:00Z' - - '2023-01-22T00:00:00Z' - - '2023-01-22T01:00:00Z' - - '2023-01-22T02:00:00Z' - - '2023-01-22T03:00:00Z' - - '2023-01-22T04:00:00Z' - - '2023-01-22T05:00:00Z' - - '2023-01-22T06:00:00Z' - - '2023-01-22T07:00:00Z' - - '2023-01-22T08:00:00Z' - - '2023-01-22T09:00:00Z' - - '2023-01-22T10:00:00Z' - - '2023-01-22T11:00:00Z' - - '2023-01-22T12:00:00Z' - - '2023-01-22T13:00:00Z' - - '2023-01-22T14:00:00Z' - - '2023-01-22T15:00:00Z' - - '2023-01-22T16:00:00Z' - - '2023-01-22T17:00:00Z' - - '2023-01-22T18:00:00Z' - - '2023-01-22T19:00:00Z' - - '2023-01-22T20:00:00Z' - - '2023-01-22T21:00:00Z' - - '2023-01-22T22:00:00Z' - - '2023-01-22T23:00:00Z' - - '2023-01-23T00:00:00Z' - - '2023-01-23T01:00:00Z' - - '2023-01-23T02:00:00Z' - - '2023-01-23T03:00:00Z' - - '2023-01-23T04:00:00Z' - - '2023-01-23T05:00:00Z' - - '2023-01-23T06:00:00Z' - - '2023-01-23T07:00:00Z' - - '2023-01-23T08:00:00Z' - - '2023-01-23T09:00:00Z' - - '2023-01-23T10:00:00Z' - - '2023-01-23T11:00:00Z' - - '2023-01-23T12:00:00Z' - - '2023-01-23T13:00:00Z' - - '2023-01-23T14:00:00Z' - - '2023-01-23T15:00:00Z' - - '2023-01-23T16:00:00Z' - - '2023-01-23T17:00:00Z' - - '2023-01-23T18:00:00Z' - - '2023-01-23T19:00:00Z' - - '2023-01-23T20:00:00Z' - - '2023-01-23T21:00:00Z' - - '2023-01-23T22:00:00Z' - - '2023-01-23T23:00:00Z' - - '2023-01-24T00:00:00Z' - - '2023-01-24T01:00:00Z' - - '2023-01-24T02:00:00Z' - - '2023-01-24T03:00:00Z' - - '2023-01-24T04:00:00Z' - - '2023-01-24T05:00:00Z' - - '2023-01-24T06:00:00Z' - - '2023-01-24T07:00:00Z' - - '2023-01-24T08:00:00Z' - - '2023-01-24T09:00:00Z' - - '2023-01-24T10:00:00Z' - - '2023-01-24T11:00:00Z' - - '2023-01-24T12:00:00Z' - - '2023-01-24T13:00:00Z' - - '2023-01-24T14:00:00Z' - - '2023-01-24T15:00:00Z' - - '2023-01-24T16:00:00Z' - - '2023-01-24T17:00:00Z' - - '2023-01-24T18:00:00Z' - - '2023-01-24T19:00:00Z' - - '2023-01-24T20:00:00Z' - - '2023-01-24T21:00:00Z' - - '2023-01-24T22:00:00Z' - - '2023-01-24T23:00:00Z' - - '2023-01-25T00:00:00Z' - - '2023-01-25T01:00:00Z' - - '2023-01-25T02:00:00Z' - - '2023-01-25T03:00:00Z' - - '2023-01-25T04:00:00Z' - - '2023-01-25T05:00:00Z' - - '2023-01-25T06:00:00Z' - - '2023-01-25T07:00:00Z' - - '2023-01-25T08:00:00Z' - - '2023-01-25T09:00:00Z' - - '2023-01-25T10:00:00Z' - - '2023-01-25T11:00:00Z' - - '2023-01-25T12:00:00Z' - - '2023-01-25T13:00:00Z' - - '2023-01-25T14:00:00Z' - - '2023-01-25T15:00:00Z' - - '2023-01-25T16:00:00Z' - - '2023-01-25T17:00:00Z' - - '2023-01-25T18:00:00Z' - - '2023-01-25T19:00:00Z' - - '2023-01-25T20:00:00Z' - - '2023-01-25T21:00:00Z' - - '2023-01-25T22:00:00Z' - - '2023-01-25T23:00:00Z' - - '2023-01-26T00:00:00Z' - - '2023-01-26T01:00:00Z' - - '2023-01-26T02:00:00Z' - - '2023-01-26T03:00:00Z' - - '2023-01-26T04:00:00Z' - - '2023-01-26T05:00:00Z' - - '2023-01-26T06:00:00Z' - - '2023-01-26T07:00:00Z' - - '2023-01-26T08:00:00Z' - - '2023-01-26T09:00:00Z' - - '2023-01-26T10:00:00Z' - - '2023-01-26T11:00:00Z' - - '2023-01-26T12:00:00Z' - - '2023-01-26T13:00:00Z' - - '2023-01-26T14:00:00Z' - - '2023-01-26T15:00:00Z' - - '2023-01-26T16:00:00Z' - - '2023-01-26T17:00:00Z' - - '2023-01-26T18:00:00Z' - - '2023-01-26T19:00:00Z' - - '2023-01-26T20:00:00Z' - - '2023-01-26T21:00:00Z' - - '2023-01-26T22:00:00Z' - - '2023-01-26T23:00:00Z' - - '2023-01-27T00:00:00Z' - - '2023-01-27T01:00:00Z' - - '2023-01-27T02:00:00Z' - - '2023-01-27T03:00:00Z' - - '2023-01-27T04:00:00Z' - - '2023-01-27T05:00:00Z' - - '2023-01-27T06:00:00Z' - - '2023-01-27T07:00:00Z' - - '2023-01-27T08:00:00Z' - - '2023-01-27T09:00:00Z' - - '2023-01-27T10:00:00Z' - - '2023-01-27T11:00:00Z' - - '2023-01-27T12:00:00Z' - - '2023-01-27T13:00:00Z' - - '2023-01-27T14:00:00Z' - - '2023-01-27T15:00:00Z' - - '2023-01-27T16:00:00Z' - - '2023-01-27T17:00:00Z' - - '2023-01-27T18:00:00Z' - - '2023-01-27T19:00:00Z' - - '2023-01-27T20:00:00Z' - - '2023-01-27T21:00:00Z' - - '2023-01-27T22:00:00Z' - - '2023-01-27T23:00:00Z' - - '2023-01-28T00:00:00Z' - - '2023-01-28T01:00:00Z' - - '2023-01-28T02:00:00Z' - - '2023-01-28T03:00:00Z' - - '2023-01-28T04:00:00Z' - - '2023-01-28T05:00:00Z' - - '2023-01-28T06:00:00Z' - - '2023-01-28T07:00:00Z' - - '2023-01-28T08:00:00Z' - - '2023-01-28T09:00:00Z' - - '2023-01-28T10:00:00Z' - - '2023-01-28T11:00:00Z' - - '2023-01-28T12:00:00Z' - - '2023-01-28T13:00:00Z' - - '2023-01-28T14:00:00Z' - - '2023-01-28T15:00:00Z' - - '2023-01-28T16:00:00Z' - - '2023-01-28T17:00:00Z' - - '2023-01-28T18:00:00Z' - - '2023-01-28T19:00:00Z' - - '2023-01-28T20:00:00Z' - - '2023-01-28T21:00:00Z' - - '2023-01-28T22:00:00Z' - - '2023-01-28T23:00:00Z' - - '2023-01-29T00:00:00Z' - - '2023-01-29T01:00:00Z' - - '2023-01-29T02:00:00Z' - - '2023-01-29T03:00:00Z' - - '2023-01-29T04:00:00Z' - - '2023-01-29T05:00:00Z' - - '2023-01-29T06:00:00Z' - - '2023-01-29T07:00:00Z' - - '2023-01-29T08:00:00Z' - - '2023-01-29T09:00:00Z' - - '2023-01-29T10:00:00Z' - - '2023-01-29T11:00:00Z' - - '2023-01-29T12:00:00Z' - - '2023-01-29T13:00:00Z' - - '2023-01-29T14:00:00Z' - - '2023-01-29T15:00:00Z' - - '2023-01-29T16:00:00Z' - - '2023-01-29T17:00:00Z' - - '2023-01-29T18:00:00Z' - - '2023-01-29T19:00:00Z' - - '2023-01-29T20:00:00Z' - - '2023-01-29T21:00:00Z' - - '2023-01-29T22:00:00Z' - - '2023-01-29T23:00:00Z' - - '2023-01-30T00:00:00Z' - - '2023-01-30T01:00:00Z' - - '2023-01-30T02:00:00Z' - - '2023-01-30T03:00:00Z' - - '2023-01-30T04:00:00Z' - - '2023-01-30T05:00:00Z' - - '2023-01-30T06:00:00Z' - - '2023-01-30T07:00:00Z' - - '2023-01-30T08:00:00Z' - - '2023-01-30T09:00:00Z' - - '2023-01-30T10:00:00Z' - - '2023-01-30T11:00:00Z' - - '2023-01-30T12:00:00Z' - - '2023-01-30T13:00:00Z' - - '2023-01-30T14:00:00Z' - - '2023-01-30T15:00:00Z' - - '2023-01-30T16:00:00Z' - - '2023-01-30T17:00:00Z' - - '2023-01-30T18:00:00Z' - - '2023-01-30T19:00:00Z' - - '2023-01-30T20:00:00Z' - - '2023-01-30T21:00:00Z' - - '2023-01-30T22:00:00Z' - - '2023-01-30T23:00:00Z' - - '2023-01-31T00:00:00Z' - - '2023-01-31T01:00:00Z' - - '2023-01-31T02:00:00Z' - - '2023-01-31T03:00:00Z' - - '2023-01-31T04:00:00Z' - - '2023-01-31T05:00:00Z' - - '2023-01-31T06:00:00Z' - - '2023-01-31T07:00:00Z' - - '2023-01-31T08:00:00Z' - - '2023-01-31T09:00:00Z' - - '2023-01-31T10:00:00Z' - - '2023-01-31T11:00:00Z' - - '2023-01-31T12:00:00Z' - - '2023-01-31T13:00:00Z' - - '2023-01-31T14:00:00Z' - - '2023-01-31T15:00:00Z' - - '2023-01-31T16:00:00Z' - - '2023-01-31T17:00:00Z' - - '2023-01-31T18:00:00Z' - - '2023-01-31T19:00:00Z' - - '2023-01-31T20:00:00Z' - - '2023-01-31T21:00:00Z' - - '2023-01-31T22:00:00Z' - - '2023-01-31T23:00:00Z' - - '2023-02-01T00:00:00Z' - - '2023-02-01T01:00:00Z' - - '2023-02-01T02:00:00Z' - - '2023-02-01T03:00:00Z' - - '2023-02-01T04:00:00Z' - - '2023-02-01T05:00:00Z' - - '2023-02-01T06:00:00Z' - - '2023-02-01T07:00:00Z' - - '2023-02-01T08:00:00Z' - - '2023-02-01T09:00:00Z' - - '2023-02-01T10:00:00Z' - - '2023-02-01T11:00:00Z' - - '2023-02-01T12:00:00Z' - - '2023-02-01T13:00:00Z' - - '2023-02-01T14:00:00Z' - - '2023-02-01T15:00:00Z' - - '2023-02-01T16:00:00Z' - - '2023-02-01T17:00:00Z' - - '2023-02-01T18:00:00Z' - - '2023-02-01T19:00:00Z' - - '2023-02-01T20:00:00Z' - - '2023-02-01T21:00:00Z' - - '2023-02-01T22:00:00Z' - - '2023-02-01T23:00:00Z' - - '2023-02-02T00:00:00Z' - - '2023-02-02T01:00:00Z' - - '2023-02-02T02:00:00Z' - - '2023-02-02T03:00:00Z' - - '2023-02-02T04:00:00Z' - - '2023-02-02T05:00:00Z' - - '2023-02-02T06:00:00Z' - - '2023-02-02T07:00:00Z' - - '2023-02-02T08:00:00Z' - - '2023-02-02T09:00:00Z' - - '2023-02-02T10:00:00Z' - - '2023-02-02T11:00:00Z' - - '2023-02-02T12:00:00Z' - - '2023-02-02T13:00:00Z' - - '2023-02-02T14:00:00Z' - - '2023-02-02T15:00:00Z' - - '2023-02-02T16:00:00Z' - - '2023-02-02T17:00:00Z' - - '2023-02-02T18:00:00Z' - - '2023-02-02T19:00:00Z' - - '2023-02-02T20:00:00Z' - - '2023-02-02T21:00:00Z' - - '2023-02-02T22:00:00Z' - - '2023-02-02T23:00:00Z' - - '2023-02-03T00:00:00Z' - - '2023-02-03T01:00:00Z' - - '2023-02-03T02:00:00Z' - - '2023-02-03T03:00:00Z' - - '2023-02-03T04:00:00Z' - - '2023-02-03T05:00:00Z' - - '2023-02-03T06:00:00Z' - - '2023-02-03T07:00:00Z' - - '2023-02-03T08:00:00Z' - - '2023-02-03T09:00:00Z' - - '2023-02-03T10:00:00Z' - - '2023-02-03T11:00:00Z' - - '2023-02-03T12:00:00Z' - - '2023-02-03T13:00:00Z' - - '2023-02-03T14:00:00Z' - - '2023-02-03T15:00:00Z' - - '2023-02-03T16:00:00Z' - - '2023-02-03T17:00:00Z' - - '2023-02-03T18:00:00Z' - - '2023-02-03T19:00:00Z' - - '2023-02-03T20:00:00Z' - - '2023-02-03T21:00:00Z' - - '2023-02-03T22:00:00Z' - - '2023-02-03T23:00:00Z' - - '2023-02-04T00:00:00Z' - - '2023-02-04T01:00:00Z' - - '2023-02-04T02:00:00Z' - - '2023-02-04T03:00:00Z' - - '2023-02-04T04:00:00Z' - - '2023-02-04T05:00:00Z' - - '2023-02-04T06:00:00Z' - - '2023-02-04T07:00:00Z' - - '2023-02-04T08:00:00Z' - - '2023-02-04T09:00:00Z' - - '2023-02-04T10:00:00Z' - - '2023-02-04T11:00:00Z' - - '2023-02-04T12:00:00Z' - - '2023-02-04T13:00:00Z' - - '2023-02-04T14:00:00Z' - - '2023-02-04T15:00:00Z' - - '2023-02-04T16:00:00Z' - - '2023-02-04T17:00:00Z' - - '2023-02-04T18:00:00Z' - - '2023-02-04T19:00:00Z' - - '2023-02-04T20:00:00Z' - - '2023-02-04T21:00:00Z' - - '2023-02-04T22:00:00Z' - - '2023-02-04T23:00:00Z' - - '2023-02-05T00:00:00Z' - - '2023-02-05T01:00:00Z' - - '2023-02-05T02:00:00Z' - - '2023-02-05T03:00:00Z' - - '2023-02-05T04:00:00Z' - - '2023-02-05T05:00:00Z' - - '2023-02-05T06:00:00Z' - - '2023-02-05T07:00:00Z' - - '2023-02-05T08:00:00Z' - - '2023-02-05T09:00:00Z' - - '2023-02-05T10:00:00Z' - - '2023-02-05T11:00:00Z' - - '2023-02-05T12:00:00Z' - - '2023-02-05T13:00:00Z' - - '2023-02-05T14:00:00Z' - - '2023-02-05T15:00:00Z' - - '2023-02-05T16:00:00Z' - - '2023-02-05T17:00:00Z' - - '2023-02-05T18:00:00Z' - - '2023-02-05T19:00:00Z' - - '2023-02-05T20:00:00Z' - - '2023-02-05T21:00:00Z' - - '2023-02-05T22:00:00Z' - - '2023-02-05T23:00:00Z' - - '2023-02-06T00:00:00Z' - - '2023-02-06T01:00:00Z' - - '2023-02-06T02:00:00Z' - - '2023-02-06T03:00:00Z' - - '2023-02-06T04:00:00Z' - - '2023-02-06T05:00:00Z' - - '2023-02-06T06:00:00Z' - - '2023-02-06T07:00:00Z' - - '2023-02-06T08:00:00Z' - - '2023-02-06T09:00:00Z' - - '2023-02-06T10:00:00Z' - - '2023-02-06T11:00:00Z' - - '2023-02-06T12:00:00Z' - - '2023-02-06T13:00:00Z' - - '2023-02-06T14:00:00Z' - - '2023-02-06T15:00:00Z' - - '2023-02-06T16:00:00Z' - - '2023-02-06T17:00:00Z' - - '2023-02-06T18:00:00Z' - - '2023-02-06T19:00:00Z' - - '2023-02-06T20:00:00Z' - - '2023-02-06T21:00:00Z' - - '2023-02-06T22:00:00Z' - - '2023-02-06T23:00:00Z' - - '2023-02-07T00:00:00Z' - - '2023-02-07T01:00:00Z' - - '2023-02-07T02:00:00Z' - - '2023-02-07T03:00:00Z' - - '2023-02-07T04:00:00Z' - - '2023-02-07T05:00:00Z' - - '2023-02-07T06:00:00Z' - - '2023-02-07T07:00:00Z' - - '2023-02-07T08:00:00Z' - - '2023-02-07T09:00:00Z' - - '2023-02-07T10:00:00Z' - - '2023-02-07T11:00:00Z' - - '2023-02-07T12:00:00Z' - - '2023-02-07T13:00:00Z' - - '2023-02-07T14:00:00Z' - - '2023-02-07T15:00:00Z' - - '2023-02-07T16:00:00Z' - - '2023-02-07T17:00:00Z' - - '2023-02-07T18:00:00Z' - - '2023-02-07T19:00:00Z' - - '2023-02-07T20:00:00Z' - - '2023-02-07T21:00:00Z' - - '2023-02-07T22:00:00Z' - - '2023-02-07T23:00:00Z' - - '2023-02-08T00:00:00Z' - - '2023-02-08T01:00:00Z' - - '2023-02-08T02:00:00Z' - - '2023-02-08T03:00:00Z' - - '2023-02-08T04:00:00Z' - - '2023-02-08T05:00:00Z' - - '2023-02-08T06:00:00Z' - - '2023-02-08T07:00:00Z' - - '2023-02-08T08:00:00Z' - - '2023-02-08T09:00:00Z' - - '2023-02-08T10:00:00Z' - - '2023-02-08T11:00:00Z' - - '2023-02-08T12:00:00Z' - - '2023-02-08T13:00:00Z' - - '2023-02-08T14:00:00Z' - - '2023-02-08T15:00:00Z' - - '2023-02-08T16:00:00Z' - - '2023-02-08T17:00:00Z' - - '2023-02-08T18:00:00Z' - - '2023-02-08T19:00:00Z' - - '2023-02-08T20:00:00Z' - - '2023-02-08T21:00:00Z' - - '2023-02-08T22:00:00Z' - - '2023-02-08T23:00:00Z' - - '2023-02-09T00:00:00Z' - - '2023-02-09T01:00:00Z' - - '2023-02-09T02:00:00Z' - - '2023-02-09T03:00:00Z' - - '2023-02-09T04:00:00Z' - - '2023-02-09T05:00:00Z' - - '2023-02-09T06:00:00Z' - - '2023-02-09T07:00:00Z' - - '2023-02-09T08:00:00Z' - - '2023-02-09T09:00:00Z' - - '2023-02-09T10:00:00Z' - - '2023-02-09T11:00:00Z' - - '2023-02-09T12:00:00Z' - - '2023-02-09T13:00:00Z' - - '2023-02-09T14:00:00Z' - - '2023-02-09T15:00:00Z' - - '2023-02-09T16:00:00Z' - - '2023-02-09T17:00:00Z' - - '2023-02-09T18:00:00Z' - - '2023-02-09T19:00:00Z' - - '2023-02-09T20:00:00Z' - - '2023-02-09T21:00:00Z' - - '2023-02-09T22:00:00Z' - - '2023-02-09T23:00:00Z' - - '2023-02-10T00:00:00Z' - - '2023-02-10T01:00:00Z' - - '2023-02-10T02:00:00Z' - - '2023-02-10T03:00:00Z' - - '2023-02-10T04:00:00Z' - - '2023-02-10T05:00:00Z' - - '2023-02-10T06:00:00Z' - - '2023-02-10T07:00:00Z' - - '2023-02-10T08:00:00Z' - - '2023-02-10T09:00:00Z' - - '2023-02-10T10:00:00Z' - - '2023-02-10T11:00:00Z' - - '2023-02-10T12:00:00Z' - - '2023-02-10T13:00:00Z' - - '2023-02-10T14:00:00Z' - - '2023-02-10T15:00:00Z' - - '2023-02-10T16:00:00Z' - - '2023-02-10T17:00:00Z' - - '2023-02-10T18:00:00Z' - - '2023-02-10T19:00:00Z' - - '2023-02-10T20:00:00Z' - - '2023-02-10T21:00:00Z' - - '2023-02-10T22:00:00Z' - - '2023-02-10T23:00:00Z' - - '2023-02-11T00:00:00Z' - - '2023-02-11T01:00:00Z' - - '2023-02-11T02:00:00Z' - - '2023-02-11T03:00:00Z' - - '2023-02-11T04:00:00Z' - - '2023-02-11T05:00:00Z' - - '2023-02-11T06:00:00Z' - - '2023-02-11T07:00:00Z' - - '2023-02-11T08:00:00Z' - - '2023-02-11T09:00:00Z' - - '2023-02-11T10:00:00Z' - - '2023-02-11T11:00:00Z' - - '2023-02-11T12:00:00Z' - - '2023-02-11T13:00:00Z' - - '2023-02-11T14:00:00Z' - - '2023-02-11T15:00:00Z' - - '2023-02-11T16:00:00Z' - - '2023-02-11T17:00:00Z' - - '2023-02-11T18:00:00Z' - - '2023-02-11T19:00:00Z' - - '2023-02-11T20:00:00Z' - - '2023-02-11T21:00:00Z' - - '2023-02-11T22:00:00Z' - - '2023-02-11T23:00:00Z' - - '2023-02-12T00:00:00Z' - - '2023-02-12T01:00:00Z' - - '2023-02-12T02:00:00Z' - - '2023-02-12T03:00:00Z' - - '2023-02-12T04:00:00Z' - - '2023-02-12T05:00:00Z' - - '2023-02-12T06:00:00Z' - - '2023-02-12T07:00:00Z' - - '2023-02-12T08:00:00Z' - - '2023-02-12T09:00:00Z' - - '2023-02-12T10:00:00Z' - - '2023-02-12T11:00:00Z' - - '2023-02-12T12:00:00Z' - - '2023-02-12T13:00:00Z' - - '2023-02-12T14:00:00Z' - - '2023-02-12T15:00:00Z' - - '2023-02-12T16:00:00Z' - - '2023-02-12T17:00:00Z' - - '2023-02-12T18:00:00Z' - - '2023-02-12T19:00:00Z' - - '2023-02-12T20:00:00Z' - - '2023-02-12T21:00:00Z' - - '2023-02-12T22:00:00Z' - - '2023-02-12T23:00:00Z' - - '2023-02-13T00:00:00Z' - - '2023-02-13T01:00:00Z' - - '2023-02-13T02:00:00Z' - - '2023-02-13T03:00:00Z' - - '2023-02-13T04:00:00Z' - - '2023-02-13T05:00:00Z' - - '2023-02-13T06:00:00Z' - - '2023-02-13T07:00:00Z' - - '2023-02-13T08:00:00Z' - - '2023-02-13T09:00:00Z' - - '2023-02-13T10:00:00Z' - - '2023-02-13T11:00:00Z' - - '2023-02-13T12:00:00Z' - - '2023-02-13T13:00:00Z' - - '2023-02-13T14:00:00Z' - - '2023-02-13T15:00:00Z' - - '2023-02-13T16:00:00Z' - - '2023-02-13T17:00:00Z' - - '2023-02-13T18:00:00Z' - - '2023-02-13T19:00:00Z' - - '2023-02-13T20:00:00Z' - - '2023-02-13T21:00:00Z' - - '2023-02-13T22:00:00Z' - - '2023-02-13T23:00:00Z' - - '2023-02-14T00:00:00Z' - - '2023-02-14T01:00:00Z' - - '2023-02-14T02:00:00Z' - - '2023-02-14T03:00:00Z' - - '2023-02-14T04:00:00Z' - - '2023-02-14T05:00:00Z' - - '2023-02-14T06:00:00Z' - - '2023-02-14T07:00:00Z' - - '2023-02-14T08:00:00Z' - - '2023-02-14T09:00:00Z' - - '2023-02-14T10:00:00Z' - - '2023-02-14T11:00:00Z' - - '2023-02-14T12:00:00Z' - - '2023-02-14T13:00:00Z' - - '2023-02-14T14:00:00Z' - - '2023-02-14T15:00:00Z' - - '2023-02-14T16:00:00Z' - - '2023-02-14T17:00:00Z' - - '2023-02-14T18:00:00Z' - - '2023-02-14T19:00:00Z' - - '2023-02-14T20:00:00Z' - - '2023-02-14T21:00:00Z' - - '2023-02-14T22:00:00Z' - - '2023-02-14T23:00:00Z' - - '2023-02-15T00:00:00Z' - - '2023-02-15T01:00:00Z' - - '2023-02-15T02:00:00Z' - - '2023-02-15T03:00:00Z' - - '2023-02-15T04:00:00Z' - - '2023-02-15T05:00:00Z' - - '2023-02-15T06:00:00Z' - - '2023-02-15T07:00:00Z' - - '2023-02-15T08:00:00Z' - - '2023-02-15T09:00:00Z' - - '2023-02-15T10:00:00Z' - - '2023-02-15T11:00:00Z' - - '2023-02-15T12:00:00Z' - - '2023-02-15T13:00:00Z' - - '2023-02-15T14:00:00Z' - - '2023-02-15T15:00:00Z' - - '2023-02-15T16:00:00Z' - - '2023-02-15T17:00:00Z' - - '2023-02-15T18:00:00Z' - - '2023-02-15T19:00:00Z' - - '2023-02-15T20:00:00Z' - - '2023-02-15T21:00:00Z' - - '2023-02-15T22:00:00Z' - - '2023-02-15T23:00:00Z' - - '2023-02-16T00:00:00Z' - - '2023-02-16T01:00:00Z' - - '2023-02-16T02:00:00Z' - - '2023-02-16T03:00:00Z' - - '2023-02-16T04:00:00Z' - - '2023-02-16T05:00:00Z' - - '2023-02-16T06:00:00Z' - - '2023-02-16T07:00:00Z' - - '2023-02-16T08:00:00Z' - - '2023-02-16T09:00:00Z' - - '2023-02-16T10:00:00Z' - - '2023-02-16T11:00:00Z' - - '2023-02-16T12:00:00Z' - - '2023-02-16T13:00:00Z' - - '2023-02-16T14:00:00Z' - - '2023-02-16T15:00:00Z' - - '2023-02-16T16:00:00Z' - - '2023-02-16T17:00:00Z' - - '2023-02-16T18:00:00Z' - - '2023-02-16T19:00:00Z' - - '2023-02-16T20:00:00Z' - - '2023-02-16T21:00:00Z' - - '2023-02-16T22:00:00Z' - - '2023-02-16T23:00:00Z' - - '2023-02-17T00:00:00Z' - - '2023-02-17T01:00:00Z' - - '2023-02-17T02:00:00Z' - - '2023-02-17T03:00:00Z' - - '2023-02-17T04:00:00Z' - - '2023-02-17T05:00:00Z' - - '2023-02-17T06:00:00Z' - - '2023-02-17T07:00:00Z' - - '2023-02-17T08:00:00Z' - - '2023-02-17T09:00:00Z' - - '2023-02-17T10:00:00Z' - - '2023-02-17T11:00:00Z' - - '2023-02-17T12:00:00Z' - - '2023-02-17T13:00:00Z' - - '2023-02-17T14:00:00Z' - - '2023-02-17T15:00:00Z' - - '2023-02-17T16:00:00Z' - - '2023-02-17T17:00:00Z' - - '2023-02-17T18:00:00Z' - - '2023-02-17T19:00:00Z' - - '2023-02-17T20:00:00Z' - - '2023-02-17T21:00:00Z' - - '2023-02-17T22:00:00Z' - - '2023-02-17T23:00:00Z' - - '2023-02-18T00:00:00Z' - - '2023-02-18T01:00:00Z' - - '2023-02-18T02:00:00Z' - - '2023-02-18T03:00:00Z' - - '2023-02-18T04:00:00Z' - - '2023-02-18T05:00:00Z' - - '2023-02-18T06:00:00Z' - - '2023-02-18T07:00:00Z' - - '2023-02-18T08:00:00Z' - - '2023-02-18T09:00:00Z' - - '2023-02-18T10:00:00Z' - - '2023-02-18T11:00:00Z' - - '2023-02-18T12:00:00Z' - - '2023-02-18T13:00:00Z' - - '2023-02-18T14:00:00Z' - - '2023-02-18T15:00:00Z' - - '2023-02-18T16:00:00Z' - - '2023-02-18T17:00:00Z' - - '2023-02-18T18:00:00Z' - - '2023-02-18T19:00:00Z' - - '2023-02-18T20:00:00Z' - - '2023-02-18T21:00:00Z' - - '2023-02-18T22:00:00Z' - - '2023-02-18T23:00:00Z' - - '2023-02-19T00:00:00Z' - - '2023-02-19T01:00:00Z' - - '2023-02-19T02:00:00Z' - - '2023-02-19T03:00:00Z' - - '2023-02-19T04:00:00Z' - - '2023-02-19T05:00:00Z' - - '2023-02-19T06:00:00Z' - - '2023-02-19T07:00:00Z' - - '2023-02-19T08:00:00Z' - - '2023-02-19T09:00:00Z' - - '2023-02-19T10:00:00Z' - - '2023-02-19T11:00:00Z' - - '2023-02-19T12:00:00Z' - - '2023-02-19T13:00:00Z' - - '2023-02-19T14:00:00Z' - - '2023-02-19T15:00:00Z' - - '2023-02-19T16:00:00Z' - - '2023-02-19T17:00:00Z' - - '2023-02-19T18:00:00Z' - - '2023-02-19T19:00:00Z' - - '2023-02-19T20:00:00Z' - - '2023-02-19T21:00:00Z' - - '2023-02-19T22:00:00Z' - - '2023-02-19T23:00:00Z' - - '2023-02-20T00:00:00Z' - - '2023-02-20T01:00:00Z' - - '2023-02-20T02:00:00Z' - - '2023-02-20T03:00:00Z' - - '2023-02-20T04:00:00Z' - - '2023-02-20T05:00:00Z' - - '2023-02-20T06:00:00Z' - - '2023-02-20T07:00:00Z' - - '2023-02-20T08:00:00Z' - - '2023-02-20T09:00:00Z' - - '2023-02-20T10:00:00Z' - - '2023-02-20T11:00:00Z' - - '2023-02-20T12:00:00Z' - - '2023-02-20T13:00:00Z' - - '2023-02-20T14:00:00Z' - - '2023-02-20T15:00:00Z' - - '2023-02-20T16:00:00Z' - - '2023-02-20T17:00:00Z' - - '2023-02-20T18:00:00Z' - - '2023-02-20T19:00:00Z' - - '2023-02-20T20:00:00Z' - - '2023-02-20T21:00:00Z' - - '2023-02-20T22:00:00Z' - - '2023-02-20T23:00:00Z' - - '2023-02-21T00:00:00Z' - - '2023-02-21T01:00:00Z' - - '2023-02-21T02:00:00Z' - - '2023-02-21T03:00:00Z' - - '2023-02-21T04:00:00Z' - - '2023-02-21T05:00:00Z' - - '2023-02-21T06:00:00Z' - - '2023-02-21T07:00:00Z' - - '2023-02-21T08:00:00Z' - - '2023-02-21T09:00:00Z' - - '2023-02-21T10:00:00Z' - - '2023-02-21T11:00:00Z' - - '2023-02-21T12:00:00Z' - - '2023-02-21T13:00:00Z' - - '2023-02-21T14:00:00Z' - - '2023-02-21T15:00:00Z' - - '2023-02-21T16:00:00Z' - - '2023-02-21T17:00:00Z' - - '2023-02-21T18:00:00Z' - - '2023-02-21T19:00:00Z' - - '2023-02-21T20:00:00Z' - - '2023-02-21T21:00:00Z' - - '2023-02-21T22:00:00Z' - - '2023-02-21T23:00:00Z' - - '2023-02-22T00:00:00Z' - - '2023-02-22T01:00:00Z' - - '2023-02-22T02:00:00Z' - - '2023-02-22T03:00:00Z' - - '2023-02-22T04:00:00Z' - - '2023-02-22T05:00:00Z' - - '2023-02-22T06:00:00Z' - - '2023-02-22T07:00:00Z' - - '2023-02-22T08:00:00Z' - - '2023-02-22T09:00:00Z' - - '2023-02-22T10:00:00Z' - - '2023-02-22T11:00:00Z' - - '2023-02-22T12:00:00Z' - - '2023-02-22T13:00:00Z' - - '2023-02-22T14:00:00Z' - - '2023-02-22T15:00:00Z' - - '2023-02-22T16:00:00Z' - - '2023-02-22T17:00:00Z' - - '2023-02-22T18:00:00Z' - - '2023-02-22T19:00:00Z' - - '2023-02-22T20:00:00Z' - - '2023-02-22T21:00:00Z' - - '2023-02-22T22:00:00Z' - - '2023-02-22T23:00:00Z' - - '2023-02-23T00:00:00Z' - - '2023-02-23T01:00:00Z' - - '2023-02-23T02:00:00Z' - - '2023-02-23T03:00:00Z' - - '2023-02-23T04:00:00Z' - - '2023-02-23T05:00:00Z' - - '2023-02-23T06:00:00Z' - - '2023-02-23T07:00:00Z' - - '2023-02-23T08:00:00Z' - - '2023-02-23T09:00:00Z' - - '2023-02-23T10:00:00Z' - - '2023-02-23T11:00:00Z' - - '2023-02-23T12:00:00Z' - - '2023-02-23T13:00:00Z' - - '2023-02-23T14:00:00Z' - - '2023-02-23T15:00:00Z' - - '2023-02-23T16:00:00Z' - - '2023-02-23T17:00:00Z' - - '2023-02-23T18:00:00Z' - - '2023-02-23T19:00:00Z' - - '2023-02-23T20:00:00Z' - - '2023-02-23T21:00:00Z' - - '2023-02-23T22:00:00Z' - - '2023-02-23T23:00:00Z' - - '2023-02-24T00:00:00Z' - - '2023-02-24T01:00:00Z' - - '2023-02-24T02:00:00Z' - - '2023-02-24T03:00:00Z' - - '2023-02-24T04:00:00Z' - - '2023-02-24T05:00:00Z' - - '2023-02-24T06:00:00Z' - - '2023-02-24T07:00:00Z' - - '2023-02-24T08:00:00Z' - - '2023-02-24T09:00:00Z' - - '2023-02-24T10:00:00Z' - - '2023-02-24T11:00:00Z' - - '2023-02-24T12:00:00Z' - - '2023-02-24T13:00:00Z' - - '2023-02-24T14:00:00Z' - - '2023-02-24T15:00:00Z' - - '2023-02-24T16:00:00Z' - - '2023-02-24T17:00:00Z' - - '2023-02-24T18:00:00Z' - - '2023-02-24T19:00:00Z' - - '2023-02-24T20:00:00Z' - - '2023-02-24T21:00:00Z' - - '2023-02-24T22:00:00Z' - - '2023-02-24T23:00:00Z' - - '2023-02-25T00:00:00Z' - - '2023-02-25T01:00:00Z' - - '2023-02-25T02:00:00Z' - - '2023-02-25T03:00:00Z' - - '2023-02-25T04:00:00Z' - - '2023-02-25T05:00:00Z' - - '2023-02-25T06:00:00Z' - - '2023-02-25T07:00:00Z' - - '2023-02-25T08:00:00Z' - - '2023-02-25T09:00:00Z' - - '2023-02-25T10:00:00Z' - - '2023-02-25T11:00:00Z' - - '2023-02-25T12:00:00Z' - - '2023-02-25T13:00:00Z' - - '2023-02-25T14:00:00Z' - - '2023-02-25T15:00:00Z' - - '2023-02-25T16:00:00Z' - - '2023-02-25T17:00:00Z' - - '2023-02-25T18:00:00Z' - - '2023-02-25T19:00:00Z' - - '2023-02-25T20:00:00Z' - - '2023-02-25T21:00:00Z' - - '2023-02-25T22:00:00Z' - - '2023-02-25T23:00:00Z' - - '2023-02-26T00:00:00Z' - - '2023-02-26T01:00:00Z' - - '2023-02-26T02:00:00Z' - - '2023-02-26T03:00:00Z' - - '2023-02-26T04:00:00Z' - - '2023-02-26T05:00:00Z' - - '2023-02-26T06:00:00Z' - - '2023-02-26T07:00:00Z' - - '2023-02-26T08:00:00Z' - - '2023-02-26T09:00:00Z' - - '2023-02-26T10:00:00Z' - - '2023-02-26T11:00:00Z' - - '2023-02-26T12:00:00Z' - - '2023-02-26T13:00:00Z' - - '2023-02-26T14:00:00Z' - - '2023-02-26T15:00:00Z' - - '2023-02-26T16:00:00Z' - - '2023-02-26T17:00:00Z' - - '2023-02-26T18:00:00Z' - - '2023-02-26T19:00:00Z' - - '2023-02-26T20:00:00Z' - - '2023-02-26T21:00:00Z' - - '2023-02-26T22:00:00Z' - - '2023-02-26T23:00:00Z' - - '2023-02-27T00:00:00Z' - - '2023-02-27T01:00:00Z' - - '2023-02-27T02:00:00Z' - - '2023-02-27T03:00:00Z' - - '2023-02-27T04:00:00Z' - - '2023-02-27T05:00:00Z' - - '2023-02-27T06:00:00Z' - - '2023-02-27T07:00:00Z' - - '2023-02-27T08:00:00Z' - - '2023-02-27T09:00:00Z' - - '2023-02-27T10:00:00Z' - - '2023-02-27T11:00:00Z' - - '2023-02-27T12:00:00Z' - - '2023-02-27T13:00:00Z' - - '2023-02-27T14:00:00Z' - - '2023-02-27T15:00:00Z' - - '2023-02-27T16:00:00Z' - - '2023-02-27T17:00:00Z' - - '2023-02-27T18:00:00Z' - - '2023-02-27T19:00:00Z' - - '2023-02-27T20:00:00Z' - - '2023-02-27T21:00:00Z' - - '2023-02-27T22:00:00Z' - - '2023-02-27T23:00:00Z' - - '2023-02-28T00:00:00Z' - - '2023-02-28T01:00:00Z' - - '2023-02-28T02:00:00Z' - - '2023-02-28T03:00:00Z' - - '2023-02-28T04:00:00Z' - - '2023-02-28T05:00:00Z' - - '2023-02-28T06:00:00Z' - - '2023-02-28T07:00:00Z' - - '2023-02-28T08:00:00Z' - - '2023-02-28T09:00:00Z' - - '2023-02-28T10:00:00Z' - - '2023-02-28T11:00:00Z' - - '2023-02-28T12:00:00Z' - - '2023-02-28T13:00:00Z' - - '2023-02-28T14:00:00Z' - - '2023-02-28T15:00:00Z' - - '2023-02-28T16:00:00Z' - - '2023-02-28T17:00:00Z' - - '2023-02-28T18:00:00Z' - - '2023-02-28T19:00:00Z' - - '2023-02-28T20:00:00Z' - - '2023-02-28T21:00:00Z' - - '2023-02-28T22:00:00Z' - - '2023-02-28T23:00:00Z' - - '2023-03-01T00:00:00Z' - - '2023-03-01T01:00:00Z' - - '2023-03-01T02:00:00Z' - - '2023-03-01T03:00:00Z' - - '2023-03-01T04:00:00Z' - - '2023-03-01T05:00:00Z' - - '2023-03-01T06:00:00Z' - - '2023-03-01T07:00:00Z' - - '2023-03-01T08:00:00Z' - - '2023-03-01T09:00:00Z' - - '2023-03-01T10:00:00Z' - - '2023-03-01T11:00:00Z' - - '2023-03-01T12:00:00Z' - - '2023-03-01T13:00:00Z' - - '2023-03-01T14:00:00Z' - - '2023-03-01T15:00:00Z' - - '2023-03-01T16:00:00Z' - - '2023-03-01T17:00:00Z' - - '2023-03-01T18:00:00Z' - - '2023-03-01T19:00:00Z' - - '2023-03-01T20:00:00Z' - - '2023-03-01T21:00:00Z' - - '2023-03-01T22:00:00Z' - - '2023-03-01T23:00:00Z' - - '2023-03-02T00:00:00Z' - - '2023-03-02T01:00:00Z' - - '2023-03-02T02:00:00Z' - - '2023-03-02T03:00:00Z' - - '2023-03-02T04:00:00Z' - - '2023-03-02T05:00:00Z' - - '2023-03-02T06:00:00Z' - - '2023-03-02T07:00:00Z' - - '2023-03-02T08:00:00Z' - - '2023-03-02T09:00:00Z' - - '2023-03-02T10:00:00Z' - - '2023-03-02T11:00:00Z' - - '2023-03-02T12:00:00Z' - - '2023-03-02T13:00:00Z' - - '2023-03-02T14:00:00Z' - - '2023-03-02T15:00:00Z' - - '2023-03-02T16:00:00Z' - - '2023-03-02T17:00:00Z' - - '2023-03-02T18:00:00Z' - - '2023-03-02T19:00:00Z' - - '2023-03-02T20:00:00Z' - - '2023-03-02T21:00:00Z' - - '2023-03-02T22:00:00Z' - - '2023-03-02T23:00:00Z' - - '2023-03-03T00:00:00Z' - - '2023-03-03T01:00:00Z' - - '2023-03-03T02:00:00Z' - - '2023-03-03T03:00:00Z' - - '2023-03-03T04:00:00Z' - - '2023-03-03T05:00:00Z' - - '2023-03-03T06:00:00Z' - - '2023-03-03T07:00:00Z' - - '2023-03-03T08:00:00Z' - - '2023-03-03T09:00:00Z' - - '2023-03-03T10:00:00Z' - - '2023-03-03T11:00:00Z' - - '2023-03-03T12:00:00Z' - - '2023-03-03T13:00:00Z' - - '2023-03-03T14:00:00Z' - - '2023-03-03T15:00:00Z' - - '2023-03-03T16:00:00Z' - - '2023-03-03T17:00:00Z' - - '2023-03-03T18:00:00Z' - - '2023-03-03T19:00:00Z' - - '2023-03-03T20:00:00Z' - - '2023-03-03T21:00:00Z' - - '2023-03-03T22:00:00Z' - - '2023-03-03T23:00:00Z' - - '2023-03-04T00:00:00Z' - - '2023-03-04T01:00:00Z' - - '2023-03-04T02:00:00Z' - - '2023-03-04T03:00:00Z' - - '2023-03-04T04:00:00Z' - - '2023-03-04T05:00:00Z' - - '2023-03-04T06:00:00Z' - - '2023-03-04T07:00:00Z' - - '2023-03-04T08:00:00Z' - - '2023-03-04T09:00:00Z' - - '2023-03-04T10:00:00Z' - - '2023-03-04T11:00:00Z' - - '2023-03-04T12:00:00Z' - - '2023-03-04T13:00:00Z' - - '2023-03-04T14:00:00Z' - - '2023-03-04T15:00:00Z' - - '2023-03-04T16:00:00Z' - - '2023-03-04T17:00:00Z' - - '2023-03-04T18:00:00Z' - - '2023-03-04T19:00:00Z' - - '2023-03-04T20:00:00Z' - - '2023-03-04T21:00:00Z' - - '2023-03-04T22:00:00Z' - - '2023-03-04T23:00:00Z' - - '2023-03-05T00:00:00Z' - - '2023-03-05T01:00:00Z' - - '2023-03-05T02:00:00Z' - - '2023-03-05T03:00:00Z' - - '2023-03-05T04:00:00Z' - - '2023-03-05T05:00:00Z' - - '2023-03-05T06:00:00Z' - - '2023-03-05T07:00:00Z' - - '2023-03-05T08:00:00Z' - - '2023-03-05T09:00:00Z' - - '2023-03-05T10:00:00Z' - - '2023-03-05T11:00:00Z' - - '2023-03-05T12:00:00Z' - - '2023-03-05T13:00:00Z' - - '2023-03-05T14:00:00Z' - - '2023-03-05T15:00:00Z' - - '2023-03-05T16:00:00Z' - - '2023-03-05T17:00:00Z' - - '2023-03-05T18:00:00Z' - - '2023-03-05T19:00:00Z' - - '2023-03-05T20:00:00Z' - - '2023-03-05T21:00:00Z' - - '2023-03-05T22:00:00Z' - - '2023-03-05T23:00:00Z' - - '2023-03-06T00:00:00Z' - - '2023-03-06T01:00:00Z' - - '2023-03-06T02:00:00Z' - - '2023-03-06T03:00:00Z' - - '2023-03-06T04:00:00Z' - - '2023-03-06T05:00:00Z' - - '2023-03-06T06:00:00Z' - - '2023-03-06T07:00:00Z' - - '2023-03-06T08:00:00Z' - - '2023-03-06T09:00:00Z' - - '2023-03-06T10:00:00Z' - - '2023-03-06T11:00:00Z' - - '2023-03-06T12:00:00Z' - - '2023-03-06T13:00:00Z' - - '2023-03-06T14:00:00Z' - - '2023-03-06T15:00:00Z' - - '2023-03-06T16:00:00Z' - - '2023-03-06T17:00:00Z' - - '2023-03-06T18:00:00Z' - - '2023-03-06T19:00:00Z' - - '2023-03-06T20:00:00Z' - - '2023-03-06T21:00:00Z' - - '2023-03-06T22:00:00Z' - - '2023-03-06T23:00:00Z' - - '2023-03-07T00:00:00Z' - - '2023-03-07T01:00:00Z' - - '2023-03-07T02:00:00Z' - - '2023-03-07T03:00:00Z' - - '2023-03-07T04:00:00Z' - - '2023-03-07T05:00:00Z' - - '2023-03-07T06:00:00Z' - - '2023-03-07T07:00:00Z' - - '2023-03-07T08:00:00Z' - - '2023-03-07T09:00:00Z' - - '2023-03-07T10:00:00Z' - - '2023-03-07T11:00:00Z' - - '2023-03-07T12:00:00Z' - - '2023-03-07T13:00:00Z' - - '2023-03-07T14:00:00Z' - - '2023-03-07T15:00:00Z' - - '2023-03-07T16:00:00Z' - - '2023-03-07T17:00:00Z' - - '2023-03-07T18:00:00Z' - - '2023-03-07T19:00:00Z' - - '2023-03-07T20:00:00Z' - - '2023-03-07T21:00:00Z' - - '2023-03-07T22:00:00Z' - - '2023-03-07T23:00:00Z' - - '2023-03-08T00:00:00Z' - - '2023-03-08T01:00:00Z' - - '2023-03-08T02:00:00Z' - - '2023-03-08T03:00:00Z' - - '2023-03-08T04:00:00Z' - - '2023-03-08T05:00:00Z' - - '2023-03-08T06:00:00Z' - - '2023-03-08T07:00:00Z' - - '2023-03-08T08:00:00Z' - - '2023-03-08T09:00:00Z' - - '2023-03-08T10:00:00Z' - - '2023-03-08T11:00:00Z' - - '2023-03-08T12:00:00Z' - - '2023-03-08T13:00:00Z' - - '2023-03-08T14:00:00Z' - - '2023-03-08T15:00:00Z' - - '2023-03-08T16:00:00Z' - - '2023-03-08T17:00:00Z' - - '2023-03-08T18:00:00Z' - - '2023-03-08T19:00:00Z' - - '2023-03-08T20:00:00Z' - - '2023-03-08T21:00:00Z' - - '2023-03-08T22:00:00Z' - - '2023-03-08T23:00:00Z' - - '2023-03-09T00:00:00Z' - - '2023-03-09T01:00:00Z' - - '2023-03-09T02:00:00Z' - - '2023-03-09T03:00:00Z' - - '2023-03-09T04:00:00Z' - - '2023-03-09T05:00:00Z' - - '2023-03-09T06:00:00Z' - - '2023-03-09T07:00:00Z' - - '2023-03-09T08:00:00Z' - - '2023-03-09T09:00:00Z' - - '2023-03-09T10:00:00Z' - - '2023-03-09T11:00:00Z' - - '2023-03-09T12:00:00Z' - - '2023-03-09T13:00:00Z' - - '2023-03-09T14:00:00Z' - - '2023-03-09T15:00:00Z' - - '2023-03-09T16:00:00Z' - - '2023-03-09T17:00:00Z' - - '2023-03-09T18:00:00Z' - - '2023-03-09T19:00:00Z' - - '2023-03-09T20:00:00Z' - - '2023-03-09T21:00:00Z' - - '2023-03-09T22:00:00Z' - - '2023-03-09T23:00:00Z' - - '2023-03-10T00:00:00Z' - - '2023-03-10T01:00:00Z' - - '2023-03-10T02:00:00Z' - - '2023-03-10T03:00:00Z' - - '2023-03-10T04:00:00Z' - - '2023-03-10T05:00:00Z' - - '2023-03-10T06:00:00Z' - - '2023-03-10T07:00:00Z' - - '2023-03-10T08:00:00Z' - - '2023-03-10T09:00:00Z' - - '2023-03-10T10:00:00Z' - - '2023-03-10T11:00:00Z' - - '2023-03-10T12:00:00Z' - - '2023-03-10T13:00:00Z' - - '2023-03-10T14:00:00Z' - - '2023-03-10T15:00:00Z' - - '2023-03-10T16:00:00Z' - - '2023-03-10T17:00:00Z' - - '2023-03-10T18:00:00Z' - - '2023-03-10T19:00:00Z' - - '2023-03-10T20:00:00Z' - - '2023-03-10T21:00:00Z' - - '2023-03-10T22:00:00Z' - - '2023-03-10T23:00:00Z' - - '2023-03-11T00:00:00Z' - - '2023-03-11T01:00:00Z' - - '2023-03-11T02:00:00Z' - - '2023-03-11T03:00:00Z' - - '2023-03-11T04:00:00Z' - - '2023-03-11T05:00:00Z' - - '2023-03-11T06:00:00Z' - - '2023-03-11T07:00:00Z' - - '2023-03-11T08:00:00Z' - - '2023-03-11T09:00:00Z' - - '2023-03-11T10:00:00Z' - - '2023-03-11T11:00:00Z' - - '2023-03-11T12:00:00Z' - - '2023-03-11T13:00:00Z' - - '2023-03-11T14:00:00Z' - - '2023-03-11T15:00:00Z' - - '2023-03-11T16:00:00Z' - - '2023-03-11T17:00:00Z' - - '2023-03-11T18:00:00Z' - - '2023-03-11T19:00:00Z' - - '2023-03-11T20:00:00Z' - - '2023-03-11T21:00:00Z' - - '2023-03-11T22:00:00Z' - - '2023-03-11T23:00:00Z' - - '2023-03-12T00:00:00Z' - - '2023-03-12T01:00:00Z' - - '2023-03-12T02:00:00Z' - - '2023-03-12T03:00:00Z' - - '2023-03-12T04:00:00Z' - - '2023-03-12T05:00:00Z' - - '2023-03-12T06:00:00Z' - - '2023-03-12T07:00:00Z' - - '2023-03-12T08:00:00Z' - - '2023-03-12T09:00:00Z' - - '2023-03-12T10:00:00Z' - - '2023-03-12T11:00:00Z' - - '2023-03-12T12:00:00Z' - - '2023-03-12T13:00:00Z' - - '2023-03-12T14:00:00Z' - - '2023-03-12T15:00:00Z' - - '2023-03-12T16:00:00Z' - - '2023-03-12T17:00:00Z' - - '2023-03-12T18:00:00Z' - - '2023-03-12T19:00:00Z' - - '2023-03-12T20:00:00Z' - - '2023-03-12T21:00:00Z' - - '2023-03-12T22:00:00Z' - - '2023-03-12T23:00:00Z' - - '2023-03-13T00:00:00Z' - - '2023-03-13T01:00:00Z' - - '2023-03-13T02:00:00Z' - - '2023-03-13T03:00:00Z' - - '2023-03-13T04:00:00Z' - - '2023-03-13T05:00:00Z' - - '2023-03-13T06:00:00Z' - - '2023-03-13T07:00:00Z' - - '2023-03-13T08:00:00Z' - - '2023-03-13T09:00:00Z' - - '2023-03-13T10:00:00Z' - - '2023-03-13T11:00:00Z' - - '2023-03-13T12:00:00Z' - - '2023-03-13T13:00:00Z' - - '2023-03-13T14:00:00Z' - - '2023-03-13T15:00:00Z' - - '2023-03-13T16:00:00Z' - - '2023-03-13T17:00:00Z' - - '2023-03-13T18:00:00Z' - - '2023-03-13T19:00:00Z' - - '2023-03-13T20:00:00Z' - - '2023-03-13T21:00:00Z' - - '2023-03-13T22:00:00Z' - - '2023-03-13T23:00:00Z' - - '2023-03-14T00:00:00Z' - - '2023-03-14T01:00:00Z' - - '2023-03-14T02:00:00Z' - - '2023-03-14T03:00:00Z' - - '2023-03-14T04:00:00Z' - - '2023-03-14T05:00:00Z' - - '2023-03-14T06:00:00Z' - - '2023-03-14T07:00:00Z' - - '2023-03-14T08:00:00Z' - - '2023-03-14T09:00:00Z' - - '2023-03-14T10:00:00Z' - - '2023-03-14T11:00:00Z' - - '2023-03-14T12:00:00Z' - - '2023-03-14T13:00:00Z' - - '2023-03-14T14:00:00Z' - - '2023-03-14T15:00:00Z' - - '2023-03-14T16:00:00Z' - - '2023-03-14T17:00:00Z' - - '2023-03-14T18:00:00Z' - - '2023-03-14T19:00:00Z' - - '2023-03-14T20:00:00Z' - - '2023-03-14T21:00:00Z' - - '2023-03-14T22:00:00Z' - - '2023-03-14T23:00:00Z' - - '2023-03-15T00:00:00Z' - - '2023-03-15T01:00:00Z' - - '2023-03-15T02:00:00Z' - - '2023-03-15T03:00:00Z' - - '2023-03-15T04:00:00Z' - - '2023-03-15T05:00:00Z' - - '2023-03-15T06:00:00Z' - - '2023-03-15T07:00:00Z' - - '2023-03-15T08:00:00Z' - - '2023-03-15T09:00:00Z' - - '2023-03-15T10:00:00Z' - - '2023-03-15T11:00:00Z' - - '2023-03-15T12:00:00Z' - - '2023-03-15T13:00:00Z' - - '2023-03-15T14:00:00Z' - - '2023-03-15T15:00:00Z' - - '2023-03-15T16:00:00Z' - - '2023-03-15T17:00:00Z' - - '2023-03-15T18:00:00Z' - - '2023-03-15T19:00:00Z' - - '2023-03-15T20:00:00Z' - - '2023-03-15T21:00:00Z' - - '2023-03-15T22:00:00Z' - - '2023-03-15T23:00:00Z' - - '2023-03-16T00:00:00Z' - - '2023-03-16T01:00:00Z' - - '2023-03-16T02:00:00Z' - - '2023-03-16T03:00:00Z' - - '2023-03-16T04:00:00Z' - - '2023-03-16T05:00:00Z' - - '2023-03-16T06:00:00Z' - - '2023-03-16T07:00:00Z' - - '2023-03-16T08:00:00Z' - - '2023-03-16T09:00:00Z' - - '2023-03-16T10:00:00Z' - - '2023-03-16T11:00:00Z' - - '2023-03-16T12:00:00Z' - - '2023-03-16T13:00:00Z' - - '2023-03-16T14:00:00Z' - - '2023-03-16T15:00:00Z' - - '2023-03-16T16:00:00Z' - - '2023-03-16T17:00:00Z' - - '2023-03-16T18:00:00Z' - - '2023-03-16T19:00:00Z' - - '2023-03-16T20:00:00Z' - - '2023-03-16T21:00:00Z' - - '2023-03-16T22:00:00Z' - - '2023-03-16T23:00:00Z' - - '2023-03-17T00:00:00Z' - - '2023-03-17T01:00:00Z' - - '2023-03-17T02:00:00Z' - - '2023-03-17T03:00:00Z' - - '2023-03-17T04:00:00Z' - - '2023-03-17T05:00:00Z' - - '2023-03-17T06:00:00Z' - - '2023-03-17T07:00:00Z' - - '2023-03-17T08:00:00Z' - - '2023-03-17T09:00:00Z' - - '2023-03-17T10:00:00Z' - - '2023-03-17T11:00:00Z' - - '2023-03-17T12:00:00Z' - - '2023-03-17T13:00:00Z' - - '2023-03-17T14:00:00Z' - - '2023-03-17T15:00:00Z' - - '2023-03-17T16:00:00Z' - - '2023-03-17T17:00:00Z' - - '2023-03-17T18:00:00Z' - - '2023-03-17T19:00:00Z' - - '2023-03-17T20:00:00Z' - - '2023-03-17T21:00:00Z' - - '2023-03-17T22:00:00Z' - - '2023-03-17T23:00:00Z' - - '2023-03-18T00:00:00Z' - - '2023-03-18T01:00:00Z' - - '2023-03-18T02:00:00Z' - - '2023-03-18T03:00:00Z' - - '2023-03-18T04:00:00Z' - - '2023-03-18T05:00:00Z' - - '2023-03-18T06:00:00Z' - - '2023-03-18T07:00:00Z' - - '2023-03-18T08:00:00Z' - - '2023-03-18T09:00:00Z' - - '2023-03-18T10:00:00Z' - - '2023-03-18T11:00:00Z' - - '2023-03-18T12:00:00Z' - - '2023-03-18T13:00:00Z' - - '2023-03-18T14:00:00Z' - - '2023-03-18T15:00:00Z' - - '2023-03-18T16:00:00Z' - - '2023-03-18T17:00:00Z' - - '2023-03-18T18:00:00Z' - - '2023-03-18T19:00:00Z' - - '2023-03-18T20:00:00Z' - - '2023-03-18T21:00:00Z' - - '2023-03-18T22:00:00Z' - - '2023-03-18T23:00:00Z' - - '2023-03-19T00:00:00Z' - - '2023-03-19T01:00:00Z' - - '2023-03-19T02:00:00Z' - - '2023-03-19T03:00:00Z' - - '2023-03-19T04:00:00Z' - - '2023-03-19T05:00:00Z' - - '2023-03-19T06:00:00Z' - - '2023-03-19T07:00:00Z' - - '2023-03-19T08:00:00Z' - - '2023-03-19T09:00:00Z' - - '2023-03-19T10:00:00Z' - - '2023-03-19T11:00:00Z' - - '2023-03-19T12:00:00Z' - - '2023-03-19T13:00:00Z' - - '2023-03-19T14:00:00Z' - - '2023-03-19T15:00:00Z' - - '2023-03-19T16:00:00Z' - - '2023-03-19T17:00:00Z' - - '2023-03-19T18:00:00Z' - - '2023-03-19T19:00:00Z' - - '2023-03-19T20:00:00Z' - - '2023-03-19T21:00:00Z' - - '2023-03-19T22:00:00Z' - - '2023-03-19T23:00:00Z' - - '2023-03-20T00:00:00Z' - - '2023-03-20T01:00:00Z' - - '2023-03-20T02:00:00Z' - - '2023-03-20T03:00:00Z' - - '2023-03-20T04:00:00Z' - - '2023-03-20T05:00:00Z' - - '2023-03-20T06:00:00Z' - - '2023-03-20T07:00:00Z' - - '2023-03-20T08:00:00Z' - - '2023-03-20T09:00:00Z' - - '2023-03-20T10:00:00Z' - - '2023-03-20T11:00:00Z' - - '2023-03-20T12:00:00Z' - - '2023-03-20T13:00:00Z' - - '2023-03-20T14:00:00Z' - - '2023-03-20T15:00:00Z' - - '2023-03-20T16:00:00Z' - - '2023-03-20T17:00:00Z' - - '2023-03-20T18:00:00Z' - - '2023-03-20T19:00:00Z' - - '2023-03-20T20:00:00Z' - - '2023-03-20T21:00:00Z' - - '2023-03-20T22:00:00Z' - - '2023-03-20T23:00:00Z' - - '2023-03-21T00:00:00Z' - - '2023-03-21T01:00:00Z' - - '2023-03-21T02:00:00Z' - - '2023-03-21T03:00:00Z' - - '2023-03-21T04:00:00Z' - - '2023-03-21T05:00:00Z' - - '2023-03-21T06:00:00Z' - - '2023-03-21T07:00:00Z' - - '2023-03-21T08:00:00Z' - - '2023-03-21T09:00:00Z' - - '2023-03-21T10:00:00Z' - - '2023-03-21T11:00:00Z' - - '2023-03-21T12:00:00Z' - - '2023-03-21T13:00:00Z' - - '2023-03-21T14:00:00Z' - - '2023-03-21T15:00:00Z' - - '2023-03-21T16:00:00Z' - - '2023-03-21T17:00:00Z' - - '2023-03-21T18:00:00Z' - - '2023-03-21T19:00:00Z' - - '2023-03-21T20:00:00Z' - - '2023-03-21T21:00:00Z' - - '2023-03-21T22:00:00Z' - - '2023-03-21T23:00:00Z' - - '2023-03-22T00:00:00Z' - - '2023-03-22T01:00:00Z' - - '2023-03-22T02:00:00Z' - - '2023-03-22T03:00:00Z' - - '2023-03-22T04:00:00Z' - - '2023-03-22T05:00:00Z' - - '2023-03-22T06:00:00Z' - - '2023-03-22T07:00:00Z' - - '2023-03-22T08:00:00Z' - - '2023-03-22T09:00:00Z' - - '2023-03-22T10:00:00Z' - - '2023-03-22T11:00:00Z' - - '2023-03-22T12:00:00Z' - - '2023-03-22T13:00:00Z' - - '2023-03-22T14:00:00Z' - - '2023-03-22T15:00:00Z' - - '2023-03-22T16:00:00Z' - - '2023-03-22T17:00:00Z' - - '2023-03-22T18:00:00Z' - - '2023-03-22T19:00:00Z' - - '2023-03-22T20:00:00Z' - - '2023-03-22T21:00:00Z' - - '2023-03-22T22:00:00Z' - - '2023-03-22T23:00:00Z' - - '2023-03-23T00:00:00Z' - - '2023-03-23T01:00:00Z' - - '2023-03-23T02:00:00Z' - - '2023-03-23T03:00:00Z' - - '2023-03-23T04:00:00Z' - - '2023-03-23T05:00:00Z' - - '2023-03-23T06:00:00Z' - - '2023-03-23T07:00:00Z' - - '2023-03-23T08:00:00Z' - - '2023-03-23T09:00:00Z' - - '2023-03-23T10:00:00Z' - - '2023-03-23T11:00:00Z' - - '2023-03-23T12:00:00Z' - - '2023-03-23T13:00:00Z' - - '2023-03-23T14:00:00Z' - - '2023-03-23T15:00:00Z' - - '2023-03-23T16:00:00Z' - - '2023-03-23T17:00:00Z' - - '2023-03-23T18:00:00Z' - - '2023-03-23T19:00:00Z' - - '2023-03-23T20:00:00Z' - - '2023-03-23T21:00:00Z' - - '2023-03-23T22:00:00Z' - - '2023-03-23T23:00:00Z' - - '2023-03-24T00:00:00Z' - - '2023-03-24T01:00:00Z' - - '2023-03-24T02:00:00Z' - - '2023-03-24T03:00:00Z' - - '2023-03-24T04:00:00Z' - - '2023-03-24T05:00:00Z' - - '2023-03-24T06:00:00Z' - - '2023-03-24T07:00:00Z' - - '2023-03-24T08:00:00Z' - - '2023-03-24T09:00:00Z' - - '2023-03-24T10:00:00Z' - - '2023-03-24T11:00:00Z' - - '2023-03-24T12:00:00Z' - - '2023-03-24T13:00:00Z' - - '2023-03-24T14:00:00Z' - - '2023-03-24T15:00:00Z' - - '2023-03-24T16:00:00Z' - - '2023-03-24T17:00:00Z' - - '2023-03-24T18:00:00Z' - - '2023-03-24T19:00:00Z' - - '2023-03-24T20:00:00Z' - - '2023-03-24T21:00:00Z' - - '2023-03-24T22:00:00Z' - - '2023-03-24T23:00:00Z' - - '2023-03-25T00:00:00Z' - - '2023-03-25T01:00:00Z' - - '2023-03-25T02:00:00Z' - - '2023-03-25T03:00:00Z' - - '2023-03-25T04:00:00Z' - - '2023-03-25T05:00:00Z' - - '2023-03-25T06:00:00Z' - - '2023-03-25T07:00:00Z' - - '2023-03-25T08:00:00Z' - - '2023-03-25T09:00:00Z' - - '2023-03-25T10:00:00Z' - - '2023-03-25T11:00:00Z' - - '2023-03-25T12:00:00Z' - - '2023-03-25T13:00:00Z' - - '2023-03-25T14:00:00Z' - - '2023-03-25T15:00:00Z' - - '2023-03-25T16:00:00Z' - - '2023-03-25T17:00:00Z' - - '2023-03-25T18:00:00Z' - - '2023-03-25T19:00:00Z' - - '2023-03-25T20:00:00Z' - - '2023-03-25T21:00:00Z' - - '2023-03-25T22:00:00Z' - - '2023-03-25T23:00:00Z' - - '2023-03-26T00:00:00Z' - - '2023-03-26T01:00:00Z' - - '2023-03-26T02:00:00Z' - - '2023-03-26T03:00:00Z' - - '2023-03-26T04:00:00Z' - - '2023-03-26T05:00:00Z' - - '2023-03-26T06:00:00Z' - - '2023-03-26T07:00:00Z' - - '2023-03-26T08:00:00Z' - - '2023-03-26T09:00:00Z' - - '2023-03-26T10:00:00Z' - - '2023-03-26T11:00:00Z' - - '2023-03-26T12:00:00Z' - - '2023-03-26T13:00:00Z' - - '2023-03-26T14:00:00Z' - - '2023-03-26T15:00:00Z' - - '2023-03-26T16:00:00Z' - - '2023-03-26T17:00:00Z' - - '2023-03-26T18:00:00Z' - - '2023-03-26T19:00:00Z' - - '2023-03-26T20:00:00Z' - - '2023-03-26T21:00:00Z' - - '2023-03-26T22:00:00Z' - - '2023-03-26T23:00:00Z' - - '2023-03-27T00:00:00Z' - - '2023-03-27T01:00:00Z' - - '2023-03-27T02:00:00Z' - - '2023-03-27T03:00:00Z' - - '2023-03-27T04:00:00Z' - - '2023-03-27T05:00:00Z' - - '2023-03-27T06:00:00Z' - - '2023-03-27T07:00:00Z' - - '2023-03-27T08:00:00Z' - - '2023-03-27T09:00:00Z' - - '2023-03-27T10:00:00Z' - - '2023-03-27T11:00:00Z' - - '2023-03-27T12:00:00Z' - - '2023-03-27T13:00:00Z' - - '2023-03-27T14:00:00Z' - - '2023-03-27T15:00:00Z' - - '2023-03-27T16:00:00Z' - - '2023-03-27T17:00:00Z' - - '2023-03-27T18:00:00Z' - - '2023-03-27T19:00:00Z' - - '2023-03-27T20:00:00Z' - - '2023-03-27T21:00:00Z' - - '2023-03-27T22:00:00Z' - - '2023-03-27T23:00:00Z' - - '2023-03-28T00:00:00Z' - - '2023-03-28T01:00:00Z' - - '2023-03-28T02:00:00Z' - - '2023-03-28T03:00:00Z' - - '2023-03-28T04:00:00Z' - - '2023-03-28T05:00:00Z' - - '2023-03-28T06:00:00Z' - - '2023-03-28T07:00:00Z' - - '2023-03-28T08:00:00Z' - - '2023-03-28T09:00:00Z' - - '2023-03-28T10:00:00Z' - - '2023-03-28T11:00:00Z' - - '2023-03-28T12:00:00Z' - - '2023-03-28T13:00:00Z' - - '2023-03-28T14:00:00Z' - - '2023-03-28T15:00:00Z' - - '2023-03-28T16:00:00Z' - - '2023-03-28T17:00:00Z' - - '2023-03-28T18:00:00Z' - - '2023-03-28T19:00:00Z' - - '2023-03-28T20:00:00Z' - - '2023-03-28T21:00:00Z' - - '2023-03-28T22:00:00Z' - - '2023-03-28T23:00:00Z' - - '2023-03-29T00:00:00Z' - - '2023-03-29T01:00:00Z' - - '2023-03-29T02:00:00Z' - - '2023-03-29T03:00:00Z' - - '2023-03-29T04:00:00Z' - - '2023-03-29T05:00:00Z' - - '2023-03-29T06:00:00Z' - - '2023-03-29T07:00:00Z' - - '2023-03-29T08:00:00Z' - - '2023-03-29T09:00:00Z' - - '2023-03-29T10:00:00Z' - - '2023-03-29T11:00:00Z' - - '2023-03-29T12:00:00Z' - - '2023-03-29T13:00:00Z' - - '2023-03-29T14:00:00Z' - - '2023-03-29T15:00:00Z' - - '2023-03-29T16:00:00Z' - - '2023-03-29T17:00:00Z' - - '2023-03-29T18:00:00Z' - - '2023-03-29T19:00:00Z' - - '2023-03-29T20:00:00Z' - - '2023-03-29T21:00:00Z' - - '2023-03-29T22:00:00Z' - - '2023-03-29T23:00:00Z' - - '2023-03-30T00:00:00Z' - - '2023-03-30T01:00:00Z' - - '2023-03-30T02:00:00Z' - - '2023-03-30T03:00:00Z' - - '2023-03-30T04:00:00Z' - - '2023-03-30T05:00:00Z' - - '2023-03-30T06:00:00Z' - - '2023-03-30T07:00:00Z' - - '2023-03-30T08:00:00Z' - - '2023-03-30T09:00:00Z' - - '2023-03-30T10:00:00Z' - - '2023-03-30T11:00:00Z' - - '2023-03-30T12:00:00Z' - - '2023-03-30T13:00:00Z' - - '2023-03-30T14:00:00Z' - - '2023-03-30T15:00:00Z' - - '2023-03-30T16:00:00Z' - - '2023-03-30T17:00:00Z' - - '2023-03-30T18:00:00Z' - - '2023-03-30T19:00:00Z' - - '2023-03-30T20:00:00Z' - - '2023-03-30T21:00:00Z' - - '2023-03-30T22:00:00Z' - - '2023-03-30T23:00:00Z' - - '2023-03-31T00:00:00Z' - - '2023-03-31T01:00:00Z' - - '2023-03-31T02:00:00Z' - - '2023-03-31T03:00:00Z' - - '2023-03-31T04:00:00Z' - - '2023-03-31T05:00:00Z' - - '2023-03-31T06:00:00Z' - - '2023-03-31T07:00:00Z' - - '2023-03-31T08:00:00Z' - - '2023-03-31T09:00:00Z' - - '2023-03-31T10:00:00Z' - - '2023-03-31T11:00:00Z' - - '2023-03-31T12:00:00Z' - - '2023-03-31T13:00:00Z' - - '2023-03-31T14:00:00Z' - - '2023-03-31T15:00:00Z' - - '2023-03-31T16:00:00Z' - - '2023-03-31T17:00:00Z' - - '2023-03-31T18:00:00Z' - - '2023-03-31T19:00:00Z' - - '2023-03-31T20:00:00Z' - - '2023-03-31T21:00:00Z' - - '2023-03-31T22:00:00Z' - - '2023-03-31T23:00:00Z' - - '2023-04-01T00:00:00Z' - - '2023-04-01T01:00:00Z' - - '2023-04-01T02:00:00Z' - - '2023-04-01T03:00:00Z' - - '2023-04-01T04:00:00Z' - - '2023-04-01T05:00:00Z' - - '2023-04-01T06:00:00Z' - - '2023-04-01T07:00:00Z' - - '2023-04-01T08:00:00Z' - - '2023-04-01T09:00:00Z' - - '2023-04-01T10:00:00Z' - - '2023-04-01T11:00:00Z' - - '2023-04-01T12:00:00Z' - - '2023-04-01T13:00:00Z' - - '2023-04-01T14:00:00Z' - - '2023-04-01T15:00:00Z' - - '2023-04-01T16:00:00Z' - - '2023-04-01T17:00:00Z' - - '2023-04-01T18:00:00Z' - - '2023-04-01T19:00:00Z' - - '2023-04-01T20:00:00Z' - - '2023-04-01T21:00:00Z' - - '2023-04-01T22:00:00Z' - - '2023-04-01T23:00:00Z' - - '2023-04-02T00:00:00Z' - - '2023-04-02T01:00:00Z' - - '2023-04-02T02:00:00Z' - - '2023-04-02T03:00:00Z' - - '2023-04-02T04:00:00Z' - - '2023-04-02T05:00:00Z' - - '2023-04-02T06:00:00Z' - - '2023-04-02T07:00:00Z' - - '2023-04-02T08:00:00Z' - - '2023-04-02T09:00:00Z' - - '2023-04-02T10:00:00Z' - - '2023-04-02T11:00:00Z' - - '2023-04-02T12:00:00Z' - - '2023-04-02T13:00:00Z' - - '2023-04-02T14:00:00Z' - - '2023-04-02T15:00:00Z' - - '2023-04-02T16:00:00Z' - - '2023-04-02T17:00:00Z' - - '2023-04-02T18:00:00Z' - - '2023-04-02T19:00:00Z' - - '2023-04-02T20:00:00Z' - - '2023-04-02T21:00:00Z' - - '2023-04-02T22:00:00Z' - - '2023-04-02T23:00:00Z' - - '2023-04-03T00:00:00Z' - - '2023-04-03T01:00:00Z' - - '2023-04-03T02:00:00Z' - - '2023-04-03T03:00:00Z' - - '2023-04-03T04:00:00Z' - - '2023-04-03T05:00:00Z' - - '2023-04-03T06:00:00Z' - - '2023-04-03T07:00:00Z' - - '2023-04-03T08:00:00Z' - - '2023-04-03T09:00:00Z' - - '2023-04-03T10:00:00Z' - - '2023-04-03T11:00:00Z' - - '2023-04-03T12:00:00Z' - - '2023-04-03T13:00:00Z' - - '2023-04-03T14:00:00Z' - - '2023-04-03T15:00:00Z' - - '2023-04-03T16:00:00Z' - - '2023-04-03T17:00:00Z' - - '2023-04-03T18:00:00Z' - - '2023-04-03T19:00:00Z' - - '2023-04-03T20:00:00Z' - - '2023-04-03T21:00:00Z' - - '2023-04-03T22:00:00Z' - - '2023-04-03T23:00:00Z' - - '2023-04-04T00:00:00Z' - - '2023-04-04T01:00:00Z' - - '2023-04-04T02:00:00Z' - - '2023-04-04T03:00:00Z' - - '2023-04-04T04:00:00Z' - - '2023-04-04T05:00:00Z' - - '2023-04-04T06:00:00Z' - - '2023-04-04T07:00:00Z' - - '2023-04-04T08:00:00Z' - - '2023-04-04T09:00:00Z' - - '2023-04-04T10:00:00Z' - - '2023-04-04T11:00:00Z' - - '2023-04-04T12:00:00Z' - - '2023-04-04T13:00:00Z' - - '2023-04-04T14:00:00Z' - - '2023-04-04T15:00:00Z' - - '2023-04-04T16:00:00Z' - - '2023-04-04T17:00:00Z' - - '2023-04-04T18:00:00Z' - - '2023-04-04T19:00:00Z' - - '2023-04-04T20:00:00Z' - - '2023-04-04T21:00:00Z' - - '2023-04-04T22:00:00Z' - - '2023-04-04T23:00:00Z' - - '2023-04-05T00:00:00Z' - - '2023-04-05T01:00:00Z' - - '2023-04-05T02:00:00Z' - - '2023-04-05T03:00:00Z' - - '2023-04-05T04:00:00Z' - - '2023-04-05T05:00:00Z' - - '2023-04-05T06:00:00Z' - - '2023-04-05T07:00:00Z' - - '2023-04-05T08:00:00Z' - - '2023-04-05T09:00:00Z' - - '2023-04-05T10:00:00Z' - - '2023-04-05T11:00:00Z' - - '2023-04-05T12:00:00Z' - - '2023-04-05T13:00:00Z' - - '2023-04-05T14:00:00Z' - - '2023-04-05T15:00:00Z' - - '2023-04-05T16:00:00Z' - - '2023-04-05T17:00:00Z' - - '2023-04-05T18:00:00Z' - - '2023-04-05T19:00:00Z' - - '2023-04-05T20:00:00Z' - - '2023-04-05T21:00:00Z' - - '2023-04-05T22:00:00Z' - - '2023-04-05T23:00:00Z' - - '2023-04-06T00:00:00Z' - - '2023-04-06T01:00:00Z' - - '2023-04-06T02:00:00Z' - - '2023-04-06T03:00:00Z' - - '2023-04-06T04:00:00Z' - - '2023-04-06T05:00:00Z' - - '2023-04-06T06:00:00Z' - - '2023-04-06T07:00:00Z' - - '2023-04-06T08:00:00Z' - - '2023-04-06T09:00:00Z' - - '2023-04-06T10:00:00Z' - - '2023-04-06T11:00:00Z' - - '2023-04-06T12:00:00Z' - - '2023-04-06T13:00:00Z' - - '2023-04-06T14:00:00Z' - - '2023-04-06T15:00:00Z' - - '2023-04-06T16:00:00Z' - - '2023-04-06T17:00:00Z' - - '2023-04-06T18:00:00Z' - - '2023-04-06T19:00:00Z' - - '2023-04-06T20:00:00Z' - - '2023-04-06T21:00:00Z' - - '2023-04-06T22:00:00Z' - - '2023-04-06T23:00:00Z' - - '2023-04-07T00:00:00Z' - - '2023-04-07T01:00:00Z' - - '2023-04-07T02:00:00Z' - - '2023-04-07T03:00:00Z' - - '2023-04-07T04:00:00Z' - - '2023-04-07T05:00:00Z' - - '2023-04-07T06:00:00Z' - - '2023-04-07T07:00:00Z' - - '2023-04-07T08:00:00Z' - - '2023-04-07T09:00:00Z' - - '2023-04-07T10:00:00Z' - - '2023-04-07T11:00:00Z' - - '2023-04-07T12:00:00Z' - - '2023-04-07T13:00:00Z' - - '2023-04-07T14:00:00Z' - - '2023-04-07T15:00:00Z' - - '2023-04-07T16:00:00Z' - - '2023-04-07T17:00:00Z' - - '2023-04-07T18:00:00Z' - - '2023-04-07T19:00:00Z' - - '2023-04-07T20:00:00Z' - - '2023-04-07T21:00:00Z' - - '2023-04-07T22:00:00Z' - - '2023-04-07T23:00:00Z' - - '2023-04-08T00:00:00Z' - - '2023-04-08T01:00:00Z' - - '2023-04-08T02:00:00Z' - - '2023-04-08T03:00:00Z' - - '2023-04-08T04:00:00Z' - - '2023-04-08T05:00:00Z' - - '2023-04-08T06:00:00Z' - - '2023-04-08T07:00:00Z' - - '2023-04-08T08:00:00Z' - - '2023-04-08T09:00:00Z' - - '2023-04-08T10:00:00Z' - - '2023-04-08T11:00:00Z' - - '2023-04-08T12:00:00Z' - - '2023-04-08T13:00:00Z' - - '2023-04-08T14:00:00Z' - - '2023-04-08T15:00:00Z' - - '2023-04-08T16:00:00Z' - - '2023-04-08T17:00:00Z' - - '2023-04-08T18:00:00Z' - - '2023-04-08T19:00:00Z' - - '2023-04-08T20:00:00Z' - - '2023-04-08T21:00:00Z' - - '2023-04-08T22:00:00Z' - - '2023-04-08T23:00:00Z' - - '2023-04-09T00:00:00Z' - - '2023-04-09T01:00:00Z' - - '2023-04-09T02:00:00Z' - - '2023-04-09T03:00:00Z' - - '2023-04-09T04:00:00Z' - - '2023-04-09T05:00:00Z' - - '2023-04-09T06:00:00Z' - - '2023-04-09T07:00:00Z' - - '2023-04-09T08:00:00Z' - - '2023-04-09T09:00:00Z' - - '2023-04-09T10:00:00Z' - - '2023-04-09T11:00:00Z' - - '2023-04-09T12:00:00Z' - - '2023-04-09T13:00:00Z' - - '2023-04-09T14:00:00Z' - - '2023-04-09T15:00:00Z' - - '2023-04-09T16:00:00Z' - - '2023-04-09T17:00:00Z' - - '2023-04-09T18:00:00Z' - - '2023-04-09T19:00:00Z' - - '2023-04-09T20:00:00Z' - - '2023-04-09T21:00:00Z' - - '2023-04-09T22:00:00Z' - - '2023-04-09T23:00:00Z' - - '2023-04-10T00:00:00Z' - - '2023-04-10T01:00:00Z' - - '2023-04-10T02:00:00Z' - - '2023-04-10T03:00:00Z' - - '2023-04-10T04:00:00Z' - - '2023-04-10T05:00:00Z' - - '2023-04-10T06:00:00Z' - - '2023-04-10T07:00:00Z' - - '2023-04-10T08:00:00Z' - - '2023-04-10T09:00:00Z' - - '2023-04-10T10:00:00Z' - - '2023-04-10T11:00:00Z' - - '2023-04-10T12:00:00Z' - - '2023-04-10T13:00:00Z' - - '2023-04-10T14:00:00Z' - - '2023-04-10T15:00:00Z' - - '2023-04-10T16:00:00Z' - - '2023-04-10T17:00:00Z' - - '2023-04-10T18:00:00Z' - - '2023-04-10T19:00:00Z' - - '2023-04-10T20:00:00Z' - - '2023-04-10T21:00:00Z' - - '2023-04-10T22:00:00Z' - - '2023-04-10T23:00:00Z' - - '2023-04-11T00:00:00Z' - - '2023-04-11T01:00:00Z' - - '2023-04-11T02:00:00Z' - - '2023-04-11T03:00:00Z' - - '2023-04-11T04:00:00Z' - - '2023-04-11T05:00:00Z' - - '2023-04-11T06:00:00Z' - - '2023-04-11T07:00:00Z' - - '2023-04-11T08:00:00Z' - - '2023-04-11T09:00:00Z' - - '2023-04-11T10:00:00Z' - - '2023-04-11T11:00:00Z' - - '2023-04-11T12:00:00Z' - - '2023-04-11T13:00:00Z' - - '2023-04-11T14:00:00Z' - - '2023-04-11T15:00:00Z' - - '2023-04-11T16:00:00Z' - - '2023-04-11T17:00:00Z' - - '2023-04-11T18:00:00Z' - - '2023-04-11T19:00:00Z' - - '2023-04-11T20:00:00Z' - - '2023-04-11T21:00:00Z' - - '2023-04-11T22:00:00Z' - - '2023-04-11T23:00:00Z' - - '2023-04-12T00:00:00Z' - - '2023-04-12T01:00:00Z' - - '2023-04-12T02:00:00Z' - - '2023-04-12T03:00:00Z' - - '2023-04-12T04:00:00Z' - - '2023-04-12T05:00:00Z' - - '2023-04-12T06:00:00Z' - - '2023-04-12T07:00:00Z' - - '2023-04-12T08:00:00Z' - - '2023-04-12T09:00:00Z' - - '2023-04-12T10:00:00Z' - - '2023-04-12T11:00:00Z' - - '2023-04-12T12:00:00Z' - - '2023-04-12T13:00:00Z' - - '2023-04-12T14:00:00Z' - - '2023-04-12T15:00:00Z' - - '2023-04-12T16:00:00Z' - - '2023-04-12T17:00:00Z' - - '2023-04-12T18:00:00Z' - - '2023-04-12T19:00:00Z' - - '2023-04-12T20:00:00Z' - - '2023-04-12T21:00:00Z' - - '2023-04-12T22:00:00Z' - - '2023-04-12T23:00:00Z' - - '2023-04-13T00:00:00Z' - - '2023-04-13T01:00:00Z' - - '2023-04-13T02:00:00Z' - - '2023-04-13T03:00:00Z' - - '2023-04-13T04:00:00Z' - - '2023-04-13T05:00:00Z' - - '2023-04-13T06:00:00Z' - - '2023-04-13T07:00:00Z' - - '2023-04-13T08:00:00Z' - - '2023-04-13T09:00:00Z' - - '2023-04-13T10:00:00Z' - - '2023-04-13T11:00:00Z' - - '2023-04-13T12:00:00Z' - - '2023-04-13T13:00:00Z' - - '2023-04-13T14:00:00Z' - - '2023-04-13T15:00:00Z' - - '2023-04-13T16:00:00Z' - - '2023-04-13T17:00:00Z' - - '2023-04-13T18:00:00Z' - - '2023-04-13T19:00:00Z' - - '2023-04-13T20:00:00Z' - - '2023-04-13T21:00:00Z' - - '2023-04-13T22:00:00Z' - - '2023-04-13T23:00:00Z' - - '2023-04-14T00:00:00Z' - - '2023-04-14T01:00:00Z' - - '2023-04-14T02:00:00Z' - - '2023-04-14T03:00:00Z' - - '2023-04-14T04:00:00Z' - - '2023-04-14T05:00:00Z' - - '2023-04-14T06:00:00Z' - - '2023-04-14T07:00:00Z' - - '2023-04-14T08:00:00Z' - - '2023-04-14T09:00:00Z' - - '2023-04-14T10:00:00Z' - - '2023-04-14T11:00:00Z' - - '2023-04-14T12:00:00Z' - - '2023-04-14T13:00:00Z' - - '2023-04-14T14:00:00Z' - - '2023-04-14T15:00:00Z' - - '2023-04-14T16:00:00Z' - - '2023-04-14T17:00:00Z' - - '2023-04-14T18:00:00Z' - - '2023-04-14T19:00:00Z' - - '2023-04-14T20:00:00Z' - - '2023-04-14T21:00:00Z' - - '2023-04-14T22:00:00Z' - - '2023-04-14T23:00:00Z' - - '2023-04-15T00:00:00Z' - - '2023-04-15T01:00:00Z' - - '2023-04-15T02:00:00Z' - - '2023-04-15T03:00:00Z' - - '2023-04-15T04:00:00Z' - - '2023-04-15T05:00:00Z' - - '2023-04-15T06:00:00Z' - - '2023-04-15T07:00:00Z' - - '2023-04-15T08:00:00Z' - - '2023-04-15T09:00:00Z' - - '2023-04-15T10:00:00Z' - - '2023-04-15T11:00:00Z' - - '2023-04-15T12:00:00Z' - - '2023-04-15T13:00:00Z' - - '2023-04-15T14:00:00Z' - - '2023-04-15T15:00:00Z' - - '2023-04-15T16:00:00Z' - - '2023-04-15T17:00:00Z' - - '2023-04-15T18:00:00Z' - - '2023-04-15T19:00:00Z' - - '2023-04-15T20:00:00Z' - - '2023-04-15T21:00:00Z' - - '2023-04-15T22:00:00Z' - - '2023-04-15T23:00:00Z' - - '2023-04-16T00:00:00Z' - - '2023-04-16T01:00:00Z' - - '2023-04-16T02:00:00Z' - - '2023-04-16T03:00:00Z' - - '2023-04-16T04:00:00Z' - - '2023-04-16T05:00:00Z' - - '2023-04-16T06:00:00Z' - - '2023-04-16T07:00:00Z' - - '2023-04-16T08:00:00Z' - - '2023-04-16T09:00:00Z' - - '2023-04-16T10:00:00Z' - - '2023-04-16T11:00:00Z' - - '2023-04-16T12:00:00Z' - - '2023-04-16T13:00:00Z' - - '2023-04-16T14:00:00Z' - - '2023-04-16T15:00:00Z' - - '2023-04-16T16:00:00Z' - - '2023-04-16T17:00:00Z' - - '2023-04-16T18:00:00Z' - - '2023-04-16T19:00:00Z' - - '2023-04-16T20:00:00Z' - - '2023-04-16T21:00:00Z' - - '2023-04-16T22:00:00Z' - - '2023-04-16T23:00:00Z' - - '2023-04-17T00:00:00Z' - - '2023-04-17T01:00:00Z' - - '2023-04-17T02:00:00Z' - - '2023-04-17T03:00:00Z' - - '2023-04-17T04:00:00Z' - - '2023-04-17T05:00:00Z' - - '2023-04-17T06:00:00Z' - - '2023-04-17T07:00:00Z' - - '2023-04-17T08:00:00Z' - - '2023-04-17T09:00:00Z' - - '2023-04-17T10:00:00Z' - - '2023-04-17T11:00:00Z' - - '2023-04-17T12:00:00Z' - - '2023-04-17T13:00:00Z' - - '2023-04-17T14:00:00Z' - - '2023-04-17T15:00:00Z' - - '2023-04-17T16:00:00Z' - - '2023-04-17T17:00:00Z' - - '2023-04-17T18:00:00Z' - - '2023-04-17T19:00:00Z' - - '2023-04-17T20:00:00Z' - - '2023-04-17T21:00:00Z' - - '2023-04-17T22:00:00Z' - - '2023-04-17T23:00:00Z' - - '2023-04-18T00:00:00Z' - - '2023-04-18T01:00:00Z' - - '2023-04-18T02:00:00Z' - - '2023-04-18T03:00:00Z' - - '2023-04-18T04:00:00Z' - - '2023-04-18T05:00:00Z' - - '2023-04-18T06:00:00Z' - - '2023-04-18T07:00:00Z' - - '2023-04-18T08:00:00Z' - - '2023-04-18T09:00:00Z' - - '2023-04-18T10:00:00Z' - - '2023-04-18T11:00:00Z' - - '2023-04-18T12:00:00Z' - - '2023-04-18T13:00:00Z' - - '2023-04-18T14:00:00Z' - - '2023-04-18T15:00:00Z' - - '2023-04-18T16:00:00Z' - - '2023-04-18T17:00:00Z' - - '2023-04-18T18:00:00Z' - - '2023-04-18T19:00:00Z' - - '2023-04-18T20:00:00Z' - - '2023-04-18T21:00:00Z' - - '2023-04-18T22:00:00Z' - - '2023-04-18T23:00:00Z' - - '2023-04-19T00:00:00Z' - - '2023-04-19T01:00:00Z' - - '2023-04-19T02:00:00Z' - - '2023-04-19T03:00:00Z' - - '2023-04-19T04:00:00Z' - - '2023-04-19T05:00:00Z' - - '2023-04-19T06:00:00Z' - - '2023-04-19T07:00:00Z' - - '2023-04-19T08:00:00Z' - - '2023-04-19T09:00:00Z' - - '2023-04-19T10:00:00Z' - - '2023-04-19T11:00:00Z' - - '2023-04-19T12:00:00Z' - - '2023-04-19T13:00:00Z' - - '2023-04-19T14:00:00Z' - - '2023-04-19T15:00:00Z' - - '2023-04-19T16:00:00Z' - - '2023-04-19T17:00:00Z' - - '2023-04-19T18:00:00Z' - - '2023-04-19T19:00:00Z' - - '2023-04-19T20:00:00Z' - - '2023-04-19T21:00:00Z' - - '2023-04-19T22:00:00Z' - - '2023-04-19T23:00:00Z' - - '2023-04-20T00:00:00Z' - - '2023-04-20T01:00:00Z' - - '2023-04-20T02:00:00Z' - - '2023-04-20T03:00:00Z' - - '2023-04-20T04:00:00Z' - - '2023-04-20T05:00:00Z' - - '2023-04-20T06:00:00Z' - - '2023-04-20T07:00:00Z' - - '2023-04-20T08:00:00Z' - - '2023-04-20T09:00:00Z' - - '2023-04-20T10:00:00Z' - - '2023-04-20T11:00:00Z' - - '2023-04-20T12:00:00Z' - - '2023-04-20T13:00:00Z' - - '2023-04-20T14:00:00Z' - - '2023-04-20T15:00:00Z' - - '2023-04-20T16:00:00Z' - - '2023-04-20T17:00:00Z' - - '2023-04-20T18:00:00Z' - - '2023-04-20T19:00:00Z' - - '2023-04-20T20:00:00Z' - - '2023-04-20T21:00:00Z' - - '2023-04-20T22:00:00Z' - - '2023-04-20T23:00:00Z' - - '2023-04-21T00:00:00Z' - - '2023-04-21T01:00:00Z' - - '2023-04-21T02:00:00Z' - - '2023-04-21T03:00:00Z' - - '2023-04-21T04:00:00Z' - - '2023-04-21T05:00:00Z' - - '2023-04-21T06:00:00Z' - - '2023-04-21T07:00:00Z' - - '2023-04-21T08:00:00Z' - - '2023-04-21T09:00:00Z' - - '2023-04-21T10:00:00Z' - - '2023-04-21T11:00:00Z' - - '2023-04-21T12:00:00Z' - - '2023-04-21T13:00:00Z' - - '2023-04-21T14:00:00Z' - - '2023-04-21T15:00:00Z' - - '2023-04-21T16:00:00Z' - - '2023-04-21T17:00:00Z' - - '2023-04-21T18:00:00Z' - - '2023-04-21T19:00:00Z' - - '2023-04-21T20:00:00Z' - - '2023-04-21T21:00:00Z' - - '2023-04-21T22:00:00Z' - - '2023-04-21T23:00:00Z' - - '2023-04-22T00:00:00Z' - - '2023-04-22T01:00:00Z' - - '2023-04-22T02:00:00Z' - - '2023-04-22T03:00:00Z' - - '2023-04-22T04:00:00Z' - - '2023-04-22T05:00:00Z' - - '2023-04-22T06:00:00Z' - - '2023-04-22T07:00:00Z' - - '2023-04-22T08:00:00Z' - - '2023-04-22T09:00:00Z' - - '2023-04-22T10:00:00Z' - - '2023-04-22T11:00:00Z' - - '2023-04-22T12:00:00Z' - - '2023-04-22T13:00:00Z' - - '2023-04-22T14:00:00Z' - - '2023-04-22T15:00:00Z' - - '2023-04-22T16:00:00Z' - - '2023-04-22T17:00:00Z' - - '2023-04-22T18:00:00Z' - - '2023-04-22T19:00:00Z' - - '2023-04-22T20:00:00Z' - - '2023-04-22T21:00:00Z' - - '2023-04-22T22:00:00Z' - - '2023-04-22T23:00:00Z' - - '2023-04-23T00:00:00Z' - - '2023-04-23T01:00:00Z' - - '2023-04-23T02:00:00Z' - - '2023-04-23T03:00:00Z' - - '2023-04-23T04:00:00Z' - - '2023-04-23T05:00:00Z' - - '2023-04-23T06:00:00Z' - - '2023-04-23T07:00:00Z' - - '2023-04-23T08:00:00Z' - - '2023-04-23T09:00:00Z' - - '2023-04-23T10:00:00Z' - - '2023-04-23T11:00:00Z' - - '2023-04-23T12:00:00Z' - - '2023-04-23T13:00:00Z' - - '2023-04-23T14:00:00Z' - - '2023-04-23T15:00:00Z' - - '2023-04-23T16:00:00Z' - - '2023-04-23T17:00:00Z' - - '2023-04-23T18:00:00Z' - - '2023-04-23T19:00:00Z' - - '2023-04-23T20:00:00Z' - - '2023-04-23T21:00:00Z' - - '2023-04-23T22:00:00Z' - - '2023-04-23T23:00:00Z' - - '2023-04-24T00:00:00Z' - - '2023-04-24T01:00:00Z' - - '2023-04-24T02:00:00Z' - - '2023-04-24T03:00:00Z' - - '2023-04-24T04:00:00Z' - - '2023-04-24T05:00:00Z' - - '2023-04-24T06:00:00Z' - - '2023-04-24T07:00:00Z' - - '2023-04-24T08:00:00Z' - - '2023-04-24T09:00:00Z' - - '2023-04-24T10:00:00Z' - - '2023-04-24T11:00:00Z' - - '2023-04-24T12:00:00Z' - - '2023-04-24T13:00:00Z' - - '2023-04-24T14:00:00Z' - - '2023-04-24T15:00:00Z' - - '2023-04-24T16:00:00Z' - - '2023-04-24T17:00:00Z' - - '2023-04-24T18:00:00Z' - - '2023-04-24T19:00:00Z' - - '2023-04-24T20:00:00Z' - - '2023-04-24T21:00:00Z' - - '2023-04-24T22:00:00Z' - - '2023-04-24T23:00:00Z' - - '2023-04-25T00:00:00Z' - - '2023-04-25T01:00:00Z' - - '2023-04-25T02:00:00Z' - - '2023-04-25T03:00:00Z' - - '2023-04-25T04:00:00Z' - - '2023-04-25T05:00:00Z' - - '2023-04-25T06:00:00Z' - - '2023-04-25T07:00:00Z' - - '2023-04-25T08:00:00Z' - - '2023-04-25T09:00:00Z' - - '2023-04-25T10:00:00Z' - - '2023-04-25T11:00:00Z' - - '2023-04-25T12:00:00Z' - - '2023-04-25T13:00:00Z' - - '2023-04-25T14:00:00Z' - - '2023-04-25T15:00:00Z' - - '2023-04-25T16:00:00Z' - - '2023-04-25T17:00:00Z' - - '2023-04-25T18:00:00Z' - - '2023-04-25T19:00:00Z' - - '2023-04-25T20:00:00Z' - - '2023-04-25T21:00:00Z' - - '2023-04-25T22:00:00Z' - - '2023-04-25T23:00:00Z' - - '2023-04-26T00:00:00Z' - - '2023-04-26T01:00:00Z' - - '2023-04-26T02:00:00Z' - - '2023-04-26T03:00:00Z' - - '2023-04-26T04:00:00Z' - - '2023-04-26T05:00:00Z' - - '2023-04-26T06:00:00Z' - - '2023-04-26T07:00:00Z' - - '2023-04-26T08:00:00Z' - - '2023-04-26T09:00:00Z' - - '2023-04-26T10:00:00Z' - - '2023-04-26T11:00:00Z' - - '2023-04-26T12:00:00Z' - - '2023-04-26T13:00:00Z' - - '2023-04-26T14:00:00Z' - - '2023-04-26T15:00:00Z' - - '2023-04-26T16:00:00Z' - - '2023-04-26T17:00:00Z' - - '2023-04-26T18:00:00Z' - - '2023-04-26T19:00:00Z' - - '2023-04-26T20:00:00Z' - - '2023-04-26T21:00:00Z' - - '2023-04-26T22:00:00Z' - - '2023-04-26T23:00:00Z' - - '2023-04-27T00:00:00Z' - - '2023-04-27T01:00:00Z' - - '2023-04-27T02:00:00Z' - - '2023-04-27T03:00:00Z' - - '2023-04-27T04:00:00Z' - - '2023-04-27T05:00:00Z' - - '2023-04-27T06:00:00Z' - - '2023-04-27T07:00:00Z' - - '2023-04-27T08:00:00Z' - - '2023-04-27T09:00:00Z' - - '2023-04-27T10:00:00Z' - - '2023-04-27T11:00:00Z' - - '2023-04-27T12:00:00Z' - - '2023-04-27T13:00:00Z' - - '2023-04-27T14:00:00Z' - - '2023-04-27T15:00:00Z' - - '2023-04-27T16:00:00Z' - - '2023-04-27T17:00:00Z' - - '2023-04-27T18:00:00Z' - - '2023-04-27T19:00:00Z' - - '2023-04-27T20:00:00Z' - - '2023-04-27T21:00:00Z' - - '2023-04-27T22:00:00Z' - - '2023-04-27T23:00:00Z' - - '2023-04-28T00:00:00Z' - - '2023-04-28T01:00:00Z' - - '2023-04-28T02:00:00Z' - - '2023-04-28T03:00:00Z' - - '2023-04-28T04:00:00Z' - - '2023-04-28T05:00:00Z' - - '2023-04-28T06:00:00Z' - - '2023-04-28T07:00:00Z' - - '2023-04-28T08:00:00Z' - - '2023-04-28T09:00:00Z' - - '2023-04-28T10:00:00Z' - - '2023-04-28T11:00:00Z' - - '2023-04-28T12:00:00Z' - - '2023-04-28T13:00:00Z' - - '2023-04-28T14:00:00Z' - - '2023-04-28T15:00:00Z' - - '2023-04-28T16:00:00Z' - - '2023-04-28T17:00:00Z' - - '2023-04-28T18:00:00Z' - - '2023-04-28T19:00:00Z' - - '2023-04-28T20:00:00Z' - - '2023-04-28T21:00:00Z' - - '2023-04-28T22:00:00Z' - - '2023-04-28T23:00:00Z' - - '2023-04-29T00:00:00Z' - - '2023-04-29T01:00:00Z' - - '2023-04-29T02:00:00Z' - - '2023-04-29T03:00:00Z' - - '2023-04-29T04:00:00Z' - - '2023-04-29T05:00:00Z' - - '2023-04-29T06:00:00Z' - - '2023-04-29T07:00:00Z' - - '2023-04-29T08:00:00Z' - - '2023-04-29T09:00:00Z' - - '2023-04-29T10:00:00Z' - - '2023-04-29T11:00:00Z' - - '2023-04-29T12:00:00Z' - - '2023-04-29T13:00:00Z' - - '2023-04-29T14:00:00Z' - - '2023-04-29T15:00:00Z' - - '2023-04-29T16:00:00Z' - - '2023-04-29T17:00:00Z' - - '2023-04-29T18:00:00Z' - - '2023-04-29T19:00:00Z' - - '2023-04-29T20:00:00Z' - - '2023-04-29T21:00:00Z' - - '2023-04-29T22:00:00Z' - - '2023-04-29T23:00:00Z' - - '2023-04-30T00:00:00Z' - - '2023-04-30T01:00:00Z' - - '2023-04-30T02:00:00Z' - - '2023-04-30T03:00:00Z' - - '2023-04-30T04:00:00Z' - - '2023-04-30T05:00:00Z' - - '2023-04-30T06:00:00Z' - - '2023-04-30T07:00:00Z' - - '2023-04-30T08:00:00Z' - - '2023-04-30T09:00:00Z' - - '2023-04-30T10:00:00Z' - - '2023-04-30T11:00:00Z' - - '2023-04-30T12:00:00Z' - - '2023-04-30T13:00:00Z' - - '2023-04-30T14:00:00Z' - - '2023-04-30T15:00:00Z' - - '2023-04-30T16:00:00Z' - - '2023-04-30T17:00:00Z' - - '2023-04-30T18:00:00Z' - - '2023-04-30T19:00:00Z' - - '2023-04-30T20:00:00Z' - - '2023-04-30T21:00:00Z' - - '2023-04-30T22:00:00Z' - - '2023-04-30T23:00:00Z' - - '2023-05-01T00:00:00Z' - - '2023-05-01T01:00:00Z' - - '2023-05-01T02:00:00Z' - - '2023-05-01T03:00:00Z' - - '2023-05-01T04:00:00Z' - - '2023-05-01T05:00:00Z' - - '2023-05-01T06:00:00Z' - - '2023-05-01T07:00:00Z' - - '2023-05-01T08:00:00Z' - - '2023-05-01T09:00:00Z' - - '2023-05-01T10:00:00Z' - - '2023-05-01T11:00:00Z' - - '2023-05-01T12:00:00Z' - - '2023-05-01T13:00:00Z' - - '2023-05-01T14:00:00Z' - - '2023-05-01T15:00:00Z' - - '2023-05-01T16:00:00Z' - - '2023-05-01T17:00:00Z' - - '2023-05-01T18:00:00Z' - - '2023-05-01T19:00:00Z' - - '2023-05-01T20:00:00Z' - - '2023-05-01T21:00:00Z' - - '2023-05-01T22:00:00Z' - - '2023-05-01T23:00:00Z' - - '2023-05-02T00:00:00Z' - - '2023-05-02T01:00:00Z' - - '2023-05-02T02:00:00Z' - - '2023-05-02T03:00:00Z' - - '2023-05-02T04:00:00Z' - - '2023-05-02T05:00:00Z' - - '2023-05-02T06:00:00Z' - - '2023-05-02T07:00:00Z' - - '2023-05-02T08:00:00Z' - - '2023-05-02T09:00:00Z' - - '2023-05-02T10:00:00Z' - - '2023-05-02T11:00:00Z' - - '2023-05-02T12:00:00Z' - - '2023-05-02T13:00:00Z' - - '2023-05-02T14:00:00Z' - - '2023-05-02T15:00:00Z' - - '2023-05-02T16:00:00Z' - - '2023-05-02T17:00:00Z' - - '2023-05-02T18:00:00Z' - - '2023-05-02T19:00:00Z' - - '2023-05-02T20:00:00Z' - - '2023-05-02T21:00:00Z' - - '2023-05-02T22:00:00Z' - - '2023-05-02T23:00:00Z' - - '2023-05-03T00:00:00Z' - - '2023-05-03T01:00:00Z' - - '2023-05-03T02:00:00Z' - - '2023-05-03T03:00:00Z' - - '2023-05-03T04:00:00Z' - - '2023-05-03T05:00:00Z' - - '2023-05-03T06:00:00Z' - - '2023-05-03T07:00:00Z' - - '2023-05-03T08:00:00Z' - - '2023-05-03T09:00:00Z' - - '2023-05-03T10:00:00Z' - - '2023-05-03T11:00:00Z' - - '2023-05-03T12:00:00Z' - - '2023-05-03T13:00:00Z' - - '2023-05-03T14:00:00Z' - - '2023-05-03T15:00:00Z' - - '2023-05-03T16:00:00Z' - - '2023-05-03T17:00:00Z' - - '2023-05-03T18:00:00Z' - - '2023-05-03T19:00:00Z' - - '2023-05-03T20:00:00Z' - - '2023-05-03T21:00:00Z' - - '2023-05-03T22:00:00Z' - - '2023-05-03T23:00:00Z' - - '2023-05-04T00:00:00Z' - - '2023-05-04T01:00:00Z' - - '2023-05-04T02:00:00Z' - - '2023-05-04T03:00:00Z' - - '2023-05-04T04:00:00Z' - - '2023-05-04T05:00:00Z' - - '2023-05-04T06:00:00Z' - - '2023-05-04T07:00:00Z' - - '2023-05-04T08:00:00Z' - - '2023-05-04T09:00:00Z' - - '2023-05-04T10:00:00Z' - - '2023-05-04T11:00:00Z' - - '2023-05-04T12:00:00Z' - - '2023-05-04T13:00:00Z' - - '2023-05-04T14:00:00Z' - - '2023-05-04T15:00:00Z' - - '2023-05-04T16:00:00Z' - - '2023-05-04T17:00:00Z' - - '2023-05-04T18:00:00Z' - - '2023-05-04T19:00:00Z' - - '2023-05-04T20:00:00Z' - - '2023-05-04T21:00:00Z' - - '2023-05-04T22:00:00Z' - - '2023-05-04T23:00:00Z' - - '2023-05-05T00:00:00Z' - - '2023-05-05T01:00:00Z' - - '2023-05-05T02:00:00Z' - - '2023-05-05T03:00:00Z' - - '2023-05-05T04:00:00Z' - - '2023-05-05T05:00:00Z' - - '2023-05-05T06:00:00Z' - - '2023-05-05T07:00:00Z' - - '2023-05-05T08:00:00Z' - - '2023-05-05T09:00:00Z' - - '2023-05-05T10:00:00Z' - - '2023-05-05T11:00:00Z' - - '2023-05-05T12:00:00Z' - - '2023-05-05T13:00:00Z' - - '2023-05-05T14:00:00Z' - - '2023-05-05T15:00:00Z' - - '2023-05-05T16:00:00Z' - - '2023-05-05T17:00:00Z' - - '2023-05-05T18:00:00Z' - - '2023-05-05T19:00:00Z' - - '2023-05-05T20:00:00Z' - - '2023-05-05T21:00:00Z' - - '2023-05-05T22:00:00Z' - - '2023-05-05T23:00:00Z' - - '2023-05-06T00:00:00Z' - - '2023-05-06T01:00:00Z' - - '2023-05-06T02:00:00Z' - - '2023-05-06T03:00:00Z' - - '2023-05-06T04:00:00Z' - - '2023-05-06T05:00:00Z' - - '2023-05-06T06:00:00Z' - - '2023-05-06T07:00:00Z' - - '2023-05-06T08:00:00Z' - - '2023-05-06T09:00:00Z' - - '2023-05-06T10:00:00Z' - - '2023-05-06T11:00:00Z' - - '2023-05-06T12:00:00Z' - - '2023-05-06T13:00:00Z' - - '2023-05-06T14:00:00Z' - - '2023-05-06T15:00:00Z' - - '2023-05-06T16:00:00Z' - - '2023-05-06T17:00:00Z' - - '2023-05-06T18:00:00Z' - - '2023-05-06T19:00:00Z' - - '2023-05-06T20:00:00Z' - - '2023-05-06T21:00:00Z' - - '2023-05-06T22:00:00Z' - - '2023-05-06T23:00:00Z' - - '2023-05-07T00:00:00Z' - - '2023-05-07T01:00:00Z' - - '2023-05-07T02:00:00Z' - - '2023-05-07T03:00:00Z' - - '2023-05-07T04:00:00Z' - - '2023-05-07T05:00:00Z' - - '2023-05-07T06:00:00Z' - - '2023-05-07T07:00:00Z' - - '2023-05-07T08:00:00Z' - - '2023-05-07T09:00:00Z' - - '2023-05-07T10:00:00Z' - - '2023-05-07T11:00:00Z' - - '2023-05-07T12:00:00Z' - - '2023-05-07T13:00:00Z' - - '2023-05-07T14:00:00Z' - - '2023-05-07T15:00:00Z' - - '2023-05-07T16:00:00Z' - - '2023-05-07T17:00:00Z' - - '2023-05-07T18:00:00Z' - - '2023-05-07T19:00:00Z' - - '2023-05-07T20:00:00Z' - - '2023-05-07T21:00:00Z' - - '2023-05-07T22:00:00Z' - - '2023-05-07T23:00:00Z' - - '2023-05-08T00:00:00Z' - - '2023-05-08T01:00:00Z' - - '2023-05-08T02:00:00Z' - - '2023-05-08T03:00:00Z' - - '2023-05-08T04:00:00Z' - - '2023-05-08T05:00:00Z' - - '2023-05-08T06:00:00Z' - - '2023-05-08T07:00:00Z' - - '2023-05-08T08:00:00Z' - - '2023-05-08T09:00:00Z' - - '2023-05-08T10:00:00Z' - - '2023-05-08T11:00:00Z' - - '2023-05-08T12:00:00Z' - - '2023-05-08T13:00:00Z' - - '2023-05-08T14:00:00Z' - - '2023-05-08T15:00:00Z' - - '2023-05-08T16:00:00Z' - - '2023-05-08T17:00:00Z' - - '2023-05-08T18:00:00Z' - - '2023-05-08T19:00:00Z' - - '2023-05-08T20:00:00Z' - - '2023-05-08T21:00:00Z' - - '2023-05-08T22:00:00Z' - - '2023-05-08T23:00:00Z' - - '2023-05-09T00:00:00Z' - - '2023-05-09T01:00:00Z' - - '2023-05-09T02:00:00Z' - - '2023-05-09T03:00:00Z' - - '2023-05-09T04:00:00Z' - - '2023-05-09T05:00:00Z' - - '2023-05-09T06:00:00Z' - - '2023-05-09T07:00:00Z' - - '2023-05-09T08:00:00Z' - - '2023-05-09T09:00:00Z' - - '2023-05-09T10:00:00Z' - - '2023-05-09T11:00:00Z' - - '2023-05-09T12:00:00Z' - - '2023-05-09T13:00:00Z' - - '2023-05-09T14:00:00Z' - - '2023-05-09T15:00:00Z' - - '2023-05-09T16:00:00Z' - - '2023-05-09T17:00:00Z' - - '2023-05-09T18:00:00Z' - - '2023-05-09T19:00:00Z' - - '2023-05-09T20:00:00Z' - - '2023-05-09T21:00:00Z' - - '2023-05-09T22:00:00Z' - - '2023-05-09T23:00:00Z' - - '2023-05-10T00:00:00Z' - - '2023-05-10T01:00:00Z' - - '2023-05-10T02:00:00Z' - - '2023-05-10T03:00:00Z' - - '2023-05-10T04:00:00Z' - - '2023-05-10T05:00:00Z' - - '2023-05-10T06:00:00Z' - - '2023-05-10T07:00:00Z' - - '2023-05-10T08:00:00Z' - - '2023-05-10T09:00:00Z' - - '2023-05-10T10:00:00Z' - - '2023-05-10T11:00:00Z' - - '2023-05-10T12:00:00Z' - - '2023-05-10T13:00:00Z' - - '2023-05-10T14:00:00Z' - - '2023-05-10T15:00:00Z' - - '2023-05-10T16:00:00Z' - - '2023-05-10T17:00:00Z' - - '2023-05-10T18:00:00Z' - - '2023-05-10T19:00:00Z' - - '2023-05-10T20:00:00Z' - - '2023-05-10T21:00:00Z' - - '2023-05-10T22:00:00Z' - - '2023-05-10T23:00:00Z' - - '2023-05-11T00:00:00Z' - - '2023-05-11T01:00:00Z' - - '2023-05-11T02:00:00Z' - - '2023-05-11T03:00:00Z' - - '2023-05-11T04:00:00Z' - - '2023-05-11T05:00:00Z' - - '2023-05-11T06:00:00Z' - - '2023-05-11T07:00:00Z' - - '2023-05-11T08:00:00Z' - - '2023-05-11T09:00:00Z' - - '2023-05-11T10:00:00Z' - - '2023-05-11T11:00:00Z' - - '2023-05-11T12:00:00Z' - - '2023-05-11T13:00:00Z' - - '2023-05-11T14:00:00Z' - - '2023-05-11T15:00:00Z' - - '2023-05-11T16:00:00Z' - - '2023-05-11T17:00:00Z' - - '2023-05-11T18:00:00Z' - - '2023-05-11T19:00:00Z' - - '2023-05-11T20:00:00Z' - - '2023-05-11T21:00:00Z' - - '2023-05-11T22:00:00Z' - - '2023-05-11T23:00:00Z' - - '2023-05-12T00:00:00Z' - - '2023-05-12T01:00:00Z' - - '2023-05-12T02:00:00Z' - - '2023-05-12T03:00:00Z' - - '2023-05-12T04:00:00Z' - - '2023-05-12T05:00:00Z' - - '2023-05-12T06:00:00Z' - - '2023-05-12T07:00:00Z' - - '2023-05-12T08:00:00Z' - - '2023-05-12T09:00:00Z' - - '2023-05-12T10:00:00Z' - - '2023-05-12T11:00:00Z' - - '2023-05-12T12:00:00Z' - - '2023-05-12T13:00:00Z' - - '2023-05-12T14:00:00Z' - - '2023-05-12T15:00:00Z' - - '2023-05-12T16:00:00Z' - - '2023-05-12T17:00:00Z' - - '2023-05-12T18:00:00Z' - - '2023-05-12T19:00:00Z' - - '2023-05-12T20:00:00Z' - - '2023-05-12T21:00:00Z' - - '2023-05-12T22:00:00Z' - - '2023-05-12T23:00:00Z' - - '2023-05-13T00:00:00Z' - - '2023-05-13T01:00:00Z' - - '2023-05-13T02:00:00Z' - - '2023-05-13T03:00:00Z' - - '2023-05-13T04:00:00Z' - - '2023-05-13T05:00:00Z' - - '2023-05-13T06:00:00Z' - - '2023-05-13T07:00:00Z' - - '2023-05-13T08:00:00Z' - - '2023-05-13T09:00:00Z' - - '2023-05-13T10:00:00Z' - - '2023-05-13T11:00:00Z' - - '2023-05-13T12:00:00Z' - - '2023-05-13T13:00:00Z' - - '2023-05-13T14:00:00Z' - - '2023-05-13T15:00:00Z' - - '2023-05-13T16:00:00Z' - - '2023-05-13T17:00:00Z' - - '2023-05-13T18:00:00Z' - - '2023-05-13T19:00:00Z' - - '2023-05-13T20:00:00Z' - - '2023-05-13T21:00:00Z' - - '2023-05-13T22:00:00Z' - - '2023-05-13T23:00:00Z' - - '2023-05-14T00:00:00Z' - - '2023-05-14T01:00:00Z' - - '2023-05-14T02:00:00Z' - - '2023-05-14T03:00:00Z' - - '2023-05-14T04:00:00Z' - - '2023-05-14T05:00:00Z' - - '2023-05-14T06:00:00Z' - - '2023-05-14T07:00:00Z' - - '2023-05-14T08:00:00Z' - - '2023-05-14T09:00:00Z' - - '2023-05-14T10:00:00Z' - - '2023-05-14T11:00:00Z' - - '2023-05-14T12:00:00Z' - - '2023-05-14T13:00:00Z' - - '2023-05-14T14:00:00Z' - - '2023-05-14T15:00:00Z' - - '2023-05-14T16:00:00Z' - - '2023-05-14T17:00:00Z' - - '2023-05-14T18:00:00Z' - - '2023-05-14T19:00:00Z' - - '2023-05-14T20:00:00Z' - - '2023-05-14T21:00:00Z' - - '2023-05-14T22:00:00Z' - - '2023-05-14T23:00:00Z' - - '2023-05-15T00:00:00Z' - - '2023-05-15T01:00:00Z' - - '2023-05-15T02:00:00Z' - - '2023-05-15T03:00:00Z' - - '2023-05-15T04:00:00Z' - - '2023-05-15T05:00:00Z' - - '2023-05-15T06:00:00Z' - - '2023-05-15T07:00:00Z' - - '2023-05-15T08:00:00Z' - - '2023-05-15T09:00:00Z' - - '2023-05-15T10:00:00Z' - - '2023-05-15T11:00:00Z' - - '2023-05-15T12:00:00Z' - - '2023-05-15T13:00:00Z' - - '2023-05-15T14:00:00Z' - - '2023-05-15T15:00:00Z' - - '2023-05-15T16:00:00Z' - - '2023-05-15T17:00:00Z' - - '2023-05-15T18:00:00Z' - - '2023-05-15T19:00:00Z' - - '2023-05-15T20:00:00Z' - - '2023-05-15T21:00:00Z' - - '2023-05-15T22:00:00Z' - - '2023-05-15T23:00:00Z' - - '2023-05-16T00:00:00Z' - - '2023-05-16T01:00:00Z' - - '2023-05-16T02:00:00Z' - - '2023-05-16T03:00:00Z' - - '2023-05-16T04:00:00Z' - - '2023-05-16T05:00:00Z' - - '2023-05-16T06:00:00Z' - - '2023-05-16T07:00:00Z' - - '2023-05-16T08:00:00Z' - - '2023-05-16T09:00:00Z' - - '2023-05-16T10:00:00Z' - - '2023-05-16T11:00:00Z' - - '2023-05-16T12:00:00Z' - - '2023-05-16T13:00:00Z' - - '2023-05-16T14:00:00Z' - - '2023-05-16T15:00:00Z' - - '2023-05-16T16:00:00Z' - - '2023-05-16T17:00:00Z' - - '2023-05-16T18:00:00Z' - - '2023-05-16T19:00:00Z' - - '2023-05-16T20:00:00Z' - - '2023-05-16T21:00:00Z' - - '2023-05-16T22:00:00Z' - - '2023-05-16T23:00:00Z' - - '2023-05-17T00:00:00Z' - - '2023-05-17T01:00:00Z' - - '2023-05-17T02:00:00Z' - - '2023-05-17T03:00:00Z' - - '2023-05-17T04:00:00Z' - - '2023-05-17T05:00:00Z' - - '2023-05-17T06:00:00Z' - - '2023-05-17T07:00:00Z' - - '2023-05-17T08:00:00Z' - - '2023-05-17T09:00:00Z' - - '2023-05-17T10:00:00Z' - - '2023-05-17T11:00:00Z' - - '2023-05-17T12:00:00Z' - - '2023-05-17T13:00:00Z' - - '2023-05-17T14:00:00Z' - - '2023-05-17T15:00:00Z' - - '2023-05-17T16:00:00Z' - - '2023-05-17T17:00:00Z' - - '2023-05-17T18:00:00Z' - - '2023-05-17T19:00:00Z' - - '2023-05-17T20:00:00Z' - - '2023-05-17T21:00:00Z' - - '2023-05-17T22:00:00Z' - - '2023-05-17T23:00:00Z' - - '2023-05-18T00:00:00Z' - - '2023-05-18T01:00:00Z' - - '2023-05-18T02:00:00Z' - - '2023-05-18T03:00:00Z' - - '2023-05-18T04:00:00Z' - - '2023-05-18T05:00:00Z' - - '2023-05-18T06:00:00Z' - - '2023-05-18T07:00:00Z' - - '2023-05-18T08:00:00Z' - - '2023-05-18T09:00:00Z' - - '2023-05-18T10:00:00Z' - - '2023-05-18T11:00:00Z' - - '2023-05-18T12:00:00Z' - - '2023-05-18T13:00:00Z' - - '2023-05-18T14:00:00Z' - - '2023-05-18T15:00:00Z' - - '2023-05-18T16:00:00Z' - - '2023-05-18T17:00:00Z' - - '2023-05-18T18:00:00Z' - - '2023-05-18T19:00:00Z' - - '2023-05-18T20:00:00Z' - - '2023-05-18T21:00:00Z' - - '2023-05-18T22:00:00Z' - - '2023-05-18T23:00:00Z' - - '2023-05-19T00:00:00Z' - - '2023-05-19T01:00:00Z' - - '2023-05-19T02:00:00Z' - - '2023-05-19T03:00:00Z' - - '2023-05-19T04:00:00Z' - - '2023-05-19T05:00:00Z' - - '2023-05-19T06:00:00Z' - - '2023-05-19T07:00:00Z' - - '2023-05-19T08:00:00Z' - - '2023-05-19T09:00:00Z' - - '2023-05-19T10:00:00Z' - - '2023-05-19T11:00:00Z' - - '2023-05-19T12:00:00Z' - - '2023-05-19T13:00:00Z' - - '2023-05-19T14:00:00Z' - - '2023-05-19T15:00:00Z' - - '2023-05-19T16:00:00Z' - - '2023-05-19T17:00:00Z' - - '2023-05-19T18:00:00Z' - - '2023-05-19T19:00:00Z' - - '2023-05-19T20:00:00Z' - - '2023-05-19T21:00:00Z' - - '2023-05-19T22:00:00Z' - - '2023-05-19T23:00:00Z' - - '2023-05-20T00:00:00Z' - - '2023-05-20T01:00:00Z' - - '2023-05-20T02:00:00Z' - - '2023-05-20T03:00:00Z' - - '2023-05-20T04:00:00Z' - - '2023-05-20T05:00:00Z' - - '2023-05-20T06:00:00Z' - - '2023-05-20T07:00:00Z' - - '2023-05-20T08:00:00Z' - - '2023-05-20T09:00:00Z' - - '2023-05-20T10:00:00Z' - - '2023-05-20T11:00:00Z' - - '2023-05-20T12:00:00Z' - - '2023-05-20T13:00:00Z' - - '2023-05-20T14:00:00Z' - - '2023-05-20T15:00:00Z' - - '2023-05-20T16:00:00Z' - - '2023-05-20T17:00:00Z' - - '2023-05-20T18:00:00Z' - - '2023-05-20T19:00:00Z' - - '2023-05-20T20:00:00Z' - - '2023-05-20T21:00:00Z' - - '2023-05-20T22:00:00Z' - - '2023-05-20T23:00:00Z' - - '2023-05-21T00:00:00Z' - - '2023-05-21T01:00:00Z' - - '2023-05-21T02:00:00Z' - - '2023-05-21T03:00:00Z' - - '2023-05-21T04:00:00Z' - - '2023-05-21T05:00:00Z' - - '2023-05-21T06:00:00Z' - - '2023-05-21T07:00:00Z' - - '2023-05-21T08:00:00Z' - - '2023-05-21T09:00:00Z' - - '2023-05-21T10:00:00Z' - - '2023-05-21T11:00:00Z' - - '2023-05-21T12:00:00Z' - - '2023-05-21T13:00:00Z' - - '2023-05-21T14:00:00Z' - - '2023-05-21T15:00:00Z' - - '2023-05-21T16:00:00Z' - - '2023-05-21T17:00:00Z' - - '2023-05-21T18:00:00Z' - - '2023-05-21T19:00:00Z' - - '2023-05-21T20:00:00Z' - - '2023-05-21T21:00:00Z' - - '2023-05-21T22:00:00Z' - - '2023-05-21T23:00:00Z' - - '2023-05-22T00:00:00Z' - - '2023-05-22T01:00:00Z' - - '2023-05-22T02:00:00Z' - - '2023-05-22T03:00:00Z' - - '2023-05-22T04:00:00Z' - - '2023-05-22T05:00:00Z' - - '2023-05-22T06:00:00Z' - - '2023-05-22T07:00:00Z' - - '2023-05-22T08:00:00Z' - - '2023-05-22T09:00:00Z' - - '2023-05-22T10:00:00Z' - - '2023-05-22T11:00:00Z' - - '2023-05-22T12:00:00Z' - - '2023-05-22T13:00:00Z' - - '2023-05-22T14:00:00Z' - - '2023-05-22T15:00:00Z' - - '2023-05-22T16:00:00Z' - - '2023-05-22T17:00:00Z' - - '2023-05-22T18:00:00Z' - - '2023-05-22T19:00:00Z' - - '2023-05-22T20:00:00Z' - - '2023-05-22T21:00:00Z' - - '2023-05-22T22:00:00Z' - - '2023-05-22T23:00:00Z' - - '2023-05-23T00:00:00Z' - - '2023-05-23T01:00:00Z' - - '2023-05-23T02:00:00Z' - - '2023-05-23T03:00:00Z' - - '2023-05-23T04:00:00Z' - - '2023-05-23T05:00:00Z' - - '2023-05-23T06:00:00Z' - - '2023-05-23T07:00:00Z' - - '2023-05-23T08:00:00Z' - - '2023-05-23T09:00:00Z' - - '2023-05-23T10:00:00Z' - - '2023-05-23T11:00:00Z' - - '2023-05-23T12:00:00Z' - - '2023-05-23T13:00:00Z' - - '2023-05-23T14:00:00Z' - - '2023-05-23T15:00:00Z' - - '2023-05-23T16:00:00Z' - - '2023-05-23T17:00:00Z' - - '2023-05-23T18:00:00Z' - - '2023-05-23T19:00:00Z' - - '2023-05-23T20:00:00Z' - - '2023-05-23T21:00:00Z' - - '2023-05-23T22:00:00Z' - - '2023-05-23T23:00:00Z' - - '2023-05-24T00:00:00Z' - - '2023-05-24T01:00:00Z' - - '2023-05-24T02:00:00Z' - - '2023-05-24T03:00:00Z' - - '2023-05-24T04:00:00Z' - - '2023-05-24T05:00:00Z' - - '2023-05-24T06:00:00Z' - - '2023-05-24T07:00:00Z' - - '2023-05-24T08:00:00Z' - - '2023-05-24T09:00:00Z' - - '2023-05-24T10:00:00Z' - - '2023-05-24T11:00:00Z' - - '2023-05-24T12:00:00Z' - - '2023-05-24T13:00:00Z' - - '2023-05-24T14:00:00Z' - - '2023-05-24T15:00:00Z' - - '2023-05-24T16:00:00Z' - - '2023-05-24T17:00:00Z' - - '2023-05-24T18:00:00Z' - - '2023-05-24T19:00:00Z' - - '2023-05-24T20:00:00Z' - - '2023-05-24T21:00:00Z' - - '2023-05-24T22:00:00Z' - - '2023-05-24T23:00:00Z' - - '2023-05-25T00:00:00Z' - - '2023-05-25T01:00:00Z' - - '2023-05-25T02:00:00Z' - - '2023-05-25T03:00:00Z' - - '2023-05-25T04:00:00Z' - - '2023-05-25T05:00:00Z' - - '2023-05-25T06:00:00Z' - - '2023-05-25T07:00:00Z' - - '2023-05-25T08:00:00Z' - - '2023-05-25T09:00:00Z' - - '2023-05-25T10:00:00Z' - - '2023-05-25T11:00:00Z' - - '2023-05-25T12:00:00Z' - - '2023-05-25T13:00:00Z' - - '2023-05-25T14:00:00Z' - - '2023-05-25T15:00:00Z' - - '2023-05-25T16:00:00Z' - - '2023-05-25T17:00:00Z' - - '2023-05-25T18:00:00Z' - - '2023-05-25T19:00:00Z' - - '2023-05-25T20:00:00Z' - - '2023-05-25T21:00:00Z' - - '2023-05-25T22:00:00Z' - - '2023-05-25T23:00:00Z' - - '2023-05-26T00:00:00Z' - - '2023-05-26T01:00:00Z' - - '2023-05-26T02:00:00Z' - - '2023-05-26T03:00:00Z' - - '2023-05-26T04:00:00Z' - - '2023-05-26T05:00:00Z' - - '2023-05-26T06:00:00Z' - - '2023-05-26T07:00:00Z' - - '2023-05-26T08:00:00Z' - - '2023-05-26T09:00:00Z' - - '2023-05-26T10:00:00Z' - - '2023-05-26T11:00:00Z' - - '2023-05-26T12:00:00Z' - - '2023-05-26T13:00:00Z' - - '2023-05-26T14:00:00Z' - - '2023-05-26T15:00:00Z' - - '2023-05-26T16:00:00Z' - - '2023-05-26T17:00:00Z' - - '2023-05-26T18:00:00Z' - - '2023-05-26T19:00:00Z' - - '2023-05-26T20:00:00Z' - - '2023-05-26T21:00:00Z' - - '2023-05-26T22:00:00Z' - - '2023-05-26T23:00:00Z' - - '2023-05-27T00:00:00Z' - - '2023-05-27T01:00:00Z' - - '2023-05-27T02:00:00Z' - - '2023-05-27T03:00:00Z' - - '2023-05-27T04:00:00Z' - - '2023-05-27T05:00:00Z' - - '2023-05-27T06:00:00Z' - - '2023-05-27T07:00:00Z' - - '2023-05-27T08:00:00Z' - - '2023-05-27T09:00:00Z' - - '2023-05-27T10:00:00Z' - - '2023-05-27T11:00:00Z' - - '2023-05-27T12:00:00Z' - - '2023-05-27T13:00:00Z' - - '2023-05-27T14:00:00Z' - - '2023-05-27T15:00:00Z' - - '2023-05-27T16:00:00Z' - - '2023-05-27T17:00:00Z' - - '2023-05-27T18:00:00Z' - - '2023-05-27T19:00:00Z' - - '2023-05-27T20:00:00Z' - - '2023-05-27T21:00:00Z' - - '2023-05-27T22:00:00Z' - - '2023-05-27T23:00:00Z' - - '2023-05-28T00:00:00Z' - - '2023-05-28T01:00:00Z' - - '2023-05-28T02:00:00Z' - - '2023-05-28T03:00:00Z' - - '2023-05-28T04:00:00Z' - - '2023-05-28T05:00:00Z' - - '2023-05-28T06:00:00Z' - - '2023-05-28T07:00:00Z' - - '2023-05-28T08:00:00Z' - - '2023-05-28T09:00:00Z' - - '2023-05-28T10:00:00Z' - - '2023-05-28T11:00:00Z' - - '2023-05-28T12:00:00Z' - - '2023-05-28T13:00:00Z' - - '2023-05-28T14:00:00Z' - - '2023-05-28T15:00:00Z' - - '2023-05-28T16:00:00Z' - - '2023-05-28T17:00:00Z' - - '2023-05-28T18:00:00Z' - - '2023-05-28T19:00:00Z' - - '2023-05-28T20:00:00Z' - - '2023-05-28T21:00:00Z' - - '2023-05-28T22:00:00Z' - - '2023-05-28T23:00:00Z' - - '2023-05-29T00:00:00Z' - - '2023-05-29T01:00:00Z' - - '2023-05-29T02:00:00Z' - - '2023-05-29T03:00:00Z' - - '2023-05-29T04:00:00Z' - - '2023-05-29T05:00:00Z' - - '2023-05-29T06:00:00Z' - - '2023-05-29T07:00:00Z' - - '2023-05-29T08:00:00Z' - - '2023-05-29T09:00:00Z' - - '2023-05-29T10:00:00Z' - - '2023-05-29T11:00:00Z' - - '2023-05-29T12:00:00Z' - - '2023-05-29T13:00:00Z' - - '2023-05-29T14:00:00Z' - - '2023-05-29T15:00:00Z' - - '2023-05-29T16:00:00Z' - - '2023-05-29T17:00:00Z' - - '2023-05-29T18:00:00Z' - - '2023-05-29T19:00:00Z' - - '2023-05-29T20:00:00Z' - - '2023-05-29T21:00:00Z' - - '2023-05-29T22:00:00Z' - - '2023-05-29T23:00:00Z' - - '2023-05-30T00:00:00Z' - - '2023-05-30T01:00:00Z' - - '2023-05-30T02:00:00Z' - - '2023-05-30T03:00:00Z' - - '2023-05-30T04:00:00Z' - - '2023-05-30T05:00:00Z' - - '2023-05-30T06:00:00Z' - - '2023-05-30T07:00:00Z' - - '2023-05-30T08:00:00Z' - - '2023-05-30T09:00:00Z' - - '2023-05-30T10:00:00Z' - - '2023-05-30T11:00:00Z' - - '2023-05-30T12:00:00Z' - - '2023-05-30T13:00:00Z' - - '2023-05-30T14:00:00Z' - - '2023-05-30T15:00:00Z' - - '2023-05-30T16:00:00Z' - - '2023-05-30T17:00:00Z' - - '2023-05-30T18:00:00Z' - - '2023-05-30T19:00:00Z' - - '2023-05-30T20:00:00Z' - - '2023-05-30T21:00:00Z' - - '2023-05-30T22:00:00Z' - - '2023-05-30T23:00:00Z' - - '2023-05-31T00:00:00Z' - - '2023-05-31T01:00:00Z' - - '2023-05-31T02:00:00Z' - - '2023-05-31T03:00:00Z' - - '2023-05-31T04:00:00Z' - - '2023-05-31T05:00:00Z' - - '2023-05-31T06:00:00Z' - - '2023-05-31T07:00:00Z' - - '2023-05-31T08:00:00Z' - - '2023-05-31T09:00:00Z' - - '2023-05-31T10:00:00Z' - - '2023-05-31T11:00:00Z' - - '2023-05-31T12:00:00Z' - - '2023-05-31T13:00:00Z' - - '2023-05-31T14:00:00Z' - - '2023-05-31T15:00:00Z' - - '2023-05-31T16:00:00Z' - - '2023-05-31T17:00:00Z' - - '2023-05-31T18:00:00Z' - - '2023-05-31T19:00:00Z' - - '2023-05-31T20:00:00Z' - - '2023-05-31T21:00:00Z' - - '2023-05-31T22:00:00Z' - - '2023-05-31T23:00:00Z' - - '2023-06-01T00:00:00Z' - - '2023-06-01T01:00:00Z' - - '2023-06-01T02:00:00Z' - - '2023-06-01T03:00:00Z' - - '2023-06-01T04:00:00Z' - - '2023-06-01T05:00:00Z' - - '2023-06-01T06:00:00Z' - - '2023-06-01T07:00:00Z' - - '2023-06-01T08:00:00Z' - - '2023-06-01T09:00:00Z' - - '2023-06-01T10:00:00Z' - - '2023-06-01T11:00:00Z' - - '2023-06-01T12:00:00Z' - - '2023-06-01T13:00:00Z' - - '2023-06-01T14:00:00Z' - - '2023-06-01T15:00:00Z' - - '2023-06-01T16:00:00Z' - - '2023-06-01T17:00:00Z' - - '2023-06-01T18:00:00Z' - - '2023-06-01T19:00:00Z' - - '2023-06-01T20:00:00Z' - - '2023-06-01T21:00:00Z' - - '2023-06-01T22:00:00Z' - - '2023-06-01T23:00:00Z' - - '2023-06-02T00:00:00Z' - - '2023-06-02T01:00:00Z' - - '2023-06-02T02:00:00Z' - - '2023-06-02T03:00:00Z' - - '2023-06-02T04:00:00Z' - - '2023-06-02T05:00:00Z' - - '2023-06-02T06:00:00Z' - - '2023-06-02T07:00:00Z' - - '2023-06-02T08:00:00Z' - - '2023-06-02T09:00:00Z' - - '2023-06-02T10:00:00Z' - - '2023-06-02T11:00:00Z' - - '2023-06-02T12:00:00Z' - - '2023-06-02T13:00:00Z' - - '2023-06-02T14:00:00Z' - - '2023-06-02T15:00:00Z' - - '2023-06-02T16:00:00Z' - - '2023-06-02T17:00:00Z' - - '2023-06-02T18:00:00Z' - - '2023-06-02T19:00:00Z' - - '2023-06-02T20:00:00Z' - - '2023-06-02T21:00:00Z' - - '2023-06-02T22:00:00Z' - - '2023-06-02T23:00:00Z' - - '2023-06-03T00:00:00Z' - - '2023-06-03T01:00:00Z' - - '2023-06-03T02:00:00Z' - - '2023-06-03T03:00:00Z' - - '2023-06-03T04:00:00Z' - - '2023-06-03T05:00:00Z' - - '2023-06-03T06:00:00Z' - - '2023-06-03T07:00:00Z' - - '2023-06-03T08:00:00Z' - - '2023-06-03T09:00:00Z' - - '2023-06-03T10:00:00Z' - - '2023-06-03T11:00:00Z' - - '2023-06-03T12:00:00Z' - - '2023-06-03T13:00:00Z' - - '2023-06-03T14:00:00Z' - - '2023-06-03T15:00:00Z' - - '2023-06-03T16:00:00Z' - - '2023-06-03T17:00:00Z' - - '2023-06-03T18:00:00Z' - - '2023-06-03T19:00:00Z' - - '2023-06-03T20:00:00Z' - - '2023-06-03T21:00:00Z' - - '2023-06-03T22:00:00Z' - - '2023-06-03T23:00:00Z' - - '2023-06-04T00:00:00Z' - - '2023-06-04T01:00:00Z' - - '2023-06-04T02:00:00Z' - - '2023-06-04T03:00:00Z' - - '2023-06-04T04:00:00Z' - - '2023-06-04T05:00:00Z' - - '2023-06-04T06:00:00Z' - - '2023-06-04T07:00:00Z' - - '2023-06-04T08:00:00Z' - - '2023-06-04T09:00:00Z' - - '2023-06-04T10:00:00Z' - - '2023-06-04T11:00:00Z' - - '2023-06-04T12:00:00Z' - - '2023-06-04T13:00:00Z' - - '2023-06-04T14:00:00Z' - - '2023-06-04T15:00:00Z' - - '2023-06-04T16:00:00Z' - - '2023-06-04T17:00:00Z' - - '2023-06-04T18:00:00Z' - - '2023-06-04T19:00:00Z' - - '2023-06-04T20:00:00Z' - - '2023-06-04T21:00:00Z' - - '2023-06-04T22:00:00Z' - - '2023-06-04T23:00:00Z' - - '2023-06-05T00:00:00Z' - - '2023-06-05T01:00:00Z' - - '2023-06-05T02:00:00Z' - - '2023-06-05T03:00:00Z' - - '2023-06-05T04:00:00Z' - - '2023-06-05T05:00:00Z' - - '2023-06-05T06:00:00Z' - - '2023-06-05T07:00:00Z' - - '2023-06-05T08:00:00Z' - - '2023-06-05T09:00:00Z' - - '2023-06-05T10:00:00Z' - - '2023-06-05T11:00:00Z' - - '2023-06-05T12:00:00Z' - - '2023-06-05T13:00:00Z' - - '2023-06-05T14:00:00Z' - - '2023-06-05T15:00:00Z' - - '2023-06-05T16:00:00Z' - - '2023-06-05T17:00:00Z' - - '2023-06-05T18:00:00Z' - - '2023-06-05T19:00:00Z' - - '2023-06-05T20:00:00Z' - - '2023-06-05T21:00:00Z' - - '2023-06-05T22:00:00Z' - - '2023-06-05T23:00:00Z' - - '2023-06-06T00:00:00Z' - - '2023-06-06T01:00:00Z' - - '2023-06-06T02:00:00Z' - - '2023-06-06T03:00:00Z' - - '2023-06-06T04:00:00Z' - - '2023-06-06T05:00:00Z' - - '2023-06-06T06:00:00Z' - - '2023-06-06T07:00:00Z' - - '2023-06-06T08:00:00Z' - - '2023-06-06T09:00:00Z' - - '2023-06-06T10:00:00Z' - - '2023-06-06T11:00:00Z' - - '2023-06-06T12:00:00Z' - - '2023-06-06T13:00:00Z' - - '2023-06-06T14:00:00Z' - - '2023-06-06T15:00:00Z' - - '2023-06-06T16:00:00Z' - - '2023-06-06T17:00:00Z' - - '2023-06-06T18:00:00Z' - - '2023-06-06T19:00:00Z' - - '2023-06-06T20:00:00Z' - - '2023-06-06T21:00:00Z' - - '2023-06-06T22:00:00Z' - - '2023-06-06T23:00:00Z' - - '2023-06-07T00:00:00Z' - - '2023-06-07T01:00:00Z' - - '2023-06-07T02:00:00Z' - - '2023-06-07T03:00:00Z' - - '2023-06-07T04:00:00Z' - - '2023-06-07T05:00:00Z' - - '2023-06-07T06:00:00Z' - - '2023-06-07T07:00:00Z' - - '2023-06-07T08:00:00Z' - - '2023-06-07T09:00:00Z' - - '2023-06-07T10:00:00Z' - - '2023-06-07T11:00:00Z' - - '2023-06-07T12:00:00Z' - - '2023-06-07T13:00:00Z' - - '2023-06-07T14:00:00Z' - - '2023-06-07T15:00:00Z' - - '2023-06-07T16:00:00Z' - - '2023-06-07T17:00:00Z' - - '2023-06-07T18:00:00Z' - - '2023-06-07T19:00:00Z' - - '2023-06-07T20:00:00Z' - - '2023-06-07T21:00:00Z' - - '2023-06-07T22:00:00Z' - - '2023-06-07T23:00:00Z' - - '2023-06-08T00:00:00Z' - - '2023-06-08T01:00:00Z' - - '2023-06-08T02:00:00Z' - - '2023-06-08T03:00:00Z' - - '2023-06-08T04:00:00Z' - - '2023-06-08T05:00:00Z' - - '2023-06-08T06:00:00Z' - - '2023-06-08T07:00:00Z' - - '2023-06-08T08:00:00Z' - - '2023-06-08T09:00:00Z' - - '2023-06-08T10:00:00Z' - - '2023-06-08T11:00:00Z' - - '2023-06-08T12:00:00Z' - - '2023-06-08T13:00:00Z' - - '2023-06-08T14:00:00Z' - - '2023-06-08T15:00:00Z' - - '2023-06-08T16:00:00Z' - - '2023-06-08T17:00:00Z' - - '2023-06-08T18:00:00Z' - - '2023-06-08T19:00:00Z' - - '2023-06-08T20:00:00Z' - - '2023-06-08T21:00:00Z' - - '2023-06-08T22:00:00Z' - - '2023-06-08T23:00:00Z' - - '2023-06-09T00:00:00Z' - - '2023-06-09T01:00:00Z' - - '2023-06-09T02:00:00Z' - - '2023-06-09T03:00:00Z' - - '2023-06-09T04:00:00Z' - - '2023-06-09T05:00:00Z' - - '2023-06-09T06:00:00Z' - - '2023-06-09T07:00:00Z' - - '2023-06-09T08:00:00Z' - - '2023-06-09T09:00:00Z' - - '2023-06-09T10:00:00Z' - - '2023-06-09T11:00:00Z' - - '2023-06-09T12:00:00Z' - - '2023-06-09T13:00:00Z' - - '2023-06-09T14:00:00Z' - - '2023-06-09T15:00:00Z' - - '2023-06-09T16:00:00Z' - - '2023-06-09T17:00:00Z' - - '2023-06-09T18:00:00Z' - - '2023-06-09T19:00:00Z' - - '2023-06-09T20:00:00Z' - - '2023-06-09T21:00:00Z' - - '2023-06-09T22:00:00Z' - - '2023-06-09T23:00:00Z' - - '2023-06-10T00:00:00Z' - - '2023-06-10T01:00:00Z' - - '2023-06-10T02:00:00Z' - - '2023-06-10T03:00:00Z' - - '2023-06-10T04:00:00Z' - - '2023-06-10T05:00:00Z' - - '2023-06-10T06:00:00Z' - - '2023-06-10T07:00:00Z' - - '2023-06-10T08:00:00Z' - - '2023-06-10T09:00:00Z' - - '2023-06-10T10:00:00Z' - - '2023-06-10T11:00:00Z' - - '2023-06-10T12:00:00Z' - - '2023-06-10T13:00:00Z' - - '2023-06-10T14:00:00Z' - - '2023-06-10T15:00:00Z' - - '2023-06-10T16:00:00Z' - - '2023-06-10T17:00:00Z' - - '2023-06-10T18:00:00Z' - - '2023-06-10T19:00:00Z' - - '2023-06-10T20:00:00Z' - - '2023-06-10T21:00:00Z' - - '2023-06-10T22:00:00Z' - - '2023-06-10T23:00:00Z' - - '2023-06-11T00:00:00Z' - - '2023-06-11T01:00:00Z' - - '2023-06-11T02:00:00Z' - - '2023-06-11T03:00:00Z' - - '2023-06-11T04:00:00Z' - - '2023-06-11T05:00:00Z' - - '2023-06-11T06:00:00Z' - - '2023-06-11T07:00:00Z' - - '2023-06-11T08:00:00Z' - - '2023-06-11T09:00:00Z' - - '2023-06-11T10:00:00Z' - - '2023-06-11T11:00:00Z' - - '2023-06-11T12:00:00Z' - - '2023-06-11T13:00:00Z' - - '2023-06-11T14:00:00Z' - - '2023-06-11T15:00:00Z' - - '2023-06-11T16:00:00Z' - - '2023-06-11T17:00:00Z' - - '2023-06-11T18:00:00Z' - - '2023-06-11T19:00:00Z' - - '2023-06-11T20:00:00Z' - - '2023-06-11T21:00:00Z' - - '2023-06-11T22:00:00Z' - - '2023-06-11T23:00:00Z' - - '2023-06-12T00:00:00Z' - - '2023-06-12T01:00:00Z' - - '2023-06-12T02:00:00Z' - - '2023-06-12T03:00:00Z' - - '2023-06-12T04:00:00Z' - - '2023-06-12T05:00:00Z' - - '2023-06-12T06:00:00Z' - - '2023-06-12T07:00:00Z' - - '2023-06-12T08:00:00Z' - - '2023-06-12T09:00:00Z' - - '2023-06-12T10:00:00Z' - - '2023-06-12T11:00:00Z' - - '2023-06-12T12:00:00Z' - - '2023-06-12T13:00:00Z' - - '2023-06-12T14:00:00Z' - - '2023-06-12T15:00:00Z' - - '2023-06-12T16:00:00Z' - - '2023-06-12T17:00:00Z' - - '2023-06-12T18:00:00Z' - - '2023-06-12T19:00:00Z' - - '2023-06-12T20:00:00Z' - - '2023-06-12T21:00:00Z' - - '2023-06-12T22:00:00Z' - - '2023-06-12T23:00:00Z' - - '2023-06-13T00:00:00Z' - - '2023-06-13T01:00:00Z' - - '2023-06-13T02:00:00Z' - - '2023-06-13T03:00:00Z' - - '2023-06-13T04:00:00Z' - - '2023-06-13T05:00:00Z' - - '2023-06-13T06:00:00Z' - - '2023-06-13T07:00:00Z' - - '2023-06-13T08:00:00Z' - - '2023-06-13T09:00:00Z' - - '2023-06-13T10:00:00Z' - - '2023-06-13T11:00:00Z' - - '2023-06-13T12:00:00Z' - - '2023-06-13T13:00:00Z' - - '2023-06-13T14:00:00Z' - - '2023-06-13T15:00:00Z' - - '2023-06-13T16:00:00Z' - - '2023-06-13T17:00:00Z' - - '2023-06-13T18:00:00Z' - - '2023-06-13T19:00:00Z' - - '2023-06-13T20:00:00Z' - - '2023-06-13T21:00:00Z' - - '2023-06-13T22:00:00Z' - - '2023-06-13T23:00:00Z' - - '2023-06-14T00:00:00Z' - - '2023-06-14T01:00:00Z' - - '2023-06-14T02:00:00Z' - - '2023-06-14T03:00:00Z' - - '2023-06-14T04:00:00Z' - - '2023-06-14T05:00:00Z' - - '2023-06-14T06:00:00Z' - - '2023-06-14T07:00:00Z' - - '2023-06-14T08:00:00Z' - - '2023-06-14T09:00:00Z' - - '2023-06-14T10:00:00Z' - - '2023-06-14T11:00:00Z' - - '2023-06-14T12:00:00Z' - - '2023-06-14T13:00:00Z' - - '2023-06-14T14:00:00Z' - - '2023-06-14T15:00:00Z' - - '2023-06-14T16:00:00Z' - - '2023-06-14T17:00:00Z' - - '2023-06-14T18:00:00Z' - - '2023-06-14T19:00:00Z' - - '2023-06-14T20:00:00Z' - - '2023-06-14T21:00:00Z' - - '2023-06-14T22:00:00Z' - - '2023-06-14T23:00:00Z' - - '2023-06-15T00:00:00Z' - - '2023-06-15T01:00:00Z' - - '2023-06-15T02:00:00Z' - - '2023-06-15T03:00:00Z' - - '2023-06-15T04:00:00Z' - - '2023-06-15T05:00:00Z' - - '2023-06-15T06:00:00Z' - - '2023-06-15T07:00:00Z' - - '2023-06-15T08:00:00Z' - - '2023-06-15T09:00:00Z' - - '2023-06-15T10:00:00Z' - - '2023-06-15T11:00:00Z' - - '2023-06-15T12:00:00Z' - - '2023-06-15T13:00:00Z' - - '2023-06-15T14:00:00Z' - - '2023-06-15T15:00:00Z' - - '2023-06-15T16:00:00Z' - - '2023-06-15T17:00:00Z' - - '2023-06-15T18:00:00Z' - - '2023-06-15T19:00:00Z' - - '2023-06-15T20:00:00Z' - - '2023-06-15T21:00:00Z' - - '2023-06-15T22:00:00Z' - - '2023-06-15T23:00:00Z' - - '2023-06-16T00:00:00Z' - - '2023-06-16T01:00:00Z' - - '2023-06-16T02:00:00Z' - - '2023-06-16T03:00:00Z' - - '2023-06-16T04:00:00Z' - - '2023-06-16T05:00:00Z' - - '2023-06-16T06:00:00Z' - - '2023-06-16T07:00:00Z' - - '2023-06-16T08:00:00Z' - - '2023-06-16T09:00:00Z' - - '2023-06-16T10:00:00Z' - - '2023-06-16T11:00:00Z' - - '2023-06-16T12:00:00Z' - - '2023-06-16T13:00:00Z' - - '2023-06-16T14:00:00Z' - - '2023-06-16T15:00:00Z' - - '2023-06-16T16:00:00Z' - - '2023-06-16T17:00:00Z' - - '2023-06-16T18:00:00Z' - - '2023-06-16T19:00:00Z' - - '2023-06-16T20:00:00Z' - - '2023-06-16T21:00:00Z' - - '2023-06-16T22:00:00Z' - - '2023-06-16T23:00:00Z' - - '2023-06-17T00:00:00Z' - - '2023-06-17T01:00:00Z' - - '2023-06-17T02:00:00Z' - - '2023-06-17T03:00:00Z' - - '2023-06-17T04:00:00Z' - - '2023-06-17T05:00:00Z' - - '2023-06-17T06:00:00Z' - - '2023-06-17T07:00:00Z' - - '2023-06-17T08:00:00Z' - - '2023-06-17T09:00:00Z' - - '2023-06-17T10:00:00Z' - - '2023-06-17T11:00:00Z' - - '2023-06-17T12:00:00Z' - - '2023-06-17T13:00:00Z' - - '2023-06-17T14:00:00Z' - - '2023-06-17T15:00:00Z' - - '2023-06-17T16:00:00Z' - - '2023-06-17T17:00:00Z' - - '2023-06-17T18:00:00Z' - - '2023-06-17T19:00:00Z' - - '2023-06-17T20:00:00Z' - - '2023-06-17T21:00:00Z' - - '2023-06-17T22:00:00Z' - - '2023-06-17T23:00:00Z' - - '2023-06-18T00:00:00Z' - - '2023-06-18T01:00:00Z' - - '2023-06-18T02:00:00Z' - - '2023-06-18T03:00:00Z' - - '2023-06-18T04:00:00Z' - - '2023-06-18T05:00:00Z' - - '2023-06-18T06:00:00Z' - - '2023-06-18T07:00:00Z' - - '2023-06-18T08:00:00Z' - - '2023-06-18T09:00:00Z' - - '2023-06-18T10:00:00Z' - - '2023-06-18T11:00:00Z' - - '2023-06-18T12:00:00Z' - - '2023-06-18T13:00:00Z' - - '2023-06-18T14:00:00Z' - - '2023-06-18T15:00:00Z' - - '2023-06-18T16:00:00Z' - - '2023-06-18T17:00:00Z' - - '2023-06-18T18:00:00Z' - - '2023-06-18T19:00:00Z' - - '2023-06-18T20:00:00Z' - - '2023-06-18T21:00:00Z' - - '2023-06-18T22:00:00Z' - - '2023-06-18T23:00:00Z' - - '2023-06-19T00:00:00Z' - - '2023-06-19T01:00:00Z' - - '2023-06-19T02:00:00Z' - - '2023-06-19T03:00:00Z' - - '2023-06-19T04:00:00Z' - - '2023-06-19T05:00:00Z' - - '2023-06-19T06:00:00Z' - - '2023-06-19T07:00:00Z' - - '2023-06-19T08:00:00Z' - - '2023-06-19T09:00:00Z' - - '2023-06-19T10:00:00Z' - - '2023-06-19T11:00:00Z' - - '2023-06-19T12:00:00Z' - - '2023-06-19T13:00:00Z' - - '2023-06-19T14:00:00Z' - - '2023-06-19T15:00:00Z' - - '2023-06-19T16:00:00Z' - - '2023-06-19T17:00:00Z' - - '2023-06-19T18:00:00Z' - - '2023-06-19T19:00:00Z' - - '2023-06-19T20:00:00Z' - - '2023-06-19T21:00:00Z' - - '2023-06-19T22:00:00Z' - - '2023-06-19T23:00:00Z' - - '2023-06-20T00:00:00Z' - - '2023-06-20T01:00:00Z' - - '2023-06-20T02:00:00Z' - - '2023-06-20T03:00:00Z' - - '2023-06-20T04:00:00Z' - - '2023-06-20T05:00:00Z' - - '2023-06-20T06:00:00Z' - - '2023-06-20T07:00:00Z' - - '2023-06-20T08:00:00Z' - - '2023-06-20T09:00:00Z' - - '2023-06-20T10:00:00Z' - - '2023-06-20T11:00:00Z' - - '2023-06-20T12:00:00Z' - - '2023-06-20T13:00:00Z' - - '2023-06-20T14:00:00Z' - - '2023-06-20T15:00:00Z' - - '2023-06-20T16:00:00Z' - - '2023-06-20T17:00:00Z' - - '2023-06-20T18:00:00Z' - - '2023-06-20T19:00:00Z' - - '2023-06-20T20:00:00Z' - - '2023-06-20T21:00:00Z' - - '2023-06-20T22:00:00Z' - - '2023-06-20T23:00:00Z' - - '2023-06-21T00:00:00Z' - - '2023-06-21T01:00:00Z' - - '2023-06-21T02:00:00Z' - - '2023-06-21T03:00:00Z' - - '2023-06-21T04:00:00Z' - - '2023-06-21T05:00:00Z' - - '2023-06-21T06:00:00Z' - - '2023-06-21T07:00:00Z' - - '2023-06-21T08:00:00Z' - - '2023-06-21T09:00:00Z' - - '2023-06-21T10:00:00Z' - - '2023-06-21T11:00:00Z' - - '2023-06-21T12:00:00Z' - - '2023-06-21T13:00:00Z' - - '2023-06-21T14:00:00Z' - - '2023-06-21T15:00:00Z' - - '2023-06-21T16:00:00Z' - - '2023-06-21T17:00:00Z' - - '2023-06-21T18:00:00Z' - - '2023-06-21T19:00:00Z' - - '2023-06-21T20:00:00Z' - - '2023-06-21T21:00:00Z' - - '2023-06-21T22:00:00Z' - - '2023-06-21T23:00:00Z' - - '2023-06-22T00:00:00Z' - - '2023-06-22T01:00:00Z' - - '2023-06-22T02:00:00Z' - - '2023-06-22T03:00:00Z' - - '2023-06-22T04:00:00Z' - - '2023-06-22T05:00:00Z' - - '2023-06-22T06:00:00Z' - - '2023-06-22T07:00:00Z' - - '2023-06-22T08:00:00Z' - - '2023-06-22T09:00:00Z' - - '2023-06-22T10:00:00Z' - - '2023-06-22T11:00:00Z' - - '2023-06-22T12:00:00Z' - - '2023-06-22T13:00:00Z' - - '2023-06-22T14:00:00Z' - - '2023-06-22T15:00:00Z' - - '2023-06-22T16:00:00Z' - - '2023-06-22T17:00:00Z' - - '2023-06-22T18:00:00Z' - - '2023-06-22T19:00:00Z' - - '2023-06-22T20:00:00Z' - - '2023-06-22T21:00:00Z' - - '2023-06-22T22:00:00Z' - - '2023-06-22T23:00:00Z' - - '2023-06-23T00:00:00Z' - - '2023-06-23T01:00:00Z' - - '2023-06-23T02:00:00Z' - - '2023-06-23T03:00:00Z' - - '2023-06-23T04:00:00Z' - - '2023-06-23T05:00:00Z' - - '2023-06-23T06:00:00Z' - - '2023-06-23T07:00:00Z' - - '2023-06-23T08:00:00Z' - - '2023-06-23T09:00:00Z' - - '2023-06-23T10:00:00Z' - - '2023-06-23T11:00:00Z' - - '2023-06-23T12:00:00Z' - - '2023-06-23T13:00:00Z' - - '2023-06-23T14:00:00Z' - - '2023-06-23T15:00:00Z' - - '2023-06-23T16:00:00Z' - - '2023-06-23T17:00:00Z' - - '2023-06-23T18:00:00Z' - - '2023-06-23T19:00:00Z' - - '2023-06-23T20:00:00Z' - - '2023-06-23T21:00:00Z' - - '2023-06-23T22:00:00Z' - - '2023-06-23T23:00:00Z' - - '2023-06-24T00:00:00Z' - - '2023-06-24T01:00:00Z' - - '2023-06-24T02:00:00Z' - - '2023-06-24T03:00:00Z' - - '2023-06-24T04:00:00Z' - - '2023-06-24T05:00:00Z' - - '2023-06-24T06:00:00Z' - - '2023-06-24T07:00:00Z' - - '2023-06-24T08:00:00Z' - - '2023-06-24T09:00:00Z' - - '2023-06-24T10:00:00Z' - - '2023-06-24T11:00:00Z' - - '2023-06-24T12:00:00Z' - - '2023-06-24T13:00:00Z' - - '2023-06-24T14:00:00Z' - - '2023-06-24T15:00:00Z' - - '2023-06-24T16:00:00Z' - - '2023-06-24T17:00:00Z' - - '2023-06-24T18:00:00Z' - - '2023-06-24T19:00:00Z' - - '2023-06-24T20:00:00Z' - - '2023-06-24T21:00:00Z' - - '2023-06-24T22:00:00Z' - - '2023-06-24T23:00:00Z' - - '2023-06-25T00:00:00Z' - - '2023-06-25T01:00:00Z' - - '2023-06-25T02:00:00Z' - - '2023-06-25T03:00:00Z' - - '2023-06-25T04:00:00Z' - - '2023-06-25T05:00:00Z' - - '2023-06-25T06:00:00Z' - - '2023-06-25T07:00:00Z' - - '2023-06-25T08:00:00Z' - - '2023-06-25T09:00:00Z' - - '2023-06-25T10:00:00Z' - - '2023-06-25T11:00:00Z' - - '2023-06-25T12:00:00Z' - - '2023-06-25T13:00:00Z' - - '2023-06-25T14:00:00Z' - - '2023-06-25T15:00:00Z' - - '2023-06-25T16:00:00Z' - - '2023-06-25T17:00:00Z' - - '2023-06-25T18:00:00Z' - - '2023-06-25T19:00:00Z' - - '2023-06-25T20:00:00Z' - - '2023-06-25T21:00:00Z' - - '2023-06-25T22:00:00Z' - - '2023-06-25T23:00:00Z' - - '2023-06-26T00:00:00Z' - - '2023-06-26T01:00:00Z' - - '2023-06-26T02:00:00Z' - - '2023-06-26T03:00:00Z' - - '2023-06-26T04:00:00Z' - - '2023-06-26T05:00:00Z' - - '2023-06-26T06:00:00Z' - - '2023-06-26T07:00:00Z' - - '2023-06-26T08:00:00Z' - - '2023-06-26T09:00:00Z' - - '2023-06-26T10:00:00Z' - - '2023-06-26T11:00:00Z' - - '2023-06-26T12:00:00Z' - - '2023-06-26T13:00:00Z' - - '2023-06-26T14:00:00Z' - - '2023-06-26T15:00:00Z' - - '2023-06-26T16:00:00Z' - - '2023-06-26T17:00:00Z' - - '2023-06-26T18:00:00Z' - - '2023-06-26T19:00:00Z' - - '2023-06-26T20:00:00Z' - - '2023-06-26T21:00:00Z' - - '2023-06-26T22:00:00Z' - - '2023-06-26T23:00:00Z' - - '2023-06-27T00:00:00Z' - - '2023-06-27T01:00:00Z' - - '2023-06-27T02:00:00Z' - - '2023-06-27T03:00:00Z' - - '2023-06-27T04:00:00Z' - - '2023-06-27T05:00:00Z' - - '2023-06-27T06:00:00Z' - - '2023-06-27T07:00:00Z' - - '2023-06-27T08:00:00Z' - - '2023-06-27T09:00:00Z' - - '2023-06-27T10:00:00Z' - - '2023-06-27T11:00:00Z' - - '2023-06-27T12:00:00Z' - - '2023-06-27T13:00:00Z' - - '2023-06-27T14:00:00Z' - - '2023-06-27T15:00:00Z' - - '2023-06-27T16:00:00Z' - - '2023-06-27T17:00:00Z' - - '2023-06-27T18:00:00Z' - - '2023-06-27T19:00:00Z' - - '2023-06-27T20:00:00Z' - - '2023-06-27T21:00:00Z' - - '2023-06-27T22:00:00Z' - - '2023-06-27T23:00:00Z' - - '2023-06-28T00:00:00Z' - - '2023-06-28T01:00:00Z' - - '2023-06-28T02:00:00Z' - - '2023-06-28T03:00:00Z' - - '2023-06-28T04:00:00Z' - - '2023-06-28T05:00:00Z' - - '2023-06-28T06:00:00Z' - - '2023-06-28T07:00:00Z' - - '2023-06-28T08:00:00Z' - - '2023-06-28T09:00:00Z' - - '2023-06-28T10:00:00Z' - - '2023-06-28T11:00:00Z' - - '2023-06-28T12:00:00Z' - - '2023-06-28T13:00:00Z' - - '2023-06-28T14:00:00Z' - - '2023-06-28T15:00:00Z' - - '2023-06-28T16:00:00Z' - - '2023-06-28T17:00:00Z' - - '2023-06-28T18:00:00Z' - - '2023-06-28T19:00:00Z' - - '2023-06-28T20:00:00Z' - - '2023-06-28T21:00:00Z' - - '2023-06-28T22:00:00Z' - - '2023-06-28T23:00:00Z' - - '2023-06-29T00:00:00Z' - - '2023-06-29T01:00:00Z' - - '2023-06-29T02:00:00Z' - - '2023-06-29T03:00:00Z' - - '2023-06-29T04:00:00Z' - - '2023-06-29T05:00:00Z' - - '2023-06-29T06:00:00Z' - - '2023-06-29T07:00:00Z' - - '2023-06-29T08:00:00Z' - - '2023-06-29T09:00:00Z' - - '2023-06-29T10:00:00Z' - - '2023-06-29T11:00:00Z' - - '2023-06-29T12:00:00Z' - - '2023-06-29T13:00:00Z' - - '2023-06-29T14:00:00Z' - - '2023-06-29T15:00:00Z' - - '2023-06-29T16:00:00Z' - - '2023-06-29T17:00:00Z' - - '2023-06-29T18:00:00Z' - - '2023-06-29T19:00:00Z' - - '2023-06-29T20:00:00Z' - - '2023-06-29T21:00:00Z' - - '2023-06-29T22:00:00Z' - - '2023-06-29T23:00:00Z' - - '2023-06-30T00:00:00Z' - - '2023-06-30T01:00:00Z' - - '2023-06-30T02:00:00Z' - - '2023-06-30T03:00:00Z' - - '2023-06-30T04:00:00Z' - - '2023-06-30T05:00:00Z' - - '2023-06-30T06:00:00Z' - - '2023-06-30T07:00:00Z' - - '2023-06-30T08:00:00Z' - - '2023-06-30T09:00:00Z' - - '2023-06-30T10:00:00Z' - - '2023-06-30T11:00:00Z' - - '2023-06-30T12:00:00Z' - - '2023-06-30T13:00:00Z' - - '2023-06-30T14:00:00Z' - - '2023-06-30T15:00:00Z' - - '2023-06-30T16:00:00Z' - - '2023-06-30T17:00:00Z' - - '2023-06-30T18:00:00Z' - - '2023-06-30T19:00:00Z' - - '2023-06-30T20:00:00Z' - - '2023-06-30T21:00:00Z' - - '2023-06-30T22:00:00Z' - - '2023-06-30T23:00:00Z' - - '2023-07-01T00:00:00Z' - - '2023-07-01T01:00:00Z' - - '2023-07-01T02:00:00Z' - - '2023-07-01T03:00:00Z' - - '2023-07-01T04:00:00Z' - - '2023-07-01T05:00:00Z' - - '2023-07-01T06:00:00Z' - - '2023-07-01T07:00:00Z' - - '2023-07-01T08:00:00Z' - - '2023-07-01T09:00:00Z' - - '2023-07-01T10:00:00Z' - - '2023-07-01T11:00:00Z' - - '2023-07-01T12:00:00Z' - - '2023-07-01T13:00:00Z' - - '2023-07-01T14:00:00Z' - - '2023-07-01T15:00:00Z' - - '2023-07-01T16:00:00Z' - - '2023-07-01T17:00:00Z' - - '2023-07-01T18:00:00Z' - - '2023-07-01T19:00:00Z' - - '2023-07-01T20:00:00Z' - - '2023-07-01T21:00:00Z' - - '2023-07-01T22:00:00Z' - - '2023-07-01T23:00:00Z' - - '2023-07-02T00:00:00Z' - - '2023-07-02T01:00:00Z' - - '2023-07-02T02:00:00Z' - - '2023-07-02T03:00:00Z' - - '2023-07-02T04:00:00Z' - - '2023-07-02T05:00:00Z' - - '2023-07-02T06:00:00Z' - - '2023-07-02T07:00:00Z' - - '2023-07-02T08:00:00Z' - - '2023-07-02T09:00:00Z' - - '2023-07-02T10:00:00Z' - - '2023-07-02T11:00:00Z' - - '2023-07-02T12:00:00Z' - - '2023-07-02T13:00:00Z' - - '2023-07-02T14:00:00Z' - - '2023-07-02T15:00:00Z' - - '2023-07-02T16:00:00Z' - - '2023-07-02T17:00:00Z' - - '2023-07-02T18:00:00Z' - - '2023-07-02T19:00:00Z' - - '2023-07-02T20:00:00Z' - - '2023-07-02T21:00:00Z' - - '2023-07-02T22:00:00Z' - - '2023-07-02T23:00:00Z' - - '2023-07-03T00:00:00Z' - - '2023-07-03T01:00:00Z' - - '2023-07-03T02:00:00Z' - - '2023-07-03T03:00:00Z' - - '2023-07-03T04:00:00Z' - - '2023-07-03T05:00:00Z' - - '2023-07-03T06:00:00Z' - - '2023-07-03T07:00:00Z' - - '2023-07-03T08:00:00Z' - - '2023-07-03T09:00:00Z' - - '2023-07-03T10:00:00Z' - - '2023-07-03T11:00:00Z' - - '2023-07-03T12:00:00Z' - - '2023-07-03T13:00:00Z' - - '2023-07-03T14:00:00Z' - - '2023-07-03T15:00:00Z' - - '2023-07-03T16:00:00Z' - - '2023-07-03T17:00:00Z' - - '2023-07-03T18:00:00Z' - - '2023-07-03T19:00:00Z' - - '2023-07-03T20:00:00Z' - - '2023-07-03T21:00:00Z' - - '2023-07-03T22:00:00Z' - - '2023-07-03T23:00:00Z' - - '2023-07-04T00:00:00Z' - - '2023-07-04T01:00:00Z' - - '2023-07-04T02:00:00Z' - - '2023-07-04T03:00:00Z' - - '2023-07-04T04:00:00Z' - - '2023-07-04T05:00:00Z' - - '2023-07-04T06:00:00Z' - - '2023-07-04T07:00:00Z' - - '2023-07-04T08:00:00Z' - - '2023-07-04T09:00:00Z' - - '2023-07-04T10:00:00Z' - - '2023-07-04T11:00:00Z' - - '2023-07-04T12:00:00Z' - - '2023-07-04T13:00:00Z' - - '2023-07-04T14:00:00Z' - - '2023-07-04T15:00:00Z' - - '2023-07-04T16:00:00Z' - - '2023-07-04T17:00:00Z' - - '2023-07-04T18:00:00Z' - - '2023-07-04T19:00:00Z' - - '2023-07-04T20:00:00Z' - - '2023-07-04T21:00:00Z' - - '2023-07-04T22:00:00Z' - - '2023-07-04T23:00:00Z' - - '2023-07-05T00:00:00Z' - - '2023-07-05T01:00:00Z' - - '2023-07-05T02:00:00Z' - - '2023-07-05T03:00:00Z' - - '2023-07-05T04:00:00Z' - - '2023-07-05T05:00:00Z' - - '2023-07-05T06:00:00Z' - - '2023-07-05T07:00:00Z' - - '2023-07-05T08:00:00Z' - - '2023-07-05T09:00:00Z' - - '2023-07-05T10:00:00Z' - - '2023-07-05T11:00:00Z' - - '2023-07-05T12:00:00Z' - - '2023-07-05T13:00:00Z' - - '2023-07-05T14:00:00Z' - - '2023-07-05T15:00:00Z' - - '2023-07-05T16:00:00Z' - - '2023-07-05T17:00:00Z' - - '2023-07-05T18:00:00Z' - - '2023-07-05T19:00:00Z' - - '2023-07-05T20:00:00Z' - - '2023-07-05T21:00:00Z' - - '2023-07-05T22:00:00Z' - - '2023-07-05T23:00:00Z' - - '2023-07-06T00:00:00Z' - - '2023-07-06T01:00:00Z' - - '2023-07-06T02:00:00Z' - - '2023-07-06T03:00:00Z' - - '2023-07-06T04:00:00Z' - - '2023-07-06T05:00:00Z' - - '2023-07-06T06:00:00Z' - - '2023-07-06T07:00:00Z' - - '2023-07-06T08:00:00Z' - - '2023-07-06T09:00:00Z' - - '2023-07-06T10:00:00Z' - - '2023-07-06T11:00:00Z' - - '2023-07-06T12:00:00Z' - - '2023-07-06T13:00:00Z' - - '2023-07-06T14:00:00Z' - - '2023-07-06T15:00:00Z' - - '2023-07-06T16:00:00Z' - - '2023-07-06T17:00:00Z' - - '2023-07-06T18:00:00Z' - - '2023-07-06T19:00:00Z' - - '2023-07-06T20:00:00Z' - - '2023-07-06T21:00:00Z' - - '2023-07-06T22:00:00Z' - - '2023-07-06T23:00:00Z' - - '2023-07-07T00:00:00Z' - - '2023-07-07T01:00:00Z' - - '2023-07-07T02:00:00Z' - - '2023-07-07T03:00:00Z' - - '2023-07-07T04:00:00Z' - - '2023-07-07T05:00:00Z' - - '2023-07-07T06:00:00Z' - - '2023-07-07T07:00:00Z' - - '2023-07-07T08:00:00Z' - - '2023-07-07T09:00:00Z' - - '2023-07-07T10:00:00Z' - - '2023-07-07T11:00:00Z' - - '2023-07-07T12:00:00Z' - - '2023-07-07T13:00:00Z' - - '2023-07-07T14:00:00Z' - - '2023-07-07T15:00:00Z' - - '2023-07-07T16:00:00Z' - - '2023-07-07T17:00:00Z' - - '2023-07-07T18:00:00Z' - - '2023-07-07T19:00:00Z' - - '2023-07-07T20:00:00Z' - - '2023-07-07T21:00:00Z' - - '2023-07-07T22:00:00Z' - - '2023-07-07T23:00:00Z' - - '2023-07-08T00:00:00Z' - - '2023-07-08T01:00:00Z' - - '2023-07-08T02:00:00Z' - - '2023-07-08T03:00:00Z' - - '2023-07-08T04:00:00Z' - - '2023-07-08T05:00:00Z' - - '2023-07-08T06:00:00Z' - - '2023-07-08T07:00:00Z' - - '2023-07-08T08:00:00Z' - - '2023-07-08T09:00:00Z' - - '2023-07-08T10:00:00Z' - - '2023-07-08T11:00:00Z' - - '2023-07-08T12:00:00Z' - - '2023-07-08T13:00:00Z' - - '2023-07-08T14:00:00Z' - - '2023-07-08T15:00:00Z' - - '2023-07-08T16:00:00Z' - - '2023-07-08T17:00:00Z' - - '2023-07-08T18:00:00Z' - - '2023-07-08T19:00:00Z' - - '2023-07-08T20:00:00Z' - - '2023-07-08T21:00:00Z' - - '2023-07-08T22:00:00Z' - - '2023-07-08T23:00:00Z' - - '2023-07-09T00:00:00Z' - - '2023-07-09T01:00:00Z' - - '2023-07-09T02:00:00Z' - - '2023-07-09T03:00:00Z' - - '2023-07-09T04:00:00Z' - - '2023-07-09T05:00:00Z' - - '2023-07-09T06:00:00Z' - - '2023-07-09T07:00:00Z' - - '2023-07-09T08:00:00Z' - - '2023-07-09T09:00:00Z' - - '2023-07-09T10:00:00Z' - - '2023-07-09T11:00:00Z' - - '2023-07-09T12:00:00Z' - - '2023-07-09T13:00:00Z' - - '2023-07-09T14:00:00Z' - - '2023-07-09T15:00:00Z' - - '2023-07-09T16:00:00Z' - - '2023-07-09T17:00:00Z' - - '2023-07-09T18:00:00Z' - - '2023-07-09T19:00:00Z' - - '2023-07-09T20:00:00Z' - - '2023-07-09T21:00:00Z' - - '2023-07-09T22:00:00Z' - - '2023-07-09T23:00:00Z' - - '2023-07-10T00:00:00Z' - - '2023-07-10T01:00:00Z' - - '2023-07-10T02:00:00Z' - - '2023-07-10T03:00:00Z' - - '2023-07-10T04:00:00Z' - - '2023-07-10T05:00:00Z' - - '2023-07-10T06:00:00Z' - - '2023-07-10T07:00:00Z' - - '2023-07-10T08:00:00Z' - - '2023-07-10T09:00:00Z' - - '2023-07-10T10:00:00Z' - - '2023-07-10T11:00:00Z' - - '2023-07-10T12:00:00Z' - - '2023-07-10T13:00:00Z' - - '2023-07-10T14:00:00Z' - - '2023-07-10T15:00:00Z' - - '2023-07-10T16:00:00Z' - - '2023-07-10T17:00:00Z' - - '2023-07-10T18:00:00Z' - - '2023-07-10T19:00:00Z' - - '2023-07-10T20:00:00Z' - - '2023-07-10T21:00:00Z' - - '2023-07-10T22:00:00Z' - - '2023-07-10T23:00:00Z' - - '2023-07-11T00:00:00Z' - - '2023-07-11T01:00:00Z' - - '2023-07-11T02:00:00Z' - - '2023-07-11T03:00:00Z' - - '2023-07-11T04:00:00Z' - - '2023-07-11T05:00:00Z' - - '2023-07-11T06:00:00Z' - - '2023-07-11T07:00:00Z' - - '2023-07-11T08:00:00Z' - - '2023-07-11T09:00:00Z' - - '2023-07-11T10:00:00Z' - - '2023-07-11T11:00:00Z' - - '2023-07-11T12:00:00Z' - - '2023-07-11T13:00:00Z' - - '2023-07-11T14:00:00Z' - - '2023-07-11T15:00:00Z' - - '2023-07-11T16:00:00Z' - - '2023-07-11T17:00:00Z' - - '2023-07-11T18:00:00Z' - - '2023-07-11T19:00:00Z' - - '2023-07-11T20:00:00Z' - - '2023-07-11T21:00:00Z' - - '2023-07-11T22:00:00Z' - - '2023-07-11T23:00:00Z' - - '2023-07-12T00:00:00Z' - - '2023-07-12T01:00:00Z' - - '2023-07-12T02:00:00Z' - - '2023-07-12T03:00:00Z' - - '2023-07-12T04:00:00Z' - - '2023-07-12T05:00:00Z' - - '2023-07-12T06:00:00Z' - - '2023-07-12T07:00:00Z' - - '2023-07-12T08:00:00Z' - - '2023-07-12T09:00:00Z' - - '2023-07-12T10:00:00Z' - - '2023-07-12T11:00:00Z' - - '2023-07-12T12:00:00Z' - - '2023-07-12T13:00:00Z' - - '2023-07-12T14:00:00Z' - - '2023-07-12T15:00:00Z' - - '2023-07-12T16:00:00Z' - - '2023-07-12T17:00:00Z' - - '2023-07-12T18:00:00Z' - - '2023-07-12T19:00:00Z' - - '2023-07-12T20:00:00Z' - - '2023-07-12T21:00:00Z' - - '2023-07-12T22:00:00Z' - - '2023-07-12T23:00:00Z' - - '2023-07-13T00:00:00Z' - - '2023-07-13T01:00:00Z' - - '2023-07-13T02:00:00Z' - - '2023-07-13T03:00:00Z' - - '2023-07-13T04:00:00Z' - - '2023-07-13T05:00:00Z' - - '2023-07-13T06:00:00Z' - - '2023-07-13T07:00:00Z' - - '2023-07-13T08:00:00Z' - - '2023-07-13T09:00:00Z' - - '2023-07-13T10:00:00Z' - - '2023-07-13T11:00:00Z' - - '2023-07-13T12:00:00Z' - - '2023-07-13T13:00:00Z' - - '2023-07-13T14:00:00Z' - - '2023-07-13T15:00:00Z' - - '2023-07-13T16:00:00Z' - - '2023-07-13T17:00:00Z' - - '2023-07-13T18:00:00Z' - - '2023-07-13T19:00:00Z' - - '2023-07-13T20:00:00Z' - - '2023-07-13T21:00:00Z' - - '2023-07-13T22:00:00Z' - - '2023-07-13T23:00:00Z' - - '2023-07-14T00:00:00Z' - - '2023-07-14T01:00:00Z' - - '2023-07-14T02:00:00Z' - - '2023-07-14T03:00:00Z' - - '2023-07-14T04:00:00Z' - - '2023-07-14T05:00:00Z' - - '2023-07-14T06:00:00Z' - - '2023-07-14T07:00:00Z' - - '2023-07-14T08:00:00Z' - - '2023-07-14T09:00:00Z' - - '2023-07-14T10:00:00Z' - - '2023-07-14T11:00:00Z' - - '2023-07-14T12:00:00Z' - - '2023-07-14T13:00:00Z' - - '2023-07-14T14:00:00Z' - - '2023-07-14T15:00:00Z' - - '2023-07-14T16:00:00Z' - - '2023-07-14T17:00:00Z' - - '2023-07-14T18:00:00Z' - - '2023-07-14T19:00:00Z' - - '2023-07-14T20:00:00Z' - - '2023-07-14T21:00:00Z' - - '2023-07-14T22:00:00Z' - - '2023-07-14T23:00:00Z' - - '2023-07-15T00:00:00Z' - - '2023-07-15T01:00:00Z' - - '2023-07-15T02:00:00Z' - - '2023-07-15T03:00:00Z' - - '2023-07-15T04:00:00Z' - - '2023-07-15T05:00:00Z' - - '2023-07-15T06:00:00Z' - - '2023-07-15T07:00:00Z' - - '2023-07-15T08:00:00Z' - - '2023-07-15T09:00:00Z' - - '2023-07-15T10:00:00Z' - - '2023-07-15T11:00:00Z' - - '2023-07-15T12:00:00Z' - - '2023-07-15T13:00:00Z' - - '2023-07-15T14:00:00Z' - - '2023-07-15T15:00:00Z' - - '2023-07-15T16:00:00Z' - - '2023-07-15T17:00:00Z' - - '2023-07-15T18:00:00Z' - - '2023-07-15T19:00:00Z' - - '2023-07-15T20:00:00Z' - - '2023-07-15T21:00:00Z' - - '2023-07-15T22:00:00Z' - - '2023-07-15T23:00:00Z' - - '2023-07-16T00:00:00Z' - - '2023-07-16T01:00:00Z' - - '2023-07-16T02:00:00Z' - - '2023-07-16T03:00:00Z' - - '2023-07-16T04:00:00Z' - - '2023-07-16T05:00:00Z' - - '2023-07-16T06:00:00Z' - - '2023-07-16T07:00:00Z' - - '2023-07-16T08:00:00Z' - - '2023-07-16T09:00:00Z' - - '2023-07-16T10:00:00Z' - - '2023-07-16T11:00:00Z' - - '2023-07-16T12:00:00Z' - - '2023-07-16T13:00:00Z' - - '2023-07-16T14:00:00Z' - - '2023-07-16T15:00:00Z' - - '2023-07-16T16:00:00Z' - - '2023-07-16T17:00:00Z' - - '2023-07-16T18:00:00Z' - - '2023-07-16T19:00:00Z' - - '2023-07-16T20:00:00Z' - - '2023-07-16T21:00:00Z' - - '2023-07-16T22:00:00Z' - - '2023-07-16T23:00:00Z' - - '2023-07-17T00:00:00Z' - - '2023-07-17T01:00:00Z' - - '2023-07-17T02:00:00Z' - - '2023-07-17T03:00:00Z' - - '2023-07-17T04:00:00Z' - - '2023-07-17T05:00:00Z' - - '2023-07-17T06:00:00Z' - - '2023-07-17T07:00:00Z' - - '2023-07-17T08:00:00Z' - - '2023-07-17T09:00:00Z' - - '2023-07-17T10:00:00Z' - - '2023-07-17T11:00:00Z' - - '2023-07-17T12:00:00Z' - - '2023-07-17T13:00:00Z' - - '2023-07-17T14:00:00Z' - - '2023-07-17T15:00:00Z' - - '2023-07-17T16:00:00Z' - - '2023-07-17T17:00:00Z' - - '2023-07-17T18:00:00Z' - - '2023-07-17T19:00:00Z' - - '2023-07-17T20:00:00Z' - - '2023-07-17T21:00:00Z' - - '2023-07-17T22:00:00Z' - - '2023-07-17T23:00:00Z' - - '2023-07-18T00:00:00Z' - - '2023-07-18T01:00:00Z' - - '2023-07-18T02:00:00Z' - - '2023-07-18T03:00:00Z' - - '2023-07-18T04:00:00Z' - - '2023-07-18T05:00:00Z' - - '2023-07-18T06:00:00Z' - - '2023-07-18T07:00:00Z' - - '2023-07-18T08:00:00Z' - - '2023-07-18T09:00:00Z' - - '2023-07-18T10:00:00Z' - - '2023-07-18T11:00:00Z' - - '2023-07-18T12:00:00Z' - - '2023-07-18T13:00:00Z' - - '2023-07-18T14:00:00Z' - - '2023-07-18T15:00:00Z' - - '2023-07-18T16:00:00Z' - - '2023-07-18T17:00:00Z' - - '2023-07-18T18:00:00Z' - - '2023-07-18T19:00:00Z' - - '2023-07-18T20:00:00Z' - - '2023-07-18T21:00:00Z' - - '2023-07-18T22:00:00Z' - - '2023-07-18T23:00:00Z' - - '2023-07-19T00:00:00Z' - - '2023-07-19T01:00:00Z' - - '2023-07-19T02:00:00Z' - - '2023-07-19T03:00:00Z' - - '2023-07-19T04:00:00Z' - - '2023-07-19T05:00:00Z' - - '2023-07-19T06:00:00Z' - - '2023-07-19T07:00:00Z' - - '2023-07-19T08:00:00Z' - - '2023-07-19T09:00:00Z' - - '2023-07-19T10:00:00Z' - - '2023-07-19T11:00:00Z' - - '2023-07-19T12:00:00Z' - - '2023-07-19T13:00:00Z' - - '2023-07-19T14:00:00Z' - - '2023-07-19T15:00:00Z' - - '2023-07-19T16:00:00Z' - - '2023-07-19T17:00:00Z' - - '2023-07-19T18:00:00Z' - - '2023-07-19T19:00:00Z' - - '2023-07-19T20:00:00Z' - - '2023-07-19T21:00:00Z' - - '2023-07-19T22:00:00Z' - - '2023-07-19T23:00:00Z' - - '2023-07-20T00:00:00Z' - - '2023-07-20T01:00:00Z' - - '2023-07-20T02:00:00Z' - - '2023-07-20T03:00:00Z' - - '2023-07-20T04:00:00Z' - - '2023-07-20T05:00:00Z' - - '2023-07-20T06:00:00Z' - - '2023-07-20T07:00:00Z' - - '2023-07-20T08:00:00Z' - - '2023-07-20T09:00:00Z' - - '2023-07-20T10:00:00Z' - - '2023-07-20T11:00:00Z' - - '2023-07-20T12:00:00Z' - - '2023-07-20T13:00:00Z' - - '2023-07-20T14:00:00Z' - - '2023-07-20T15:00:00Z' - - '2023-07-20T16:00:00Z' - - '2023-07-20T17:00:00Z' - - '2023-07-20T18:00:00Z' - - '2023-07-20T19:00:00Z' - - '2023-07-20T20:00:00Z' - - '2023-07-20T21:00:00Z' - - '2023-07-20T22:00:00Z' - - '2023-07-20T23:00:00Z' - - '2023-07-21T00:00:00Z' - - '2023-07-21T01:00:00Z' - - '2023-07-21T02:00:00Z' - - '2023-07-21T03:00:00Z' - - '2023-07-21T04:00:00Z' - - '2023-07-21T05:00:00Z' - - '2023-07-21T06:00:00Z' - - '2023-07-21T07:00:00Z' - - '2023-07-21T08:00:00Z' - - '2023-07-21T09:00:00Z' - - '2023-07-21T10:00:00Z' - - '2023-07-21T11:00:00Z' - - '2023-07-21T12:00:00Z' - - '2023-07-21T13:00:00Z' - - '2023-07-21T14:00:00Z' - - '2023-07-21T15:00:00Z' - - '2023-07-21T16:00:00Z' - - '2023-07-21T17:00:00Z' - - '2023-07-21T18:00:00Z' - - '2023-07-21T19:00:00Z' - - '2023-07-21T20:00:00Z' - - '2023-07-21T21:00:00Z' - - '2023-07-21T22:00:00Z' - - '2023-07-21T23:00:00Z' - - '2023-07-22T00:00:00Z' - - '2023-07-22T01:00:00Z' - - '2023-07-22T02:00:00Z' - - '2023-07-22T03:00:00Z' - - '2023-07-22T04:00:00Z' - - '2023-07-22T05:00:00Z' - - '2023-07-22T06:00:00Z' - - '2023-07-22T07:00:00Z' - - '2023-07-22T08:00:00Z' - - '2023-07-22T09:00:00Z' - - '2023-07-22T10:00:00Z' - - '2023-07-22T11:00:00Z' - - '2023-07-22T12:00:00Z' - - '2023-07-22T13:00:00Z' - - '2023-07-22T14:00:00Z' - - '2023-07-22T15:00:00Z' - - '2023-07-22T16:00:00Z' - - '2023-07-22T17:00:00Z' - - '2023-07-22T18:00:00Z' - - '2023-07-22T19:00:00Z' - - '2023-07-22T20:00:00Z' - - '2023-07-22T21:00:00Z' - - '2023-07-22T22:00:00Z' - - '2023-07-22T23:00:00Z' - - '2023-07-23T00:00:00Z' - - '2023-07-23T01:00:00Z' - - '2023-07-23T02:00:00Z' - - '2023-07-23T03:00:00Z' - - '2023-07-23T04:00:00Z' - - '2023-07-23T05:00:00Z' - - '2023-07-23T06:00:00Z' - - '2023-07-23T07:00:00Z' - - '2023-07-23T08:00:00Z' - - '2023-07-23T09:00:00Z' - - '2023-07-23T10:00:00Z' - - '2023-07-23T11:00:00Z' - - '2023-07-23T12:00:00Z' - - '2023-07-23T13:00:00Z' - - '2023-07-23T14:00:00Z' - - '2023-07-23T15:00:00Z' - - '2023-07-23T16:00:00Z' - - '2023-07-23T17:00:00Z' - - '2023-07-23T18:00:00Z' - - '2023-07-23T19:00:00Z' - - '2023-07-23T20:00:00Z' - - '2023-07-23T21:00:00Z' - - '2023-07-23T22:00:00Z' - - '2023-07-23T23:00:00Z' - - '2023-07-24T00:00:00Z' - - '2023-07-24T01:00:00Z' - - '2023-07-24T02:00:00Z' - - '2023-07-24T03:00:00Z' - - '2023-07-24T04:00:00Z' - - '2023-07-24T05:00:00Z' - - '2023-07-24T06:00:00Z' - - '2023-07-24T07:00:00Z' - - '2023-07-24T08:00:00Z' - - '2023-07-24T09:00:00Z' - - '2023-07-24T10:00:00Z' - - '2023-07-24T11:00:00Z' - - '2023-07-24T12:00:00Z' - - '2023-07-24T13:00:00Z' - - '2023-07-24T14:00:00Z' - - '2023-07-24T15:00:00Z' - - '2023-07-24T16:00:00Z' - - '2023-07-24T17:00:00Z' - - '2023-07-24T18:00:00Z' - - '2023-07-24T19:00:00Z' - - '2023-07-24T20:00:00Z' - - '2023-07-24T21:00:00Z' - - '2023-07-24T22:00:00Z' - - '2023-07-24T23:00:00Z' - - '2023-07-25T00:00:00Z' - - '2023-07-25T01:00:00Z' - - '2023-07-25T02:00:00Z' - - '2023-07-25T03:00:00Z' - - '2023-07-25T04:00:00Z' - - '2023-07-25T05:00:00Z' - - '2023-07-25T06:00:00Z' - - '2023-07-25T07:00:00Z' - - '2023-07-25T08:00:00Z' - - '2023-07-25T09:00:00Z' - - '2023-07-25T10:00:00Z' - - '2023-07-25T11:00:00Z' - - '2023-07-25T12:00:00Z' - - '2023-07-25T13:00:00Z' - - '2023-07-25T14:00:00Z' - - '2023-07-25T15:00:00Z' - - '2023-07-25T16:00:00Z' - - '2023-07-25T17:00:00Z' - - '2023-07-25T18:00:00Z' - - '2023-07-25T19:00:00Z' - - '2023-07-25T20:00:00Z' - - '2023-07-25T21:00:00Z' - - '2023-07-25T22:00:00Z' - - '2023-07-25T23:00:00Z' - - '2023-07-26T00:00:00Z' - - '2023-07-26T01:00:00Z' - - '2023-07-26T02:00:00Z' - - '2023-07-26T03:00:00Z' - - '2023-07-26T04:00:00Z' - - '2023-07-26T05:00:00Z' - - '2023-07-26T06:00:00Z' - - '2023-07-26T07:00:00Z' - - '2023-07-26T08:00:00Z' - - '2023-07-26T09:00:00Z' - - '2023-07-26T10:00:00Z' - - '2023-07-26T11:00:00Z' - - '2023-07-26T12:00:00Z' - - '2023-07-26T13:00:00Z' - - '2023-07-26T14:00:00Z' - - '2023-07-26T15:00:00Z' - - '2023-07-26T16:00:00Z' - - '2023-07-26T17:00:00Z' - - '2023-07-26T18:00:00Z' - - '2023-07-26T19:00:00Z' - - '2023-07-26T20:00:00Z' - - '2023-07-26T21:00:00Z' - - '2023-07-26T22:00:00Z' - - '2023-07-26T23:00:00Z' - - '2023-07-27T00:00:00Z' - - '2023-07-27T01:00:00Z' - - '2023-07-27T02:00:00Z' - - '2023-07-27T03:00:00Z' - - '2023-07-27T04:00:00Z' - - '2023-07-27T05:00:00Z' - - '2023-07-27T06:00:00Z' - - '2023-07-27T07:00:00Z' - - '2023-07-27T08:00:00Z' - - '2023-07-27T09:00:00Z' - - '2023-07-27T10:00:00Z' - - '2023-07-27T11:00:00Z' - - '2023-07-27T12:00:00Z' - - '2023-07-27T13:00:00Z' - - '2023-07-27T14:00:00Z' - - '2023-07-27T15:00:00Z' - - '2023-07-27T16:00:00Z' - - '2023-07-27T17:00:00Z' - - '2023-07-27T18:00:00Z' - - '2023-07-27T19:00:00Z' - - '2023-07-27T20:00:00Z' - - '2023-07-27T21:00:00Z' - - '2023-07-27T22:00:00Z' - - '2023-07-27T23:00:00Z' - - '2023-07-28T00:00:00Z' - - '2023-07-28T01:00:00Z' - - '2023-07-28T02:00:00Z' - - '2023-07-28T03:00:00Z' - - '2023-07-28T04:00:00Z' - - '2023-07-28T05:00:00Z' - - '2023-07-28T06:00:00Z' - - '2023-07-28T07:00:00Z' - - '2023-07-28T08:00:00Z' - - '2023-07-28T09:00:00Z' - - '2023-07-28T10:00:00Z' - - '2023-07-28T11:00:00Z' - - '2023-07-28T12:00:00Z' - - '2023-07-28T13:00:00Z' - - '2023-07-28T14:00:00Z' - - '2023-07-28T15:00:00Z' - - '2023-07-28T16:00:00Z' - - '2023-07-28T17:00:00Z' - - '2023-07-28T18:00:00Z' - - '2023-07-28T19:00:00Z' - - '2023-07-28T20:00:00Z' - - '2023-07-28T21:00:00Z' - - '2023-07-28T22:00:00Z' - - '2023-07-28T23:00:00Z' - - '2023-07-29T00:00:00Z' - - '2023-07-29T01:00:00Z' - - '2023-07-29T02:00:00Z' - - '2023-07-29T03:00:00Z' - - '2023-07-29T04:00:00Z' - - '2023-07-29T05:00:00Z' - - '2023-07-29T06:00:00Z' - - '2023-07-29T07:00:00Z' - - '2023-07-29T08:00:00Z' - - '2023-07-29T09:00:00Z' - - '2023-07-29T10:00:00Z' - - '2023-07-29T11:00:00Z' - - '2023-07-29T12:00:00Z' - - '2023-07-29T13:00:00Z' - - '2023-07-29T14:00:00Z' - - '2023-07-29T15:00:00Z' - - '2023-07-29T16:00:00Z' - - '2023-07-29T17:00:00Z' - - '2023-07-29T18:00:00Z' - - '2023-07-29T19:00:00Z' - - '2023-07-29T20:00:00Z' - - '2023-07-29T21:00:00Z' - - '2023-07-29T22:00:00Z' - - '2023-07-29T23:00:00Z' - - '2023-07-30T00:00:00Z' - - '2023-07-30T01:00:00Z' - - '2023-07-30T02:00:00Z' - - '2023-07-30T03:00:00Z' - - '2023-07-30T04:00:00Z' - - '2023-07-30T05:00:00Z' - - '2023-07-30T06:00:00Z' - - '2023-07-30T07:00:00Z' - - '2023-07-30T08:00:00Z' - - '2023-07-30T09:00:00Z' - - '2023-07-30T10:00:00Z' - - '2023-07-30T11:00:00Z' - - '2023-07-30T12:00:00Z' - - '2023-07-30T13:00:00Z' - - '2023-07-30T14:00:00Z' - - '2023-07-30T15:00:00Z' - - '2023-07-30T16:00:00Z' - - '2023-07-30T17:00:00Z' - - '2023-07-30T18:00:00Z' - - '2023-07-30T19:00:00Z' - - '2023-07-30T20:00:00Z' - - '2023-07-30T21:00:00Z' - - '2023-07-30T22:00:00Z' - - '2023-07-30T23:00:00Z' - - '2023-07-31T00:00:00Z' - - '2023-07-31T01:00:00Z' - - '2023-07-31T02:00:00Z' - - '2023-07-31T03:00:00Z' - - '2023-07-31T04:00:00Z' - - '2023-07-31T05:00:00Z' - - '2023-07-31T06:00:00Z' - - '2023-07-31T07:00:00Z' - - '2023-07-31T08:00:00Z' - - '2023-07-31T09:00:00Z' - - '2023-07-31T10:00:00Z' - - '2023-07-31T11:00:00Z' - - '2023-07-31T12:00:00Z' - - '2023-07-31T13:00:00Z' - - '2023-07-31T14:00:00Z' - - '2023-07-31T15:00:00Z' - - '2023-07-31T16:00:00Z' - - '2023-07-31T17:00:00Z' - - '2023-07-31T18:00:00Z' - - '2023-07-31T19:00:00Z' - - '2023-07-31T20:00:00Z' - - '2023-07-31T21:00:00Z' - - '2023-07-31T22:00:00Z' - - '2023-07-31T23:00:00Z' - - '2023-08-01T00:00:00Z' - - '2023-08-01T01:00:00Z' - - '2023-08-01T02:00:00Z' - - '2023-08-01T03:00:00Z' - - '2023-08-01T04:00:00Z' - - '2023-08-01T05:00:00Z' - - '2023-08-01T06:00:00Z' - - '2023-08-01T07:00:00Z' - - '2023-08-01T08:00:00Z' - - '2023-08-01T09:00:00Z' - - '2023-08-01T10:00:00Z' - - '2023-08-01T11:00:00Z' - - '2023-08-01T12:00:00Z' - - '2023-08-01T13:00:00Z' - - '2023-08-01T14:00:00Z' - - '2023-08-01T15:00:00Z' - - '2023-08-01T16:00:00Z' - - '2023-08-01T17:00:00Z' - - '2023-08-01T18:00:00Z' - - '2023-08-01T19:00:00Z' - - '2023-08-01T20:00:00Z' - - '2023-08-01T21:00:00Z' - - '2023-08-01T22:00:00Z' - - '2023-08-01T23:00:00Z' - - '2023-08-02T00:00:00Z' - - '2023-08-02T01:00:00Z' - - '2023-08-02T02:00:00Z' - - '2023-08-02T03:00:00Z' - - '2023-08-02T04:00:00Z' - - '2023-08-02T05:00:00Z' - - '2023-08-02T06:00:00Z' - - '2023-08-02T07:00:00Z' - - '2023-08-02T08:00:00Z' - - '2023-08-02T09:00:00Z' - - '2023-08-02T10:00:00Z' - - '2023-08-02T11:00:00Z' - - '2023-08-02T12:00:00Z' - - '2023-08-02T13:00:00Z' - - '2023-08-02T14:00:00Z' - - '2023-08-02T15:00:00Z' - - '2023-08-02T16:00:00Z' - - '2023-08-02T17:00:00Z' - - '2023-08-02T18:00:00Z' - - '2023-08-02T19:00:00Z' - - '2023-08-02T20:00:00Z' - - '2023-08-02T21:00:00Z' - - '2023-08-02T22:00:00Z' - - '2023-08-02T23:00:00Z' - - '2023-08-03T00:00:00Z' - - '2023-08-03T01:00:00Z' - - '2023-08-03T02:00:00Z' - - '2023-08-03T03:00:00Z' - - '2023-08-03T04:00:00Z' - - '2023-08-03T05:00:00Z' - - '2023-08-03T06:00:00Z' - - '2023-08-03T07:00:00Z' - - '2023-08-03T08:00:00Z' - - '2023-08-03T09:00:00Z' - - '2023-08-03T10:00:00Z' - - '2023-08-03T11:00:00Z' - - '2023-08-03T12:00:00Z' - - '2023-08-03T13:00:00Z' - - '2023-08-03T14:00:00Z' - - '2023-08-03T15:00:00Z' - - '2023-08-03T16:00:00Z' - - '2023-08-03T17:00:00Z' - - '2023-08-03T18:00:00Z' - - '2023-08-03T19:00:00Z' - - '2023-08-03T20:00:00Z' - - '2023-08-03T21:00:00Z' - - '2023-08-03T22:00:00Z' - - '2023-08-03T23:00:00Z' - - '2023-08-04T00:00:00Z' - - '2023-08-04T01:00:00Z' - - '2023-08-04T02:00:00Z' - - '2023-08-04T03:00:00Z' - - '2023-08-04T04:00:00Z' - - '2023-08-04T05:00:00Z' - - '2023-08-04T06:00:00Z' - - '2023-08-04T07:00:00Z' - - '2023-08-04T08:00:00Z' - - '2023-08-04T09:00:00Z' - - '2023-08-04T10:00:00Z' - - '2023-08-04T11:00:00Z' - - '2023-08-04T12:00:00Z' - - '2023-08-04T13:00:00Z' - - '2023-08-04T14:00:00Z' - - '2023-08-04T15:00:00Z' - - '2023-08-04T16:00:00Z' - - '2023-08-04T17:00:00Z' - - '2023-08-04T18:00:00Z' - - '2023-08-04T19:00:00Z' - - '2023-08-04T20:00:00Z' - - '2023-08-04T21:00:00Z' - - '2023-08-04T22:00:00Z' - - '2023-08-04T23:00:00Z' - - '2023-08-05T00:00:00Z' - - '2023-08-05T01:00:00Z' - - '2023-08-05T02:00:00Z' - - '2023-08-05T03:00:00Z' - - '2023-08-05T04:00:00Z' - - '2023-08-05T05:00:00Z' - - '2023-08-05T06:00:00Z' - - '2023-08-05T07:00:00Z' - - '2023-08-05T08:00:00Z' - - '2023-08-05T09:00:00Z' - - '2023-08-05T10:00:00Z' - - '2023-08-05T11:00:00Z' - - '2023-08-05T12:00:00Z' - - '2023-08-05T13:00:00Z' - - '2023-08-05T14:00:00Z' - - '2023-08-05T15:00:00Z' - - '2023-08-05T16:00:00Z' - - '2023-08-05T17:00:00Z' - - '2023-08-05T18:00:00Z' - - '2023-08-05T19:00:00Z' - - '2023-08-05T20:00:00Z' - - '2023-08-05T21:00:00Z' - - '2023-08-05T22:00:00Z' - - '2023-08-05T23:00:00Z' - - '2023-08-06T00:00:00Z' - - '2023-08-06T01:00:00Z' - - '2023-08-06T02:00:00Z' - - '2023-08-06T03:00:00Z' - - '2023-08-06T04:00:00Z' - - '2023-08-06T05:00:00Z' - - '2023-08-06T06:00:00Z' - - '2023-08-06T07:00:00Z' - - '2023-08-06T08:00:00Z' - - '2023-08-06T09:00:00Z' - - '2023-08-06T10:00:00Z' - - '2023-08-06T11:00:00Z' - - '2023-08-06T12:00:00Z' - - '2023-08-06T13:00:00Z' - - '2023-08-06T14:00:00Z' - - '2023-08-06T15:00:00Z' - - '2023-08-06T16:00:00Z' - - '2023-08-06T17:00:00Z' - - '2023-08-06T18:00:00Z' - - '2023-08-06T19:00:00Z' - - '2023-08-06T20:00:00Z' - - '2023-08-06T21:00:00Z' - - '2023-08-06T22:00:00Z' - - '2023-08-06T23:00:00Z' - - '2023-08-07T00:00:00Z' - - '2023-08-07T01:00:00Z' - - '2023-08-07T02:00:00Z' - - '2023-08-07T03:00:00Z' - - '2023-08-07T04:00:00Z' - - '2023-08-07T05:00:00Z' - - '2023-08-07T06:00:00Z' - - '2023-08-07T07:00:00Z' - - '2023-08-07T08:00:00Z' - - '2023-08-07T09:00:00Z' - - '2023-08-07T10:00:00Z' - - '2023-08-07T11:00:00Z' - - '2023-08-07T12:00:00Z' - - '2023-08-07T13:00:00Z' - - '2023-08-07T14:00:00Z' - - '2023-08-07T15:00:00Z' - - '2023-08-07T16:00:00Z' - - '2023-08-07T17:00:00Z' - - '2023-08-07T18:00:00Z' - - '2023-08-07T19:00:00Z' - - '2023-08-07T20:00:00Z' - - '2023-08-07T21:00:00Z' - - '2023-08-07T22:00:00Z' - - '2023-08-07T23:00:00Z' - - '2023-08-08T00:00:00Z' - - '2023-08-08T01:00:00Z' - - '2023-08-08T02:00:00Z' - - '2023-08-08T03:00:00Z' - - '2023-08-08T04:00:00Z' - - '2023-08-08T05:00:00Z' - - '2023-08-08T06:00:00Z' - - '2023-08-08T07:00:00Z' - - '2023-08-08T08:00:00Z' - - '2023-08-08T09:00:00Z' - - '2023-08-08T10:00:00Z' - - '2023-08-08T11:00:00Z' - - '2023-08-08T12:00:00Z' - - '2023-08-08T13:00:00Z' - - '2023-08-08T14:00:00Z' - - '2023-08-08T15:00:00Z' - - '2023-08-08T16:00:00Z' - - '2023-08-08T17:00:00Z' - - '2023-08-08T18:00:00Z' - - '2023-08-08T19:00:00Z' - - '2023-08-08T20:00:00Z' - - '2023-08-08T21:00:00Z' - - '2023-08-08T22:00:00Z' - - '2023-08-08T23:00:00Z' - - '2023-08-09T00:00:00Z' - - '2023-08-09T01:00:00Z' - - '2023-08-09T02:00:00Z' - - '2023-08-09T03:00:00Z' - - '2023-08-09T04:00:00Z' - - '2023-08-09T05:00:00Z' - - '2023-08-09T06:00:00Z' - - '2023-08-09T07:00:00Z' - - '2023-08-09T08:00:00Z' - - '2023-08-09T09:00:00Z' - - '2023-08-09T10:00:00Z' - - '2023-08-09T11:00:00Z' - - '2023-08-09T12:00:00Z' - - '2023-08-09T13:00:00Z' - - '2023-08-09T14:00:00Z' - - '2023-08-09T15:00:00Z' - - '2023-08-09T16:00:00Z' - - '2023-08-09T17:00:00Z' - - '2023-08-09T18:00:00Z' - - '2023-08-09T19:00:00Z' - - '2023-08-09T20:00:00Z' - - '2023-08-09T21:00:00Z' - - '2023-08-09T22:00:00Z' - - '2023-08-09T23:00:00Z' - - '2023-08-10T00:00:00Z' - - '2023-08-10T01:00:00Z' - - '2023-08-10T02:00:00Z' - - '2023-08-10T03:00:00Z' - - '2023-08-10T04:00:00Z' - - '2023-08-10T05:00:00Z' - - '2023-08-10T06:00:00Z' - - '2023-08-10T07:00:00Z' - - '2023-08-10T08:00:00Z' - - '2023-08-10T09:00:00Z' - - '2023-08-10T10:00:00Z' - - '2023-08-10T11:00:00Z' - - '2023-08-10T12:00:00Z' - - '2023-08-10T13:00:00Z' - - '2023-08-10T14:00:00Z' - - '2023-08-10T15:00:00Z' - - '2023-08-10T16:00:00Z' - - '2023-08-10T17:00:00Z' - - '2023-08-10T18:00:00Z' - - '2023-08-10T19:00:00Z' - - '2023-08-10T20:00:00Z' - - '2023-08-10T21:00:00Z' - - '2023-08-10T22:00:00Z' - - '2023-08-10T23:00:00Z' - - '2023-08-11T00:00:00Z' - - '2023-08-11T01:00:00Z' - - '2023-08-11T02:00:00Z' - - '2023-08-11T03:00:00Z' - - '2023-08-11T04:00:00Z' - - '2023-08-11T05:00:00Z' - - '2023-08-11T06:00:00Z' - - '2023-08-11T07:00:00Z' - - '2023-08-11T08:00:00Z' - - '2023-08-11T09:00:00Z' - - '2023-08-11T10:00:00Z' - - '2023-08-11T11:00:00Z' - - '2023-08-11T12:00:00Z' - - '2023-08-11T13:00:00Z' - - '2023-08-11T14:00:00Z' - - '2023-08-11T15:00:00Z' - - '2023-08-11T16:00:00Z' - - '2023-08-11T17:00:00Z' - - '2023-08-11T18:00:00Z' - - '2023-08-11T19:00:00Z' - - '2023-08-11T20:00:00Z' - - '2023-08-11T21:00:00Z' - - '2023-08-11T22:00:00Z' - - '2023-08-11T23:00:00Z' - - '2023-08-12T00:00:00Z' - - '2023-08-12T01:00:00Z' - - '2023-08-12T02:00:00Z' - - '2023-08-12T03:00:00Z' - - '2023-08-12T04:00:00Z' - - '2023-08-12T05:00:00Z' - - '2023-08-12T06:00:00Z' - - '2023-08-12T07:00:00Z' - - '2023-08-12T08:00:00Z' - - '2023-08-12T09:00:00Z' - - '2023-08-12T10:00:00Z' - - '2023-08-12T11:00:00Z' - - '2023-08-12T12:00:00Z' - - '2023-08-12T13:00:00Z' - - '2023-08-12T14:00:00Z' - - '2023-08-12T15:00:00Z' - - '2023-08-12T16:00:00Z' - - '2023-08-12T17:00:00Z' - - '2023-08-12T18:00:00Z' - - '2023-08-12T19:00:00Z' - - '2023-08-12T20:00:00Z' - - '2023-08-12T21:00:00Z' - - '2023-08-12T22:00:00Z' - - '2023-08-12T23:00:00Z' - - '2023-08-13T00:00:00Z' - - '2023-08-13T01:00:00Z' - - '2023-08-13T02:00:00Z' - - '2023-08-13T03:00:00Z' - - '2023-08-13T04:00:00Z' - - '2023-08-13T05:00:00Z' - - '2023-08-13T06:00:00Z' - - '2023-08-13T07:00:00Z' - - '2023-08-13T08:00:00Z' - - '2023-08-13T09:00:00Z' - - '2023-08-13T10:00:00Z' - - '2023-08-13T11:00:00Z' - - '2023-08-13T12:00:00Z' - - '2023-08-13T13:00:00Z' - - '2023-08-13T14:00:00Z' - - '2023-08-13T15:00:00Z' - - '2023-08-13T16:00:00Z' - - '2023-08-13T17:00:00Z' - - '2023-08-13T18:00:00Z' - - '2023-08-13T19:00:00Z' - - '2023-08-13T20:00:00Z' - - '2023-08-13T21:00:00Z' - - '2023-08-13T22:00:00Z' - - '2023-08-13T23:00:00Z' - - '2023-08-14T00:00:00Z' - - '2023-08-14T01:00:00Z' - - '2023-08-14T02:00:00Z' - - '2023-08-14T03:00:00Z' - - '2023-08-14T04:00:00Z' - - '2023-08-14T05:00:00Z' - - '2023-08-14T06:00:00Z' - - '2023-08-14T07:00:00Z' - - '2023-08-14T08:00:00Z' - - '2023-08-14T09:00:00Z' - - '2023-08-14T10:00:00Z' - - '2023-08-14T11:00:00Z' - - '2023-08-14T12:00:00Z' - - '2023-08-14T13:00:00Z' - - '2023-08-14T14:00:00Z' - - '2023-08-14T15:00:00Z' - - '2023-08-14T16:00:00Z' - - '2023-08-14T17:00:00Z' - - '2023-08-14T18:00:00Z' - - '2023-08-14T19:00:00Z' - - '2023-08-14T20:00:00Z' - - '2023-08-14T21:00:00Z' - - '2023-08-14T22:00:00Z' - - '2023-08-14T23:00:00Z' - - '2023-08-15T00:00:00Z' - - '2023-08-15T01:00:00Z' - - '2023-08-15T02:00:00Z' - - '2023-08-15T03:00:00Z' - - '2023-08-15T04:00:00Z' - - '2023-08-15T05:00:00Z' - - '2023-08-15T06:00:00Z' - - '2023-08-15T07:00:00Z' - - '2023-08-15T08:00:00Z' - - '2023-08-15T09:00:00Z' - - '2023-08-15T10:00:00Z' - - '2023-08-15T11:00:00Z' - - '2023-08-15T12:00:00Z' - - '2023-08-15T13:00:00Z' - - '2023-08-15T14:00:00Z' - - '2023-08-15T15:00:00Z' - - '2023-08-15T16:00:00Z' - - '2023-08-15T17:00:00Z' - - '2023-08-15T18:00:00Z' - - '2023-08-15T19:00:00Z' - - '2023-08-15T20:00:00Z' - - '2023-08-15T21:00:00Z' - - '2023-08-15T22:00:00Z' - - '2023-08-15T23:00:00Z' - - '2023-08-16T00:00:00Z' - - '2023-08-16T01:00:00Z' - - '2023-08-16T02:00:00Z' - - '2023-08-16T03:00:00Z' - - '2023-08-16T04:00:00Z' - - '2023-08-16T05:00:00Z' - - '2023-08-16T06:00:00Z' - - '2023-08-16T07:00:00Z' - - '2023-08-16T08:00:00Z' - - '2023-08-16T09:00:00Z' - - '2023-08-16T10:00:00Z' - - '2023-08-16T11:00:00Z' - - '2023-08-16T12:00:00Z' - - '2023-08-16T13:00:00Z' - - '2023-08-16T14:00:00Z' - - '2023-08-16T15:00:00Z' - - '2023-08-16T16:00:00Z' - - '2023-08-16T17:00:00Z' - - '2023-08-16T18:00:00Z' - - '2023-08-16T19:00:00Z' - - '2023-08-16T20:00:00Z' - - '2023-08-16T21:00:00Z' - - '2023-08-16T22:00:00Z' - - '2023-08-16T23:00:00Z' - - '2023-08-17T00:00:00Z' - - '2023-08-17T01:00:00Z' - - '2023-08-17T02:00:00Z' - - '2023-08-17T03:00:00Z' - - '2023-08-17T04:00:00Z' - - '2023-08-17T05:00:00Z' - - '2023-08-17T06:00:00Z' - - '2023-08-17T07:00:00Z' - - '2023-08-17T08:00:00Z' - - '2023-08-17T09:00:00Z' - - '2023-08-17T10:00:00Z' - - '2023-08-17T11:00:00Z' - - '2023-08-17T12:00:00Z' - - '2023-08-17T13:00:00Z' - - '2023-08-17T14:00:00Z' - - '2023-08-17T15:00:00Z' - - '2023-08-17T16:00:00Z' - - '2023-08-17T17:00:00Z' - - '2023-08-17T18:00:00Z' - - '2023-08-17T19:00:00Z' - - '2023-08-17T20:00:00Z' - - '2023-08-17T21:00:00Z' - - '2023-08-17T22:00:00Z' - - '2023-08-17T23:00:00Z' - - '2023-08-18T00:00:00Z' - - '2023-08-18T01:00:00Z' - - '2023-08-18T02:00:00Z' - - '2023-08-18T03:00:00Z' - - '2023-08-18T04:00:00Z' - - '2023-08-18T05:00:00Z' - - '2023-08-18T06:00:00Z' - - '2023-08-18T07:00:00Z' - - '2023-08-18T08:00:00Z' - - '2023-08-18T09:00:00Z' - - '2023-08-18T10:00:00Z' - - '2023-08-18T11:00:00Z' - - '2023-08-18T12:00:00Z' - - '2023-08-18T13:00:00Z' - - '2023-08-18T14:00:00Z' - - '2023-08-18T15:00:00Z' - - '2023-08-18T16:00:00Z' - - '2023-08-18T17:00:00Z' - - '2023-08-18T18:00:00Z' - - '2023-08-18T19:00:00Z' - - '2023-08-18T20:00:00Z' - - '2023-08-18T21:00:00Z' - - '2023-08-18T22:00:00Z' - - '2023-08-18T23:00:00Z' - - '2023-08-19T00:00:00Z' - - '2023-08-19T01:00:00Z' - - '2023-08-19T02:00:00Z' - - '2023-08-19T03:00:00Z' - - '2023-08-19T04:00:00Z' - - '2023-08-19T05:00:00Z' - - '2023-08-19T06:00:00Z' - - '2023-08-19T07:00:00Z' - - '2023-08-19T08:00:00Z' - - '2023-08-19T09:00:00Z' - - '2023-08-19T10:00:00Z' - - '2023-08-19T11:00:00Z' - - '2023-08-19T12:00:00Z' - - '2023-08-19T13:00:00Z' - - '2023-08-19T14:00:00Z' - - '2023-08-19T15:00:00Z' - - '2023-08-19T16:00:00Z' - - '2023-08-19T17:00:00Z' - - '2023-08-19T18:00:00Z' - - '2023-08-19T19:00:00Z' - - '2023-08-19T20:00:00Z' - - '2023-08-19T21:00:00Z' - - '2023-08-19T22:00:00Z' - - '2023-08-19T23:00:00Z' - - '2023-08-20T00:00:00Z' - - '2023-08-20T01:00:00Z' - - '2023-08-20T02:00:00Z' - - '2023-08-20T03:00:00Z' - - '2023-08-20T04:00:00Z' - - '2023-08-20T05:00:00Z' - - '2023-08-20T06:00:00Z' - - '2023-08-20T07:00:00Z' - - '2023-08-20T08:00:00Z' - - '2023-08-20T09:00:00Z' - - '2023-08-20T10:00:00Z' - - '2023-08-20T11:00:00Z' - - '2023-08-20T12:00:00Z' - - '2023-08-20T13:00:00Z' - - '2023-08-20T14:00:00Z' - - '2023-08-20T15:00:00Z' - - '2023-08-20T16:00:00Z' - - '2023-08-20T17:00:00Z' - - '2023-08-20T18:00:00Z' - - '2023-08-20T19:00:00Z' - - '2023-08-20T20:00:00Z' - - '2023-08-20T21:00:00Z' - - '2023-08-20T22:00:00Z' - - '2023-08-20T23:00:00Z' - - '2023-08-21T00:00:00Z' - - '2023-08-21T01:00:00Z' - - '2023-08-21T02:00:00Z' - - '2023-08-21T03:00:00Z' - - '2023-08-21T04:00:00Z' - - '2023-08-21T05:00:00Z' - - '2023-08-21T06:00:00Z' - - '2023-08-21T07:00:00Z' - - '2023-08-21T08:00:00Z' - - '2023-08-21T09:00:00Z' - - '2023-08-21T10:00:00Z' - - '2023-08-21T11:00:00Z' - - '2023-08-21T12:00:00Z' - - '2023-08-21T13:00:00Z' - - '2023-08-21T14:00:00Z' - - '2023-08-21T15:00:00Z' - - '2023-08-21T16:00:00Z' - - '2023-08-21T17:00:00Z' - - '2023-08-21T18:00:00Z' - - '2023-08-21T19:00:00Z' - - '2023-08-21T20:00:00Z' - - '2023-08-21T21:00:00Z' - - '2023-08-21T22:00:00Z' - - '2023-08-21T23:00:00Z' - - '2023-08-22T00:00:00Z' - - '2023-08-22T01:00:00Z' - - '2023-08-22T02:00:00Z' - - '2023-08-22T03:00:00Z' - - '2023-08-22T04:00:00Z' - - '2023-08-22T05:00:00Z' - - '2023-08-22T06:00:00Z' - - '2023-08-22T07:00:00Z' - - '2023-08-22T08:00:00Z' - - '2023-08-22T09:00:00Z' - - '2023-08-22T10:00:00Z' - - '2023-08-22T11:00:00Z' - - '2023-08-22T12:00:00Z' - - '2023-08-22T13:00:00Z' - - '2023-08-22T14:00:00Z' - - '2023-08-22T15:00:00Z' - - '2023-08-22T16:00:00Z' - - '2023-08-22T17:00:00Z' - - '2023-08-22T18:00:00Z' - - '2023-08-22T19:00:00Z' - - '2023-08-22T20:00:00Z' - - '2023-08-22T21:00:00Z' - - '2023-08-22T22:00:00Z' - - '2023-08-22T23:00:00Z' - - '2023-08-23T00:00:00Z' - - '2023-08-23T01:00:00Z' - - '2023-08-23T02:00:00Z' - - '2023-08-23T03:00:00Z' - - '2023-08-23T04:00:00Z' - - '2023-08-23T05:00:00Z' - - '2023-08-23T06:00:00Z' - - '2023-08-23T07:00:00Z' - - '2023-08-23T08:00:00Z' - - '2023-08-23T09:00:00Z' - - '2023-08-23T10:00:00Z' - - '2023-08-23T11:00:00Z' - - '2023-08-23T12:00:00Z' - - '2023-08-23T13:00:00Z' - - '2023-08-23T14:00:00Z' - - '2023-08-23T15:00:00Z' - - '2023-08-23T16:00:00Z' - - '2023-08-23T17:00:00Z' - - '2023-08-23T18:00:00Z' - - '2023-08-23T19:00:00Z' - - '2023-08-23T20:00:00Z' - - '2023-08-23T21:00:00Z' - - '2023-08-23T22:00:00Z' - - '2023-08-23T23:00:00Z' - - '2023-08-24T00:00:00Z' - - '2023-08-24T01:00:00Z' - - '2023-08-24T02:00:00Z' - - '2023-08-24T03:00:00Z' - - '2023-08-24T04:00:00Z' - - '2023-08-24T05:00:00Z' - - '2023-08-24T06:00:00Z' - - '2023-08-24T07:00:00Z' - - '2023-08-24T08:00:00Z' - - '2023-08-24T09:00:00Z' - - '2023-08-24T10:00:00Z' - - '2023-08-24T11:00:00Z' - - '2023-08-24T12:00:00Z' - - '2023-08-24T13:00:00Z' - - '2023-08-24T14:00:00Z' - - '2023-08-24T15:00:00Z' - - '2023-08-24T16:00:00Z' - - '2023-08-24T17:00:00Z' - - '2023-08-24T18:00:00Z' - - '2023-08-24T19:00:00Z' - - '2023-08-24T20:00:00Z' - - '2023-08-24T21:00:00Z' - - '2023-08-24T22:00:00Z' - - '2023-08-24T23:00:00Z' - - '2023-08-25T00:00:00Z' - - '2023-08-25T01:00:00Z' - - '2023-08-25T02:00:00Z' - - '2023-08-25T03:00:00Z' - - '2023-08-25T04:00:00Z' - - '2023-08-25T05:00:00Z' - - '2023-08-25T06:00:00Z' - - '2023-08-25T07:00:00Z' - - '2023-08-25T08:00:00Z' - - '2023-08-25T09:00:00Z' - - '2023-08-25T10:00:00Z' - - '2023-08-25T11:00:00Z' - - '2023-08-25T12:00:00Z' - - '2023-08-25T13:00:00Z' - - '2023-08-25T14:00:00Z' - - '2023-08-25T15:00:00Z' - - '2023-08-25T16:00:00Z' - - '2023-08-25T17:00:00Z' - - '2023-08-25T18:00:00Z' - - '2023-08-25T19:00:00Z' - - '2023-08-25T20:00:00Z' - - '2023-08-25T21:00:00Z' - - '2023-08-25T22:00:00Z' - - '2023-08-25T23:00:00Z' - - '2023-08-26T00:00:00Z' - - '2023-08-26T01:00:00Z' - - '2023-08-26T02:00:00Z' - - '2023-08-26T03:00:00Z' - - '2023-08-26T04:00:00Z' - - '2023-08-26T05:00:00Z' - - '2023-08-26T06:00:00Z' - - '2023-08-26T07:00:00Z' - - '2023-08-26T08:00:00Z' - - '2023-08-26T09:00:00Z' - - '2023-08-26T10:00:00Z' - - '2023-08-26T11:00:00Z' - - '2023-08-26T12:00:00Z' - - '2023-08-26T13:00:00Z' - - '2023-08-26T14:00:00Z' - - '2023-08-26T15:00:00Z' - - '2023-08-26T16:00:00Z' - - '2023-08-26T17:00:00Z' - - '2023-08-26T18:00:00Z' - - '2023-08-26T19:00:00Z' - - '2023-08-26T20:00:00Z' - - '2023-08-26T21:00:00Z' - - '2023-08-26T22:00:00Z' - - '2023-08-26T23:00:00Z' - - '2023-08-27T00:00:00Z' - - '2023-08-27T01:00:00Z' - - '2023-08-27T02:00:00Z' - - '2023-08-27T03:00:00Z' - - '2023-08-27T04:00:00Z' - - '2023-08-27T05:00:00Z' - - '2023-08-27T06:00:00Z' - - '2023-08-27T07:00:00Z' - - '2023-08-27T08:00:00Z' - - '2023-08-27T09:00:00Z' - - '2023-08-27T10:00:00Z' - - '2023-08-27T11:00:00Z' - - '2023-08-27T12:00:00Z' - - '2023-08-27T13:00:00Z' - - '2023-08-27T14:00:00Z' - - '2023-08-27T15:00:00Z' - - '2023-08-27T16:00:00Z' - - '2023-08-27T17:00:00Z' - - '2023-08-27T18:00:00Z' - - '2023-08-27T19:00:00Z' - - '2023-08-27T20:00:00Z' - - '2023-08-27T21:00:00Z' - - '2023-08-27T22:00:00Z' - - '2023-08-27T23:00:00Z' - - '2023-08-28T00:00:00Z' - - '2023-08-28T01:00:00Z' - - '2023-08-28T02:00:00Z' - - '2023-08-28T03:00:00Z' - - '2023-08-28T04:00:00Z' - - '2023-08-28T05:00:00Z' - - '2023-08-28T06:00:00Z' - - '2023-08-28T07:00:00Z' - - '2023-08-28T08:00:00Z' - - '2023-08-28T09:00:00Z' - - '2023-08-28T10:00:00Z' - - '2023-08-28T11:00:00Z' - - '2023-08-28T12:00:00Z' - - '2023-08-28T13:00:00Z' - - '2023-08-28T14:00:00Z' - - '2023-08-28T15:00:00Z' - - '2023-08-28T16:00:00Z' - - '2023-08-28T17:00:00Z' - - '2023-08-28T18:00:00Z' - - '2023-08-28T19:00:00Z' - - '2023-08-28T20:00:00Z' - - '2023-08-28T21:00:00Z' - - '2023-08-28T22:00:00Z' - - '2023-08-28T23:00:00Z' - - '2023-08-29T00:00:00Z' - - '2023-08-29T01:00:00Z' - - '2023-08-29T02:00:00Z' - - '2023-08-29T03:00:00Z' - - '2023-08-29T04:00:00Z' - - '2023-08-29T05:00:00Z' - - '2023-08-29T06:00:00Z' - - '2023-08-29T07:00:00Z' - - '2023-08-29T08:00:00Z' - - '2023-08-29T09:00:00Z' - - '2023-08-29T10:00:00Z' - - '2023-08-29T11:00:00Z' - - '2023-08-29T12:00:00Z' - - '2023-08-29T13:00:00Z' - - '2023-08-29T14:00:00Z' - - '2023-08-29T15:00:00Z' - - '2023-08-29T16:00:00Z' - - '2023-08-29T17:00:00Z' - - '2023-08-29T18:00:00Z' - - '2023-08-29T19:00:00Z' - - '2023-08-29T20:00:00Z' - - '2023-08-29T21:00:00Z' - - '2023-08-29T22:00:00Z' - - '2023-08-29T23:00:00Z' - - '2023-08-30T00:00:00Z' - - '2023-08-30T01:00:00Z' - - '2023-08-30T02:00:00Z' - - '2023-08-30T03:00:00Z' - - '2023-08-30T04:00:00Z' - - '2023-08-30T05:00:00Z' - - '2023-08-30T06:00:00Z' - - '2023-08-30T07:00:00Z' - - '2023-08-30T08:00:00Z' - - '2023-08-30T09:00:00Z' - - '2023-08-30T10:00:00Z' - - '2023-08-30T11:00:00Z' - - '2023-08-30T12:00:00Z' - - '2023-08-30T13:00:00Z' - - '2023-08-30T14:00:00Z' - - '2023-08-30T15:00:00Z' - - '2023-08-30T16:00:00Z' - - '2023-08-30T17:00:00Z' - - '2023-08-30T18:00:00Z' - - '2023-08-30T19:00:00Z' - - '2023-08-30T20:00:00Z' - - '2023-08-30T21:00:00Z' - - '2023-08-30T22:00:00Z' - - '2023-08-30T23:00:00Z' - - '2023-08-31T00:00:00Z' - - '2023-08-31T01:00:00Z' - - '2023-08-31T02:00:00Z' - - '2023-08-31T03:00:00Z' - - '2023-08-31T04:00:00Z' - - '2023-08-31T05:00:00Z' - - '2023-08-31T06:00:00Z' - - '2023-08-31T07:00:00Z' - - '2023-08-31T08:00:00Z' - - '2023-08-31T09:00:00Z' - - '2023-08-31T10:00:00Z' - - '2023-08-31T11:00:00Z' - - '2023-08-31T12:00:00Z' - - '2023-08-31T13:00:00Z' - - '2023-08-31T14:00:00Z' - - '2023-08-31T15:00:00Z' - - '2023-08-31T16:00:00Z' - - '2023-08-31T17:00:00Z' - - '2023-08-31T18:00:00Z' - - '2023-08-31T19:00:00Z' - - '2023-08-31T20:00:00Z' - - '2023-08-31T21:00:00Z' - - '2023-08-31T22:00:00Z' - - '2023-08-31T23:00:00Z' - - '2023-09-01T00:00:00Z' - - '2023-09-01T01:00:00Z' - - '2023-09-01T02:00:00Z' - - '2023-09-01T03:00:00Z' - - '2023-09-01T04:00:00Z' - - '2023-09-01T05:00:00Z' - - '2023-09-01T06:00:00Z' - - '2023-09-01T07:00:00Z' - - '2023-09-01T08:00:00Z' - - '2023-09-01T09:00:00Z' - - '2023-09-01T10:00:00Z' - - '2023-09-01T11:00:00Z' - - '2023-09-01T12:00:00Z' - - '2023-09-01T13:00:00Z' - - '2023-09-01T14:00:00Z' - - '2023-09-01T15:00:00Z' - - '2023-09-01T16:00:00Z' - - '2023-09-01T17:00:00Z' - - '2023-09-01T18:00:00Z' - - '2023-09-01T19:00:00Z' - - '2023-09-01T20:00:00Z' - - '2023-09-01T21:00:00Z' - - '2023-09-01T22:00:00Z' - - '2023-09-01T23:00:00Z' - - '2023-09-02T00:00:00Z' - - '2023-09-02T01:00:00Z' - - '2023-09-02T02:00:00Z' - - '2023-09-02T03:00:00Z' - - '2023-09-02T04:00:00Z' - - '2023-09-02T05:00:00Z' - - '2023-09-02T06:00:00Z' - - '2023-09-02T07:00:00Z' - - '2023-09-02T08:00:00Z' - - '2023-09-02T09:00:00Z' - - '2023-09-02T10:00:00Z' - - '2023-09-02T11:00:00Z' - - '2023-09-02T12:00:00Z' - - '2023-09-02T13:00:00Z' - - '2023-09-02T14:00:00Z' - - '2023-09-02T15:00:00Z' - - '2023-09-02T16:00:00Z' - - '2023-09-02T17:00:00Z' - - '2023-09-02T18:00:00Z' - - '2023-09-02T19:00:00Z' - - '2023-09-02T20:00:00Z' - - '2023-09-02T21:00:00Z' - - '2023-09-02T22:00:00Z' - - '2023-09-02T23:00:00Z' - - '2023-09-03T00:00:00Z' - - '2023-09-03T01:00:00Z' - - '2023-09-03T02:00:00Z' - - '2023-09-03T03:00:00Z' - - '2023-09-03T04:00:00Z' - - '2023-09-03T05:00:00Z' - - '2023-09-03T06:00:00Z' - - '2023-09-03T07:00:00Z' - - '2023-09-03T08:00:00Z' - - '2023-09-03T09:00:00Z' - - '2023-09-03T10:00:00Z' - - '2023-09-03T11:00:00Z' - - '2023-09-03T12:00:00Z' - - '2023-09-03T13:00:00Z' - - '2023-09-03T14:00:00Z' - - '2023-09-03T15:00:00Z' - - '2023-09-03T16:00:00Z' - - '2023-09-03T17:00:00Z' - - '2023-09-03T18:00:00Z' - - '2023-09-03T19:00:00Z' - - '2023-09-03T20:00:00Z' - - '2023-09-03T21:00:00Z' - - '2023-09-03T22:00:00Z' - - '2023-09-03T23:00:00Z' - - '2023-09-04T00:00:00Z' - - '2023-09-04T01:00:00Z' - - '2023-09-04T02:00:00Z' - - '2023-09-04T03:00:00Z' - - '2023-09-04T04:00:00Z' - - '2023-09-04T05:00:00Z' - - '2023-09-04T06:00:00Z' - - '2023-09-04T07:00:00Z' - - '2023-09-04T08:00:00Z' - - '2023-09-04T09:00:00Z' - - '2023-09-04T10:00:00Z' - - '2023-09-04T11:00:00Z' - - '2023-09-04T12:00:00Z' - - '2023-09-04T13:00:00Z' - - '2023-09-04T14:00:00Z' - - '2023-09-04T15:00:00Z' - - '2023-09-04T16:00:00Z' - - '2023-09-04T17:00:00Z' - - '2023-09-04T18:00:00Z' - - '2023-09-04T19:00:00Z' - - '2023-09-04T20:00:00Z' - - '2023-09-04T21:00:00Z' - - '2023-09-04T22:00:00Z' - - '2023-09-04T23:00:00Z' - - '2023-09-05T00:00:00Z' - - '2023-09-05T01:00:00Z' - - '2023-09-05T02:00:00Z' - - '2023-09-05T03:00:00Z' - - '2023-09-05T04:00:00Z' - - '2023-09-05T05:00:00Z' - - '2023-09-05T06:00:00Z' - - '2023-09-05T07:00:00Z' - - '2023-09-05T08:00:00Z' - - '2023-09-05T09:00:00Z' - - '2023-09-05T10:00:00Z' - - '2023-09-05T11:00:00Z' - - '2023-09-05T12:00:00Z' - - '2023-09-05T13:00:00Z' - - '2023-09-05T14:00:00Z' - - '2023-09-05T15:00:00Z' - - '2023-09-05T16:00:00Z' - - '2023-09-05T17:00:00Z' - - '2023-09-05T18:00:00Z' - - '2023-09-05T19:00:00Z' - - '2023-09-05T20:00:00Z' - - '2023-09-05T21:00:00Z' - - '2023-09-05T22:00:00Z' - - '2023-09-05T23:00:00Z' - - '2023-09-06T00:00:00Z' - - '2023-09-06T01:00:00Z' - - '2023-09-06T02:00:00Z' - - '2023-09-06T03:00:00Z' - - '2023-09-06T04:00:00Z' - - '2023-09-06T05:00:00Z' - - '2023-09-06T06:00:00Z' - - '2023-09-06T07:00:00Z' - - '2023-09-06T08:00:00Z' - - '2023-09-06T09:00:00Z' - - '2023-09-06T10:00:00Z' - - '2023-09-06T11:00:00Z' - - '2023-09-06T12:00:00Z' - - '2023-09-06T13:00:00Z' - - '2023-09-06T14:00:00Z' - - '2023-09-06T15:00:00Z' - - '2023-09-06T16:00:00Z' - - '2023-09-06T17:00:00Z' - - '2023-09-06T18:00:00Z' - - '2023-09-06T19:00:00Z' - - '2023-09-06T20:00:00Z' - - '2023-09-06T21:00:00Z' - - '2023-09-06T22:00:00Z' - - '2023-09-06T23:00:00Z' - - '2023-09-07T00:00:00Z' - - '2023-09-07T01:00:00Z' - - '2023-09-07T02:00:00Z' - - '2023-09-07T03:00:00Z' - - '2023-09-07T04:00:00Z' - - '2023-09-07T05:00:00Z' - - '2023-09-07T06:00:00Z' - - '2023-09-07T07:00:00Z' - - '2023-09-07T08:00:00Z' - - '2023-09-07T09:00:00Z' - - '2023-09-07T10:00:00Z' - - '2023-09-07T11:00:00Z' - - '2023-09-07T12:00:00Z' - - '2023-09-07T13:00:00Z' - - '2023-09-07T14:00:00Z' - - '2023-09-07T15:00:00Z' - - '2023-09-07T16:00:00Z' - - '2023-09-07T17:00:00Z' - - '2023-09-07T18:00:00Z' - - '2023-09-07T19:00:00Z' - - '2023-09-07T20:00:00Z' - - '2023-09-07T21:00:00Z' - - '2023-09-07T22:00:00Z' - - '2023-09-07T23:00:00Z' - - '2023-09-08T00:00:00Z' - - '2023-09-08T01:00:00Z' - - '2023-09-08T02:00:00Z' - - '2023-09-08T03:00:00Z' - - '2023-09-08T04:00:00Z' - - '2023-09-08T05:00:00Z' - - '2023-09-08T06:00:00Z' - - '2023-09-08T07:00:00Z' - - '2023-09-08T08:00:00Z' - - '2023-09-08T09:00:00Z' - - '2023-09-08T10:00:00Z' - - '2023-09-08T11:00:00Z' - - '2023-09-08T12:00:00Z' - - '2023-09-08T13:00:00Z' - - '2023-09-08T14:00:00Z' - - '2023-09-08T15:00:00Z' - - '2023-09-08T16:00:00Z' - - '2023-09-08T17:00:00Z' - - '2023-09-08T18:00:00Z' - - '2023-09-08T19:00:00Z' - - '2023-09-08T20:00:00Z' - - '2023-09-08T21:00:00Z' - - '2023-09-08T22:00:00Z' - - '2023-09-08T23:00:00Z' - - '2023-09-09T00:00:00Z' - - '2023-09-09T01:00:00Z' - - '2023-09-09T02:00:00Z' - - '2023-09-09T03:00:00Z' - - '2023-09-09T04:00:00Z' - - '2023-09-09T05:00:00Z' - - '2023-09-09T06:00:00Z' - - '2023-09-09T07:00:00Z' - - '2023-09-09T08:00:00Z' - - '2023-09-09T09:00:00Z' - - '2023-09-09T10:00:00Z' - - '2023-09-09T11:00:00Z' - - '2023-09-09T12:00:00Z' - - '2023-09-09T13:00:00Z' - - '2023-09-09T14:00:00Z' - - '2023-09-09T15:00:00Z' - - '2023-09-09T16:00:00Z' - - '2023-09-09T17:00:00Z' - - '2023-09-09T18:00:00Z' - - '2023-09-09T19:00:00Z' - - '2023-09-09T20:00:00Z' - - '2023-09-09T21:00:00Z' - - '2023-09-09T22:00:00Z' - - '2023-09-09T23:00:00Z' - - '2023-09-10T00:00:00Z' - - '2023-09-10T01:00:00Z' - - '2023-09-10T02:00:00Z' - - '2023-09-10T03:00:00Z' - - '2023-09-10T04:00:00Z' - - '2023-09-10T05:00:00Z' - - '2023-09-10T06:00:00Z' - - '2023-09-10T07:00:00Z' - - '2023-09-10T08:00:00Z' - - '2023-09-10T09:00:00Z' - - '2023-09-10T10:00:00Z' - - '2023-09-10T11:00:00Z' - - '2023-09-10T12:00:00Z' - - '2023-09-10T13:00:00Z' - - '2023-09-10T14:00:00Z' - - '2023-09-10T15:00:00Z' - - '2023-09-10T16:00:00Z' - - '2023-09-10T17:00:00Z' - - '2023-09-10T18:00:00Z' - - '2023-09-10T19:00:00Z' - - '2023-09-10T20:00:00Z' - - '2023-09-10T21:00:00Z' - - '2023-09-10T22:00:00Z' - - '2023-09-10T23:00:00Z' - - '2023-09-11T00:00:00Z' - - '2023-09-11T01:00:00Z' - - '2023-09-11T02:00:00Z' - - '2023-09-11T03:00:00Z' - - '2023-09-11T04:00:00Z' - - '2023-09-11T05:00:00Z' - - '2023-09-11T06:00:00Z' - - '2023-09-11T07:00:00Z' - - '2023-09-11T08:00:00Z' - - '2023-09-11T09:00:00Z' - - '2023-09-11T10:00:00Z' - - '2023-09-11T11:00:00Z' - - '2023-09-11T12:00:00Z' - - '2023-09-11T13:00:00Z' - - '2023-09-11T14:00:00Z' - - '2023-09-11T15:00:00Z' - - '2023-09-11T16:00:00Z' - - '2023-09-11T17:00:00Z' - - '2023-09-11T18:00:00Z' - - '2023-09-11T19:00:00Z' - - '2023-09-11T20:00:00Z' - - '2023-09-11T21:00:00Z' - - '2023-09-11T22:00:00Z' - - '2023-09-11T23:00:00Z' - - '2023-09-12T00:00:00Z' - - '2023-09-12T01:00:00Z' - - '2023-09-12T02:00:00Z' - - '2023-09-12T03:00:00Z' - - '2023-09-12T04:00:00Z' - - '2023-09-12T05:00:00Z' - - '2023-09-12T06:00:00Z' - - '2023-09-12T07:00:00Z' - - '2023-09-12T08:00:00Z' - - '2023-09-12T09:00:00Z' - - '2023-09-12T10:00:00Z' - - '2023-09-12T11:00:00Z' - - '2023-09-12T12:00:00Z' - - '2023-09-12T13:00:00Z' - - '2023-09-12T14:00:00Z' - - '2023-09-12T15:00:00Z' - - '2023-09-12T16:00:00Z' - - '2023-09-12T17:00:00Z' - - '2023-09-12T18:00:00Z' - - '2023-09-12T19:00:00Z' - - '2023-09-12T20:00:00Z' - - '2023-09-12T21:00:00Z' - - '2023-09-12T22:00:00Z' - - '2023-09-12T23:00:00Z' - - '2023-09-13T00:00:00Z' - - '2023-09-13T01:00:00Z' - - '2023-09-13T02:00:00Z' - - '2023-09-13T03:00:00Z' - - '2023-09-13T04:00:00Z' - - '2023-09-13T05:00:00Z' - - '2023-09-13T06:00:00Z' - - '2023-09-13T07:00:00Z' - - '2023-09-13T08:00:00Z' - - '2023-09-13T09:00:00Z' - - '2023-09-13T10:00:00Z' - - '2023-09-13T11:00:00Z' - - '2023-09-13T12:00:00Z' - - '2023-09-13T13:00:00Z' - - '2023-09-13T14:00:00Z' - - '2023-09-13T15:00:00Z' - - '2023-09-13T16:00:00Z' - - '2023-09-13T17:00:00Z' - - '2023-09-13T18:00:00Z' - - '2023-09-13T19:00:00Z' - - '2023-09-13T20:00:00Z' - - '2023-09-13T21:00:00Z' - - '2023-09-13T22:00:00Z' - - '2023-09-13T23:00:00Z' - - '2023-09-14T00:00:00Z' - - '2023-09-14T01:00:00Z' - - '2023-09-14T02:00:00Z' - - '2023-09-14T03:00:00Z' - - '2023-09-14T04:00:00Z' - - '2023-09-14T05:00:00Z' - - '2023-09-14T06:00:00Z' - - '2023-09-14T07:00:00Z' - - '2023-09-14T08:00:00Z' - - '2023-09-14T09:00:00Z' - - '2023-09-14T10:00:00Z' - - '2023-09-14T11:00:00Z' - - '2023-09-14T12:00:00Z' - - '2023-09-14T13:00:00Z' - - '2023-09-14T14:00:00Z' - - '2023-09-14T15:00:00Z' - - '2023-09-14T16:00:00Z' - - '2023-09-14T17:00:00Z' - - '2023-09-14T18:00:00Z' - - '2023-09-14T19:00:00Z' - - '2023-09-14T20:00:00Z' - - '2023-09-14T21:00:00Z' - - '2023-09-14T22:00:00Z' - - '2023-09-14T23:00:00Z' - - '2023-09-15T00:00:00Z' - - '2023-09-15T01:00:00Z' - - '2023-09-15T02:00:00Z' - - '2023-09-15T03:00:00Z' - - '2023-09-15T04:00:00Z' - - '2023-09-15T05:00:00Z' - - '2023-09-15T06:00:00Z' - - '2023-09-15T07:00:00Z' - - '2023-09-15T08:00:00Z' - - '2023-09-15T09:00:00Z' - - '2023-09-15T10:00:00Z' - - '2023-09-15T11:00:00Z' - - '2023-09-15T12:00:00Z' - - '2023-09-15T13:00:00Z' - - '2023-09-15T14:00:00Z' - - '2023-09-15T15:00:00Z' - - '2023-09-15T16:00:00Z' - - '2023-09-15T17:00:00Z' - - '2023-09-15T18:00:00Z' - - '2023-09-15T19:00:00Z' - - '2023-09-15T20:00:00Z' - - '2023-09-15T21:00:00Z' - - '2023-09-15T22:00:00Z' - - '2023-09-15T23:00:00Z' - - '2023-09-16T00:00:00Z' - - '2023-09-16T01:00:00Z' - - '2023-09-16T02:00:00Z' - - '2023-09-16T03:00:00Z' - - '2023-09-16T04:00:00Z' - - '2023-09-16T05:00:00Z' - - '2023-09-16T06:00:00Z' - - '2023-09-16T07:00:00Z' - - '2023-09-16T08:00:00Z' - - '2023-09-16T09:00:00Z' - - '2023-09-16T10:00:00Z' - - '2023-09-16T11:00:00Z' - - '2023-09-16T12:00:00Z' - - '2023-09-16T13:00:00Z' - - '2023-09-16T14:00:00Z' - - '2023-09-16T15:00:00Z' - - '2023-09-16T16:00:00Z' - - '2023-09-16T17:00:00Z' - - '2023-09-16T18:00:00Z' - - '2023-09-16T19:00:00Z' - - '2023-09-16T20:00:00Z' - - '2023-09-16T21:00:00Z' - - '2023-09-16T22:00:00Z' - - '2023-09-16T23:00:00Z' - - '2023-09-17T00:00:00Z' - - '2023-09-17T01:00:00Z' - - '2023-09-17T02:00:00Z' - - '2023-09-17T03:00:00Z' - - '2023-09-17T04:00:00Z' - - '2023-09-17T05:00:00Z' - - '2023-09-17T06:00:00Z' - - '2023-09-17T07:00:00Z' - - '2023-09-17T08:00:00Z' - - '2023-09-17T09:00:00Z' - - '2023-09-17T10:00:00Z' - - '2023-09-17T11:00:00Z' - - '2023-09-17T12:00:00Z' - - '2023-09-17T13:00:00Z' - - '2023-09-17T14:00:00Z' - - '2023-09-17T15:00:00Z' - - '2023-09-17T16:00:00Z' - - '2023-09-17T17:00:00Z' - - '2023-09-17T18:00:00Z' - - '2023-09-17T19:00:00Z' - - '2023-09-17T20:00:00Z' - - '2023-09-17T21:00:00Z' - - '2023-09-17T22:00:00Z' - - '2023-09-17T23:00:00Z' - - '2023-09-18T00:00:00Z' - - '2023-09-18T01:00:00Z' - - '2023-09-18T02:00:00Z' - - '2023-09-18T03:00:00Z' - - '2023-09-18T04:00:00Z' - - '2023-09-18T05:00:00Z' - - '2023-09-18T06:00:00Z' - - '2023-09-18T07:00:00Z' - - '2023-09-18T08:00:00Z' - - '2023-09-18T09:00:00Z' - - '2023-09-18T10:00:00Z' - - '2023-09-18T11:00:00Z' - - '2023-09-18T12:00:00Z' - - '2023-09-18T13:00:00Z' - - '2023-09-18T14:00:00Z' - - '2023-09-18T15:00:00Z' - - '2023-09-18T16:00:00Z' - - '2023-09-18T17:00:00Z' - - '2023-09-18T18:00:00Z' - - '2023-09-18T19:00:00Z' - - '2023-09-18T20:00:00Z' - - '2023-09-18T21:00:00Z' - - '2023-09-18T22:00:00Z' - - '2023-09-18T23:00:00Z' - - '2023-09-19T00:00:00Z' - - '2023-09-19T01:00:00Z' - - '2023-09-19T02:00:00Z' - - '2023-09-19T03:00:00Z' - - '2023-09-19T04:00:00Z' - - '2023-09-19T05:00:00Z' - - '2023-09-19T06:00:00Z' - - '2023-09-19T07:00:00Z' - - '2023-09-19T08:00:00Z' - - '2023-09-19T09:00:00Z' - - '2023-09-19T10:00:00Z' - - '2023-09-19T11:00:00Z' - - '2023-09-19T12:00:00Z' - - '2023-09-19T13:00:00Z' - - '2023-09-19T14:00:00Z' - - '2023-09-19T15:00:00Z' - - '2023-09-19T16:00:00Z' - - '2023-09-19T17:00:00Z' - - '2023-09-19T18:00:00Z' - - '2023-09-19T19:00:00Z' - - '2023-09-19T20:00:00Z' - - '2023-09-19T21:00:00Z' - - '2023-09-19T22:00:00Z' - - '2023-09-19T23:00:00Z' - - '2023-09-20T00:00:00Z' - - '2023-09-20T01:00:00Z' - - '2023-09-20T02:00:00Z' - - '2023-09-20T03:00:00Z' - - '2023-09-20T04:00:00Z' - - '2023-09-20T05:00:00Z' - - '2023-09-20T06:00:00Z' - - '2023-09-20T07:00:00Z' - - '2023-09-20T08:00:00Z' - - '2023-09-20T09:00:00Z' - - '2023-09-20T10:00:00Z' - - '2023-09-20T11:00:00Z' - - '2023-09-20T12:00:00Z' - - '2023-09-20T13:00:00Z' - - '2023-09-20T14:00:00Z' - - '2023-09-20T15:00:00Z' - - '2023-09-20T16:00:00Z' - - '2023-09-20T17:00:00Z' - - '2023-09-20T18:00:00Z' - - '2023-09-20T19:00:00Z' - - '2023-09-20T20:00:00Z' - - '2023-09-20T21:00:00Z' - - '2023-09-20T22:00:00Z' - - '2023-09-20T23:00:00Z' - - '2023-09-21T00:00:00Z' - - '2023-09-21T01:00:00Z' - - '2023-09-21T02:00:00Z' - - '2023-09-21T03:00:00Z' - - '2023-09-21T04:00:00Z' - - '2023-09-21T05:00:00Z' - - '2023-09-21T06:00:00Z' - - '2023-09-21T07:00:00Z' - - '2023-09-21T08:00:00Z' - - '2023-09-21T09:00:00Z' - - '2023-09-21T10:00:00Z' - - '2023-09-21T11:00:00Z' - - '2023-09-21T12:00:00Z' - - '2023-09-21T13:00:00Z' - - '2023-09-21T14:00:00Z' - - '2023-09-21T15:00:00Z' - - '2023-09-21T16:00:00Z' - - '2023-09-21T17:00:00Z' - - '2023-09-21T18:00:00Z' - - '2023-09-21T19:00:00Z' - - '2023-09-21T20:00:00Z' - - '2023-09-21T21:00:00Z' - - '2023-09-21T22:00:00Z' - - '2023-09-21T23:00:00Z' - - '2023-09-22T00:00:00Z' - - '2023-09-22T01:00:00Z' - - '2023-09-22T02:00:00Z' - - '2023-09-22T03:00:00Z' - - '2023-09-22T04:00:00Z' - - '2023-09-22T05:00:00Z' - - '2023-09-22T06:00:00Z' - - '2023-09-22T07:00:00Z' - - '2023-09-22T08:00:00Z' - - '2023-09-22T09:00:00Z' - - '2023-09-22T10:00:00Z' - - '2023-09-22T11:00:00Z' - - '2023-09-22T12:00:00Z' - - '2023-09-22T13:00:00Z' - - '2023-09-22T14:00:00Z' - - '2023-09-22T15:00:00Z' - - '2023-09-22T16:00:00Z' - - '2023-09-22T17:00:00Z' - - '2023-09-22T18:00:00Z' - - '2023-09-22T19:00:00Z' - - '2023-09-22T20:00:00Z' - - '2023-09-22T21:00:00Z' - - '2023-09-22T22:00:00Z' - - '2023-09-22T23:00:00Z' - - '2023-09-23T00:00:00Z' - - '2023-09-23T01:00:00Z' - - '2023-09-23T02:00:00Z' - - '2023-09-23T03:00:00Z' - - '2023-09-23T04:00:00Z' - - '2023-09-23T05:00:00Z' - - '2023-09-23T06:00:00Z' - - '2023-09-23T07:00:00Z' - - '2023-09-23T08:00:00Z' - - '2023-09-23T09:00:00Z' - - '2023-09-23T10:00:00Z' - - '2023-09-23T11:00:00Z' - - '2023-09-23T12:00:00Z' - - '2023-09-23T13:00:00Z' - - '2023-09-23T14:00:00Z' - - '2023-09-23T15:00:00Z' - - '2023-09-23T16:00:00Z' - - '2023-09-23T17:00:00Z' - - '2023-09-23T18:00:00Z' - - '2023-09-23T19:00:00Z' - - '2023-09-23T20:00:00Z' - - '2023-09-23T21:00:00Z' - - '2023-09-23T22:00:00Z' - - '2023-09-23T23:00:00Z' - - '2023-09-24T00:00:00Z' - - '2023-09-24T01:00:00Z' - - '2023-09-24T02:00:00Z' - - '2023-09-24T03:00:00Z' - - '2023-09-24T04:00:00Z' - - '2023-09-24T05:00:00Z' - - '2023-09-24T06:00:00Z' - - '2023-09-24T07:00:00Z' - - '2023-09-24T08:00:00Z' - - '2023-09-24T09:00:00Z' - - '2023-09-24T10:00:00Z' - - '2023-09-24T11:00:00Z' - - '2023-09-24T12:00:00Z' - - '2023-09-24T13:00:00Z' - - '2023-09-24T14:00:00Z' - - '2023-09-24T15:00:00Z' - - '2023-09-24T16:00:00Z' - - '2023-09-24T17:00:00Z' - - '2023-09-24T18:00:00Z' - - '2023-09-24T19:00:00Z' - - '2023-09-24T20:00:00Z' - - '2023-09-24T21:00:00Z' - - '2023-09-24T22:00:00Z' - - '2023-09-24T23:00:00Z' - - '2023-09-25T00:00:00Z' - - '2023-09-25T01:00:00Z' - - '2023-09-25T02:00:00Z' - - '2023-09-25T03:00:00Z' - - '2023-09-25T04:00:00Z' - - '2023-09-25T05:00:00Z' - - '2023-09-25T06:00:00Z' - - '2023-09-25T07:00:00Z' - - '2023-09-25T08:00:00Z' - - '2023-09-25T09:00:00Z' - - '2023-09-25T10:00:00Z' - - '2023-09-25T11:00:00Z' - - '2023-09-25T12:00:00Z' - - '2023-09-25T13:00:00Z' - - '2023-09-25T14:00:00Z' - - '2023-09-25T15:00:00Z' - - '2023-09-25T16:00:00Z' - - '2023-09-25T17:00:00Z' - - '2023-09-25T18:00:00Z' - - '2023-09-25T19:00:00Z' - - '2023-09-25T20:00:00Z' - - '2023-09-25T21:00:00Z' - - '2023-09-25T22:00:00Z' - - '2023-09-25T23:00:00Z' - - '2023-09-26T00:00:00Z' - - '2023-09-26T01:00:00Z' - - '2023-09-26T02:00:00Z' - - '2023-09-26T03:00:00Z' - - '2023-09-26T04:00:00Z' - - '2023-09-26T05:00:00Z' - - '2023-09-26T06:00:00Z' - - '2023-09-26T07:00:00Z' - - '2023-09-26T08:00:00Z' - - '2023-09-26T09:00:00Z' - - '2023-09-26T10:00:00Z' - - '2023-09-26T11:00:00Z' - - '2023-09-26T12:00:00Z' - - '2023-09-26T13:00:00Z' - - '2023-09-26T14:00:00Z' - - '2023-09-26T15:00:00Z' - - '2023-09-26T16:00:00Z' - - '2023-09-26T17:00:00Z' - - '2023-09-26T18:00:00Z' - - '2023-09-26T19:00:00Z' - - '2023-09-26T20:00:00Z' - - '2023-09-26T21:00:00Z' - - '2023-09-26T22:00:00Z' - - '2023-09-26T23:00:00Z' - - '2023-09-27T00:00:00Z' - - '2023-09-27T01:00:00Z' - - '2023-09-27T02:00:00Z' - - '2023-09-27T03:00:00Z' - - '2023-09-27T04:00:00Z' - - '2023-09-27T05:00:00Z' - - '2023-09-27T06:00:00Z' - - '2023-09-27T07:00:00Z' - - '2023-09-27T08:00:00Z' - - '2023-09-27T09:00:00Z' - - '2023-09-27T10:00:00Z' - - '2023-09-27T11:00:00Z' - - '2023-09-27T12:00:00Z' - - '2023-09-27T13:00:00Z' - - '2023-09-27T14:00:00Z' - - '2023-09-27T15:00:00Z' - - '2023-09-27T16:00:00Z' - - '2023-09-27T17:00:00Z' - - '2023-09-27T18:00:00Z' - - '2023-09-27T19:00:00Z' - - '2023-09-27T20:00:00Z' - - '2023-09-27T21:00:00Z' - - '2023-09-27T22:00:00Z' - - '2023-09-27T23:00:00Z' - - '2023-09-28T00:00:00Z' - - '2023-09-28T01:00:00Z' - - '2023-09-28T02:00:00Z' - - '2023-09-28T03:00:00Z' - - '2023-09-28T04:00:00Z' - - '2023-09-28T05:00:00Z' - - '2023-09-28T06:00:00Z' - - '2023-09-28T07:00:00Z' - - '2023-09-28T08:00:00Z' - - '2023-09-28T09:00:00Z' - - '2023-09-28T10:00:00Z' - - '2023-09-28T11:00:00Z' - - '2023-09-28T12:00:00Z' - - '2023-09-28T13:00:00Z' - - '2023-09-28T14:00:00Z' - - '2023-09-28T15:00:00Z' - - '2023-09-28T16:00:00Z' - - '2023-09-28T17:00:00Z' - - '2023-09-28T18:00:00Z' - - '2023-09-28T19:00:00Z' - - '2023-09-28T20:00:00Z' - - '2023-09-28T21:00:00Z' - - '2023-09-28T22:00:00Z' - - '2023-09-28T23:00:00Z' - - '2023-09-29T00:00:00Z' - - '2023-09-29T01:00:00Z' - - '2023-09-29T02:00:00Z' - - '2023-09-29T03:00:00Z' - - '2023-09-29T04:00:00Z' - - '2023-09-29T05:00:00Z' - - '2023-09-29T06:00:00Z' - - '2023-09-29T07:00:00Z' - - '2023-09-29T08:00:00Z' - - '2023-09-29T09:00:00Z' - - '2023-09-29T10:00:00Z' - - '2023-09-29T11:00:00Z' - - '2023-09-29T12:00:00Z' - - '2023-09-29T13:00:00Z' - - '2023-09-29T14:00:00Z' - - '2023-09-29T15:00:00Z' - - '2023-09-29T16:00:00Z' - - '2023-09-29T17:00:00Z' - - '2023-09-29T18:00:00Z' - - '2023-09-29T19:00:00Z' - - '2023-09-29T20:00:00Z' - - '2023-09-29T21:00:00Z' - - '2023-09-29T22:00:00Z' - - '2023-09-29T23:00:00Z' - - '2023-09-30T00:00:00Z' - - '2023-09-30T01:00:00Z' - - '2023-09-30T02:00:00Z' - - '2023-09-30T03:00:00Z' - - '2023-09-30T04:00:00Z' - - '2023-09-30T05:00:00Z' - - '2023-09-30T06:00:00Z' - - '2023-09-30T07:00:00Z' - - '2023-09-30T08:00:00Z' - - '2023-09-30T09:00:00Z' - - '2023-09-30T10:00:00Z' - - '2023-09-30T11:00:00Z' - - '2023-09-30T12:00:00Z' - - '2023-09-30T13:00:00Z' - - '2023-09-30T14:00:00Z' - - '2023-09-30T15:00:00Z' - - '2023-09-30T16:00:00Z' - - '2023-09-30T17:00:00Z' - - '2023-09-30T18:00:00Z' - - '2023-09-30T19:00:00Z' - - '2023-09-30T20:00:00Z' - - '2023-09-30T21:00:00Z' - - '2023-09-30T22:00:00Z' - - '2023-09-30T23:00:00Z' - - '2023-10-01T00:00:00Z' - - '2023-10-01T01:00:00Z' - - '2023-10-01T02:00:00Z' - - '2023-10-01T03:00:00Z' - - '2023-10-01T04:00:00Z' - - '2023-10-01T05:00:00Z' - - '2023-10-01T06:00:00Z' - - '2023-10-01T07:00:00Z' - - '2023-10-01T08:00:00Z' - - '2023-10-01T09:00:00Z' - - '2023-10-01T10:00:00Z' - - '2023-10-01T11:00:00Z' - - '2023-10-01T12:00:00Z' - - '2023-10-01T13:00:00Z' - - '2023-10-01T14:00:00Z' - - '2023-10-01T15:00:00Z' - - '2023-10-01T16:00:00Z' - - '2023-10-01T17:00:00Z' - - '2023-10-01T18:00:00Z' - - '2023-10-01T19:00:00Z' - - '2023-10-01T20:00:00Z' - - '2023-10-01T21:00:00Z' - - '2023-10-01T22:00:00Z' - - '2023-10-01T23:00:00Z' - - '2023-10-02T00:00:00Z' - - '2023-10-02T01:00:00Z' - - '2023-10-02T02:00:00Z' - - '2023-10-02T03:00:00Z' - - '2023-10-02T04:00:00Z' - - '2023-10-02T05:00:00Z' - - '2023-10-02T06:00:00Z' - - '2023-10-02T07:00:00Z' - - '2023-10-02T08:00:00Z' - - '2023-10-02T09:00:00Z' - - '2023-10-02T10:00:00Z' - - '2023-10-02T11:00:00Z' - - '2023-10-02T12:00:00Z' - - '2023-10-02T13:00:00Z' - - '2023-10-02T14:00:00Z' - - '2023-10-02T15:00:00Z' - - '2023-10-02T16:00:00Z' - - '2023-10-02T17:00:00Z' - - '2023-10-02T18:00:00Z' - - '2023-10-02T19:00:00Z' - - '2023-10-02T20:00:00Z' - - '2023-10-02T21:00:00Z' - - '2023-10-02T22:00:00Z' - - '2023-10-02T23:00:00Z' - - '2023-10-03T00:00:00Z' - - '2023-10-03T01:00:00Z' - - '2023-10-03T02:00:00Z' - - '2023-10-03T03:00:00Z' - - '2023-10-03T04:00:00Z' - - '2023-10-03T05:00:00Z' - - '2023-10-03T06:00:00Z' - - '2023-10-03T07:00:00Z' - - '2023-10-03T08:00:00Z' - - '2023-10-03T09:00:00Z' - - '2023-10-03T10:00:00Z' - - '2023-10-03T11:00:00Z' - - '2023-10-03T12:00:00Z' - - '2023-10-03T13:00:00Z' - - '2023-10-03T14:00:00Z' - - '2023-10-03T15:00:00Z' - - '2023-10-03T16:00:00Z' - - '2023-10-03T17:00:00Z' - - '2023-10-03T18:00:00Z' - - '2023-10-03T19:00:00Z' - - '2023-10-03T20:00:00Z' - - '2023-10-03T21:00:00Z' - - '2023-10-03T22:00:00Z' - - '2023-10-03T23:00:00Z' - - '2023-10-04T00:00:00Z' - - '2023-10-04T01:00:00Z' - - '2023-10-04T02:00:00Z' - - '2023-10-04T03:00:00Z' - - '2023-10-04T04:00:00Z' - - '2023-10-04T05:00:00Z' - - '2023-10-04T06:00:00Z' - - '2023-10-04T07:00:00Z' - - '2023-10-04T08:00:00Z' - - '2023-10-04T09:00:00Z' - - '2023-10-04T10:00:00Z' - - '2023-10-04T11:00:00Z' - - '2023-10-04T12:00:00Z' - - '2023-10-04T13:00:00Z' - - '2023-10-04T14:00:00Z' - - '2023-10-04T15:00:00Z' - - '2023-10-04T16:00:00Z' - - '2023-10-04T17:00:00Z' - - '2023-10-04T18:00:00Z' - - '2023-10-04T19:00:00Z' - - '2023-10-04T20:00:00Z' - - '2023-10-04T21:00:00Z' - - '2023-10-04T22:00:00Z' - - '2023-10-04T23:00:00Z' - - '2023-10-05T00:00:00Z' - - '2023-10-05T01:00:00Z' - - '2023-10-05T02:00:00Z' - - '2023-10-05T03:00:00Z' - - '2023-10-05T04:00:00Z' - - '2023-10-05T05:00:00Z' - - '2023-10-05T06:00:00Z' - - '2023-10-05T07:00:00Z' - - '2023-10-05T08:00:00Z' - - '2023-10-05T09:00:00Z' - - '2023-10-05T10:00:00Z' - - '2023-10-05T11:00:00Z' - - '2023-10-05T12:00:00Z' - - '2023-10-05T13:00:00Z' - - '2023-10-05T14:00:00Z' - - '2023-10-05T15:00:00Z' - - '2023-10-05T16:00:00Z' - - '2023-10-05T17:00:00Z' - - '2023-10-05T18:00:00Z' - - '2023-10-05T19:00:00Z' - - '2023-10-05T20:00:00Z' - - '2023-10-05T21:00:00Z' - - '2023-10-05T22:00:00Z' - - '2023-10-05T23:00:00Z' - - '2023-10-06T00:00:00Z' - - '2023-10-06T01:00:00Z' - - '2023-10-06T02:00:00Z' - - '2023-10-06T03:00:00Z' - - '2023-10-06T04:00:00Z' - - '2023-10-06T05:00:00Z' - - '2023-10-06T06:00:00Z' - - '2023-10-06T07:00:00Z' - - '2023-10-06T08:00:00Z' - - '2023-10-06T09:00:00Z' - - '2023-10-06T10:00:00Z' - - '2023-10-06T11:00:00Z' - - '2023-10-06T12:00:00Z' - - '2023-10-06T13:00:00Z' - - '2023-10-06T14:00:00Z' - - '2023-10-06T15:00:00Z' - - '2023-10-06T16:00:00Z' - - '2023-10-06T17:00:00Z' - - '2023-10-06T18:00:00Z' - - '2023-10-06T19:00:00Z' - - '2023-10-06T20:00:00Z' - - '2023-10-06T21:00:00Z' - - '2023-10-06T22:00:00Z' - - '2023-10-06T23:00:00Z' - - '2023-10-07T00:00:00Z' - - '2023-10-07T01:00:00Z' - - '2023-10-07T02:00:00Z' - - '2023-10-07T03:00:00Z' - - '2023-10-07T04:00:00Z' - - '2023-10-07T05:00:00Z' - - '2023-10-07T06:00:00Z' - - '2023-10-07T07:00:00Z' - - '2023-10-07T08:00:00Z' - - '2023-10-07T09:00:00Z' - - '2023-10-07T10:00:00Z' - - '2023-10-07T11:00:00Z' - - '2023-10-07T12:00:00Z' - - '2023-10-07T13:00:00Z' - - '2023-10-07T14:00:00Z' - - '2023-10-07T15:00:00Z' - - '2023-10-07T16:00:00Z' - - '2023-10-07T17:00:00Z' - - '2023-10-07T18:00:00Z' - - '2023-10-07T19:00:00Z' - - '2023-10-07T20:00:00Z' - - '2023-10-07T21:00:00Z' - - '2023-10-07T22:00:00Z' - - '2023-10-07T23:00:00Z' - - '2023-10-08T00:00:00Z' - - '2023-10-08T01:00:00Z' - - '2023-10-08T02:00:00Z' - - '2023-10-08T03:00:00Z' - - '2023-10-08T04:00:00Z' - - '2023-10-08T05:00:00Z' - - '2023-10-08T06:00:00Z' - - '2023-10-08T07:00:00Z' - - '2023-10-08T08:00:00Z' - - '2023-10-08T09:00:00Z' - - '2023-10-08T10:00:00Z' - - '2023-10-08T11:00:00Z' - - '2023-10-08T12:00:00Z' - - '2023-10-08T13:00:00Z' - - '2023-10-08T14:00:00Z' - - '2023-10-08T15:00:00Z' - - '2023-10-08T16:00:00Z' - - '2023-10-08T17:00:00Z' - - '2023-10-08T18:00:00Z' - - '2023-10-08T19:00:00Z' - - '2023-10-08T20:00:00Z' - - '2023-10-08T21:00:00Z' - - '2023-10-08T22:00:00Z' - - '2023-10-08T23:00:00Z' - - '2023-10-09T00:00:00Z' - - '2023-10-09T01:00:00Z' - - '2023-10-09T02:00:00Z' - - '2023-10-09T03:00:00Z' - - '2023-10-09T04:00:00Z' - - '2023-10-09T05:00:00Z' - - '2023-10-09T06:00:00Z' - - '2023-10-09T07:00:00Z' - - '2023-10-09T08:00:00Z' - - '2023-10-09T09:00:00Z' - - '2023-10-09T10:00:00Z' - - '2023-10-09T11:00:00Z' - - '2023-10-09T12:00:00Z' - - '2023-10-09T13:00:00Z' - - '2023-10-09T14:00:00Z' - - '2023-10-09T15:00:00Z' - - '2023-10-09T16:00:00Z' - - '2023-10-09T17:00:00Z' - - '2023-10-09T18:00:00Z' - - '2023-10-09T19:00:00Z' - - '2023-10-09T20:00:00Z' - - '2023-10-09T21:00:00Z' - - '2023-10-09T22:00:00Z' - - '2023-10-09T23:00:00Z' - - '2023-10-10T00:00:00Z' - - '2023-10-10T01:00:00Z' - - '2023-10-10T02:00:00Z' - - '2023-10-10T03:00:00Z' - - '2023-10-10T04:00:00Z' - - '2023-10-10T05:00:00Z' - - '2023-10-10T06:00:00Z' - - '2023-10-10T07:00:00Z' - - '2023-10-10T08:00:00Z' - - '2023-10-10T09:00:00Z' - - '2023-10-10T10:00:00Z' - - '2023-10-10T11:00:00Z' - - '2023-10-10T12:00:00Z' - - '2023-10-10T13:00:00Z' - - '2023-10-10T14:00:00Z' - - '2023-10-10T15:00:00Z' - - '2023-10-10T16:00:00Z' - - '2023-10-10T17:00:00Z' - - '2023-10-10T18:00:00Z' - - '2023-10-10T19:00:00Z' - - '2023-10-10T20:00:00Z' - - '2023-10-10T21:00:00Z' - - '2023-10-10T22:00:00Z' - - '2023-10-10T23:00:00Z' - - '2023-10-11T00:00:00Z' - - '2023-10-11T01:00:00Z' - - '2023-10-11T02:00:00Z' - - '2023-10-11T03:00:00Z' - - '2023-10-11T04:00:00Z' - - '2023-10-11T05:00:00Z' - - '2023-10-11T06:00:00Z' - - '2023-10-11T07:00:00Z' - - '2023-10-11T08:00:00Z' - - '2023-10-11T09:00:00Z' - - '2023-10-11T10:00:00Z' - - '2023-10-11T11:00:00Z' - - '2023-10-11T12:00:00Z' - - '2023-10-11T13:00:00Z' - - '2023-10-11T14:00:00Z' - - '2023-10-11T15:00:00Z' - - '2023-10-11T16:00:00Z' - - '2023-10-11T17:00:00Z' - - '2023-10-11T18:00:00Z' - - '2023-10-11T19:00:00Z' - - '2023-10-11T20:00:00Z' - - '2023-10-11T21:00:00Z' - - '2023-10-11T22:00:00Z' - - '2023-10-11T23:00:00Z' - - '2023-10-12T00:00:00Z' - - '2023-10-12T01:00:00Z' - - '2023-10-12T02:00:00Z' - - '2023-10-12T03:00:00Z' - - '2023-10-12T04:00:00Z' - - '2023-10-12T05:00:00Z' - - '2023-10-12T06:00:00Z' - - '2023-10-12T07:00:00Z' - - '2023-10-12T08:00:00Z' - - '2023-10-12T09:00:00Z' - - '2023-10-12T10:00:00Z' - - '2023-10-12T11:00:00Z' - - '2023-10-12T12:00:00Z' - - '2023-10-12T13:00:00Z' - - '2023-10-12T14:00:00Z' - - '2023-10-12T15:00:00Z' - - '2023-10-12T16:00:00Z' - - '2023-10-12T17:00:00Z' - - '2023-10-12T18:00:00Z' - - '2023-10-12T19:00:00Z' - - '2023-10-12T20:00:00Z' - - '2023-10-12T21:00:00Z' - - '2023-10-12T22:00:00Z' - - '2023-10-12T23:00:00Z' - - '2023-10-13T00:00:00Z' - - '2023-10-13T01:00:00Z' - - '2023-10-13T02:00:00Z' - - '2023-10-13T03:00:00Z' - - '2023-10-13T04:00:00Z' - - '2023-10-13T05:00:00Z' - - '2023-10-13T06:00:00Z' - - '2023-10-13T07:00:00Z' - - '2023-10-13T08:00:00Z' - - '2023-10-13T09:00:00Z' - - '2023-10-13T10:00:00Z' - - '2023-10-13T11:00:00Z' - - '2023-10-13T12:00:00Z' - - '2023-10-13T13:00:00Z' - - '2023-10-13T14:00:00Z' - - '2023-10-13T15:00:00Z' - - '2023-10-13T16:00:00Z' - - '2023-10-13T17:00:00Z' - - '2023-10-13T18:00:00Z' - - '2023-10-13T19:00:00Z' - - '2023-10-13T20:00:00Z' - - '2023-10-13T21:00:00Z' - - '2023-10-13T22:00:00Z' - - '2023-10-13T23:00:00Z' - - '2023-10-14T00:00:00Z' - - '2023-10-14T01:00:00Z' - - '2023-10-14T02:00:00Z' - - '2023-10-14T03:00:00Z' - - '2023-10-14T04:00:00Z' - - '2023-10-14T05:00:00Z' - - '2023-10-14T06:00:00Z' - - '2023-10-14T07:00:00Z' - - '2023-10-14T08:00:00Z' - - '2023-10-14T09:00:00Z' - - '2023-10-14T10:00:00Z' - - '2023-10-14T11:00:00Z' - - '2023-10-14T12:00:00Z' - - '2023-10-14T13:00:00Z' - - '2023-10-14T14:00:00Z' - - '2023-10-14T15:00:00Z' - - '2023-10-14T16:00:00Z' - - '2023-10-14T17:00:00Z' - - '2023-10-14T18:00:00Z' - - '2023-10-14T19:00:00Z' - - '2023-10-14T20:00:00Z' - - '2023-10-14T21:00:00Z' - - '2023-10-14T22:00:00Z' - - '2023-10-14T23:00:00Z' - - '2023-10-15T00:00:00Z' - - '2023-10-15T01:00:00Z' - - '2023-10-15T02:00:00Z' - - '2023-10-15T03:00:00Z' - - '2023-10-15T04:00:00Z' - - '2023-10-15T05:00:00Z' - - '2023-10-15T06:00:00Z' - - '2023-10-15T07:00:00Z' - - '2023-10-15T08:00:00Z' - - '2023-10-15T09:00:00Z' - - '2023-10-15T10:00:00Z' - - '2023-10-15T11:00:00Z' - - '2023-10-15T12:00:00Z' - - '2023-10-15T13:00:00Z' - - '2023-10-15T14:00:00Z' - - '2023-10-15T15:00:00Z' - - '2023-10-15T16:00:00Z' - - '2023-10-15T17:00:00Z' - - '2023-10-15T18:00:00Z' - - '2023-10-15T19:00:00Z' - - '2023-10-15T20:00:00Z' - - '2023-10-15T21:00:00Z' - - '2023-10-15T22:00:00Z' - - '2023-10-15T23:00:00Z' - - '2023-10-16T00:00:00Z' - - '2023-10-16T01:00:00Z' - - '2023-10-16T02:00:00Z' - - '2023-10-16T03:00:00Z' - - '2023-10-16T04:00:00Z' - - '2023-10-16T05:00:00Z' - - '2023-10-16T06:00:00Z' - - '2023-10-16T07:00:00Z' - - '2023-10-16T08:00:00Z' - - '2023-10-16T09:00:00Z' - - '2023-10-16T10:00:00Z' - - '2023-10-16T11:00:00Z' - - '2023-10-16T12:00:00Z' - - '2023-10-16T13:00:00Z' - - '2023-10-16T14:00:00Z' - - '2023-10-16T15:00:00Z' - - '2023-10-16T16:00:00Z' - - '2023-10-16T17:00:00Z' - - '2023-10-16T18:00:00Z' - - '2023-10-16T19:00:00Z' - - '2023-10-16T20:00:00Z' - - '2023-10-16T21:00:00Z' - - '2023-10-16T22:00:00Z' - - '2023-10-16T23:00:00Z' - - '2023-10-17T00:00:00Z' - - '2023-10-17T01:00:00Z' - - '2023-10-17T02:00:00Z' - - '2023-10-17T03:00:00Z' - - '2023-10-17T04:00:00Z' - - '2023-10-17T05:00:00Z' - - '2023-10-17T06:00:00Z' - - '2023-10-17T07:00:00Z' - - '2023-10-17T08:00:00Z' - - '2023-10-17T09:00:00Z' - - '2023-10-17T10:00:00Z' - - '2023-10-17T11:00:00Z' - - '2023-10-17T12:00:00Z' - - '2023-10-17T13:00:00Z' - - '2023-10-17T14:00:00Z' - - '2023-10-17T15:00:00Z' - - '2023-10-17T16:00:00Z' - - '2023-10-17T17:00:00Z' - - '2023-10-17T18:00:00Z' - - '2023-10-17T19:00:00Z' - - '2023-10-17T20:00:00Z' - - '2023-10-17T21:00:00Z' - - '2023-10-17T22:00:00Z' - - '2023-10-17T23:00:00Z' - - '2023-10-18T00:00:00Z' - - '2023-10-18T01:00:00Z' - - '2023-10-18T02:00:00Z' - - '2023-10-18T03:00:00Z' - - '2023-10-18T04:00:00Z' - - '2023-10-18T05:00:00Z' - - '2023-10-18T06:00:00Z' - - '2023-10-18T07:00:00Z' - - '2023-10-18T08:00:00Z' - - '2023-10-18T09:00:00Z' - - '2023-10-18T10:00:00Z' - - '2023-10-18T11:00:00Z' - - '2023-10-18T12:00:00Z' - - '2023-10-18T13:00:00Z' - - '2023-10-18T14:00:00Z' - - '2023-10-18T15:00:00Z' - - '2023-10-18T16:00:00Z' - - '2023-10-18T17:00:00Z' - - '2023-10-18T18:00:00Z' - - '2023-10-18T19:00:00Z' - - '2023-10-18T20:00:00Z' - - '2023-10-18T21:00:00Z' - - '2023-10-18T22:00:00Z' - - '2023-10-18T23:00:00Z' - - '2023-10-19T00:00:00Z' - - '2023-10-19T01:00:00Z' - - '2023-10-19T02:00:00Z' - - '2023-10-19T03:00:00Z' - - '2023-10-19T04:00:00Z' - - '2023-10-19T05:00:00Z' - - '2023-10-19T06:00:00Z' - - '2023-10-19T07:00:00Z' - - '2023-10-19T08:00:00Z' - - '2023-10-19T09:00:00Z' - - '2023-10-19T10:00:00Z' - - '2023-10-19T11:00:00Z' - - '2023-10-19T12:00:00Z' - - '2023-10-19T13:00:00Z' - - '2023-10-19T14:00:00Z' - - '2023-10-19T15:00:00Z' - - '2023-10-19T16:00:00Z' - - '2023-10-19T17:00:00Z' - - '2023-10-19T18:00:00Z' - - '2023-10-19T19:00:00Z' - - '2023-10-19T20:00:00Z' - - '2023-10-19T21:00:00Z' - - '2023-10-19T22:00:00Z' - - '2023-10-19T23:00:00Z' - - '2023-10-20T00:00:00Z' - - '2023-10-20T01:00:00Z' - - '2023-10-20T02:00:00Z' - - '2023-10-20T03:00:00Z' - - '2023-10-20T04:00:00Z' - - '2023-10-20T05:00:00Z' - - '2023-10-20T06:00:00Z' - - '2023-10-20T07:00:00Z' - - '2023-10-20T08:00:00Z' - - '2023-10-20T09:00:00Z' - - '2023-10-20T10:00:00Z' - - '2023-10-20T11:00:00Z' - - '2023-10-20T12:00:00Z' - - '2023-10-20T13:00:00Z' - - '2023-10-20T14:00:00Z' - - '2023-10-20T15:00:00Z' - - '2023-10-20T16:00:00Z' - - '2023-10-20T17:00:00Z' - - '2023-10-20T18:00:00Z' - - '2023-10-20T19:00:00Z' - - '2023-10-20T20:00:00Z' - - '2023-10-20T21:00:00Z' - - '2023-10-20T22:00:00Z' - - '2023-10-20T23:00:00Z' - - '2023-10-21T00:00:00Z' - - '2023-10-21T01:00:00Z' - - '2023-10-21T02:00:00Z' - - '2023-10-21T03:00:00Z' - - '2023-10-21T04:00:00Z' - - '2023-10-21T05:00:00Z' - - '2023-10-21T06:00:00Z' - - '2023-10-21T07:00:00Z' - - '2023-10-21T08:00:00Z' - - '2023-10-21T09:00:00Z' - - '2023-10-21T10:00:00Z' - - '2023-10-21T11:00:00Z' - - '2023-10-21T12:00:00Z' - - '2023-10-21T13:00:00Z' - - '2023-10-21T14:00:00Z' - - '2023-10-21T15:00:00Z' - - '2023-10-21T16:00:00Z' - - '2023-10-21T17:00:00Z' - - '2023-10-21T18:00:00Z' - - '2023-10-21T19:00:00Z' - - '2023-10-21T20:00:00Z' - - '2023-10-21T21:00:00Z' - - '2023-10-21T22:00:00Z' - - '2023-10-21T23:00:00Z' - - '2023-10-22T00:00:00Z' - - '2023-10-22T01:00:00Z' - - '2023-10-22T02:00:00Z' - - '2023-10-22T03:00:00Z' - - '2023-10-22T04:00:00Z' - - '2023-10-22T05:00:00Z' - - '2023-10-22T06:00:00Z' - - '2023-10-22T07:00:00Z' - - '2023-10-22T08:00:00Z' - - '2023-10-22T09:00:00Z' - - '2023-10-22T10:00:00Z' - - '2023-10-22T11:00:00Z' - - '2023-10-22T12:00:00Z' - - '2023-10-22T13:00:00Z' - - '2023-10-22T14:00:00Z' - - '2023-10-22T15:00:00Z' - - '2023-10-22T16:00:00Z' - - '2023-10-22T17:00:00Z' - - '2023-10-22T18:00:00Z' - - '2023-10-22T19:00:00Z' - - '2023-10-22T20:00:00Z' - - '2023-10-22T21:00:00Z' - - '2023-10-22T22:00:00Z' - - '2023-10-22T23:00:00Z' - - '2023-10-23T00:00:00Z' - - '2023-10-23T01:00:00Z' - - '2023-10-23T02:00:00Z' - - '2023-10-23T03:00:00Z' - - '2023-10-23T04:00:00Z' - - '2023-10-23T05:00:00Z' - - '2023-10-23T06:00:00Z' - - '2023-10-23T07:00:00Z' - - '2023-10-23T08:00:00Z' - - '2023-10-23T09:00:00Z' - - '2023-10-23T10:00:00Z' - - '2023-10-23T11:00:00Z' - - '2023-10-23T12:00:00Z' - - '2023-10-23T13:00:00Z' - - '2023-10-23T14:00:00Z' - - '2023-10-23T15:00:00Z' - - '2023-10-23T16:00:00Z' - - '2023-10-23T17:00:00Z' - - '2023-10-23T18:00:00Z' - - '2023-10-23T19:00:00Z' - - '2023-10-23T20:00:00Z' - - '2023-10-23T21:00:00Z' - - '2023-10-23T22:00:00Z' - - '2023-10-23T23:00:00Z' - - '2023-10-24T00:00:00Z' - - '2023-10-24T01:00:00Z' - - '2023-10-24T02:00:00Z' - - '2023-10-24T03:00:00Z' - - '2023-10-24T04:00:00Z' - - '2023-10-24T05:00:00Z' - - '2023-10-24T06:00:00Z' - - '2023-10-24T07:00:00Z' - - '2023-10-24T08:00:00Z' - - '2023-10-24T09:00:00Z' - - '2023-10-24T10:00:00Z' - - '2023-10-24T11:00:00Z' - - '2023-10-24T12:00:00Z' - - '2023-10-24T13:00:00Z' - - '2023-10-24T14:00:00Z' - - '2023-10-24T15:00:00Z' - - '2023-10-24T16:00:00Z' - - '2023-10-24T17:00:00Z' - - '2023-10-24T18:00:00Z' - - '2023-10-24T19:00:00Z' - - '2023-10-24T20:00:00Z' - - '2023-10-24T21:00:00Z' - - '2023-10-24T22:00:00Z' - - '2023-10-24T23:00:00Z' - - '2023-10-25T00:00:00Z' - - '2023-10-25T01:00:00Z' - - '2023-10-25T02:00:00Z' - - '2023-10-25T03:00:00Z' - - '2023-10-25T04:00:00Z' - - '2023-10-25T05:00:00Z' - - '2023-10-25T06:00:00Z' - - '2023-10-25T07:00:00Z' - - '2023-10-25T08:00:00Z' - - '2023-10-25T09:00:00Z' - - '2023-10-25T10:00:00Z' - - '2023-10-25T11:00:00Z' - - '2023-10-25T12:00:00Z' - - '2023-10-25T13:00:00Z' - - '2023-10-25T14:00:00Z' - - '2023-10-25T15:00:00Z' - - '2023-10-25T16:00:00Z' - - '2023-10-25T17:00:00Z' - - '2023-10-25T18:00:00Z' - - '2023-10-25T19:00:00Z' - - '2023-10-25T20:00:00Z' - - '2023-10-25T21:00:00Z' - - '2023-10-25T22:00:00Z' - - '2023-10-25T23:00:00Z' - - '2023-10-26T00:00:00Z' - - '2023-10-26T01:00:00Z' - - '2023-10-26T02:00:00Z' - - '2023-10-26T03:00:00Z' - - '2023-10-26T04:00:00Z' - - '2023-10-26T05:00:00Z' - - '2023-10-26T06:00:00Z' - - '2023-10-26T07:00:00Z' - - '2023-10-26T08:00:00Z' - - '2023-10-26T09:00:00Z' - - '2023-10-26T10:00:00Z' - - '2023-10-26T11:00:00Z' - - '2023-10-26T12:00:00Z' - - '2023-10-26T13:00:00Z' - - '2023-10-26T14:00:00Z' - - '2023-10-26T15:00:00Z' - - '2023-10-26T16:00:00Z' - - '2023-10-26T17:00:00Z' - - '2023-10-26T18:00:00Z' - - '2023-10-26T19:00:00Z' - - '2023-10-26T20:00:00Z' - - '2023-10-26T21:00:00Z' - - '2023-10-26T22:00:00Z' - - '2023-10-26T23:00:00Z' - - '2023-10-27T00:00:00Z' - - '2023-10-27T01:00:00Z' - - '2023-10-27T02:00:00Z' - - '2023-10-27T03:00:00Z' - - '2023-10-27T04:00:00Z' - - '2023-10-27T05:00:00Z' - - '2023-10-27T06:00:00Z' - - '2023-10-27T07:00:00Z' - - '2023-10-27T08:00:00Z' - - '2023-10-27T09:00:00Z' - - '2023-10-27T10:00:00Z' - - '2023-10-27T11:00:00Z' - - '2023-10-27T12:00:00Z' - - '2023-10-27T13:00:00Z' - - '2023-10-27T14:00:00Z' - - '2023-10-27T15:00:00Z' - - '2023-10-27T16:00:00Z' - - '2023-10-27T17:00:00Z' - - '2023-10-27T18:00:00Z' - - '2023-10-27T19:00:00Z' - - '2023-10-27T20:00:00Z' - - '2023-10-27T21:00:00Z' - - '2023-10-27T22:00:00Z' - - '2023-10-27T23:00:00Z' - - '2023-10-28T00:00:00Z' - - '2023-10-28T01:00:00Z' - - '2023-10-28T02:00:00Z' - - '2023-10-28T03:00:00Z' - - '2023-10-28T04:00:00Z' - - '2023-10-28T05:00:00Z' - - '2023-10-28T06:00:00Z' - - '2023-10-28T07:00:00Z' - - '2023-10-28T08:00:00Z' - - '2023-10-28T09:00:00Z' - - '2023-10-28T10:00:00Z' - - '2023-10-28T11:00:00Z' - - '2023-10-28T12:00:00Z' - - '2023-10-28T13:00:00Z' - - '2023-10-28T14:00:00Z' - - '2023-10-28T15:00:00Z' - - '2023-10-28T16:00:00Z' - - '2023-10-28T17:00:00Z' - - '2023-10-28T18:00:00Z' - - '2023-10-28T19:00:00Z' - - '2023-10-28T20:00:00Z' - - '2023-10-28T21:00:00Z' - - '2023-10-28T22:00:00Z' - - '2023-10-28T23:00:00Z' - - '2023-10-29T00:00:00Z' - - '2023-10-29T01:00:00Z' - - '2023-10-29T02:00:00Z' - - '2023-10-29T03:00:00Z' - - '2023-10-29T04:00:00Z' - - '2023-10-29T05:00:00Z' - - '2023-10-29T06:00:00Z' - - '2023-10-29T07:00:00Z' - - '2023-10-29T08:00:00Z' - - '2023-10-29T09:00:00Z' - - '2023-10-29T10:00:00Z' - - '2023-10-29T11:00:00Z' - - '2023-10-29T12:00:00Z' - - '2023-10-29T13:00:00Z' - - '2023-10-29T14:00:00Z' - - '2023-10-29T15:00:00Z' - - '2023-10-29T16:00:00Z' - - '2023-10-29T17:00:00Z' - - '2023-10-29T18:00:00Z' - - '2023-10-29T19:00:00Z' - - '2023-10-29T20:00:00Z' - - '2023-10-29T21:00:00Z' - - '2023-10-29T22:00:00Z' - - '2023-10-29T23:00:00Z' - - '2023-10-30T00:00:00Z' - - '2023-10-30T01:00:00Z' - - '2023-10-30T02:00:00Z' - - '2023-10-30T03:00:00Z' - - '2023-10-30T04:00:00Z' - - '2023-10-30T05:00:00Z' - - '2023-10-30T06:00:00Z' - - '2023-10-30T07:00:00Z' - - '2023-10-30T08:00:00Z' - - '2023-10-30T09:00:00Z' - - '2023-10-30T10:00:00Z' - - '2023-10-30T11:00:00Z' - - '2023-10-30T12:00:00Z' - - '2023-10-30T13:00:00Z' - - '2023-10-30T14:00:00Z' - - '2023-10-30T15:00:00Z' - - '2023-10-30T16:00:00Z' - - '2023-10-30T17:00:00Z' - - '2023-10-30T18:00:00Z' - - '2023-10-30T19:00:00Z' - - '2023-10-30T20:00:00Z' - - '2023-10-30T21:00:00Z' - - '2023-10-30T22:00:00Z' - - '2023-10-30T23:00:00Z' - - '2023-10-31T00:00:00Z' - - '2023-10-31T01:00:00Z' - - '2023-10-31T02:00:00Z' - - '2023-10-31T03:00:00Z' - - '2023-10-31T04:00:00Z' - - '2023-10-31T05:00:00Z' - - '2023-10-31T06:00:00Z' - - '2023-10-31T07:00:00Z' - - '2023-10-31T08:00:00Z' - - '2023-10-31T09:00:00Z' - - '2023-10-31T10:00:00Z' - - '2023-10-31T11:00:00Z' - - '2023-10-31T12:00:00Z' - - '2023-10-31T13:00:00Z' - - '2023-10-31T14:00:00Z' - - '2023-10-31T15:00:00Z' - - '2023-10-31T16:00:00Z' - - '2023-10-31T17:00:00Z' - - '2023-10-31T18:00:00Z' - - '2023-10-31T19:00:00Z' - - '2023-10-31T20:00:00Z' - - '2023-10-31T21:00:00Z' - - '2023-10-31T22:00:00Z' - - '2023-10-31T23:00:00Z' - - '2023-11-01T00:00:00Z' - - '2023-11-01T01:00:00Z' - - '2023-11-01T02:00:00Z' - - '2023-11-01T03:00:00Z' - - '2023-11-01T04:00:00Z' - - '2023-11-01T05:00:00Z' - - '2023-11-01T06:00:00Z' - - '2023-11-01T07:00:00Z' - - '2023-11-01T08:00:00Z' - - '2023-11-01T09:00:00Z' - - '2023-11-01T10:00:00Z' - - '2023-11-01T11:00:00Z' - - '2023-11-01T12:00:00Z' - - '2023-11-01T13:00:00Z' - - '2023-11-01T14:00:00Z' - - '2023-11-01T15:00:00Z' - - '2023-11-01T16:00:00Z' - - '2023-11-01T17:00:00Z' - - '2023-11-01T18:00:00Z' - - '2023-11-01T19:00:00Z' - - '2023-11-01T20:00:00Z' - - '2023-11-01T21:00:00Z' - - '2023-11-01T22:00:00Z' - - '2023-11-01T23:00:00Z' - - '2023-11-02T00:00:00Z' - - '2023-11-02T01:00:00Z' - - '2023-11-02T02:00:00Z' - - '2023-11-02T03:00:00Z' - - '2023-11-02T04:00:00Z' - - '2023-11-02T05:00:00Z' - - '2023-11-02T06:00:00Z' - - '2023-11-02T07:00:00Z' - - '2023-11-02T08:00:00Z' - - '2023-11-02T09:00:00Z' - - '2023-11-02T10:00:00Z' - - '2023-11-02T11:00:00Z' - - '2023-11-02T12:00:00Z' - - '2023-11-02T13:00:00Z' - - '2023-11-02T14:00:00Z' - - '2023-11-02T15:00:00Z' - - '2023-11-02T16:00:00Z' - - '2023-11-02T17:00:00Z' - - '2023-11-02T18:00:00Z' - - '2023-11-02T19:00:00Z' - - '2023-11-02T20:00:00Z' - - '2023-11-02T21:00:00Z' - - '2023-11-02T22:00:00Z' - - '2023-11-02T23:00:00Z' - - '2023-11-03T00:00:00Z' - - '2023-11-03T01:00:00Z' - - '2023-11-03T02:00:00Z' - - '2023-11-03T03:00:00Z' - - '2023-11-03T04:00:00Z' - - '2023-11-03T05:00:00Z' - - '2023-11-03T06:00:00Z' - - '2023-11-03T07:00:00Z' - - '2023-11-03T08:00:00Z' - - '2023-11-03T09:00:00Z' - - '2023-11-03T10:00:00Z' - - '2023-11-03T11:00:00Z' - - '2023-11-03T12:00:00Z' - - '2023-11-03T13:00:00Z' - - '2023-11-03T14:00:00Z' - - '2023-11-03T15:00:00Z' - - '2023-11-03T16:00:00Z' - - '2023-11-03T17:00:00Z' - - '2023-11-03T18:00:00Z' - - '2023-11-03T19:00:00Z' - - '2023-11-03T20:00:00Z' - - '2023-11-03T21:00:00Z' - - '2023-11-03T22:00:00Z' - - '2023-11-03T23:00:00Z' - - '2023-11-04T00:00:00Z' - - '2023-11-04T01:00:00Z' - - '2023-11-04T02:00:00Z' - - '2023-11-04T03:00:00Z' - - '2023-11-04T04:00:00Z' - - '2023-11-04T05:00:00Z' - - '2023-11-04T06:00:00Z' - - '2023-11-04T07:00:00Z' - - '2023-11-04T08:00:00Z' - - '2023-11-04T09:00:00Z' - - '2023-11-04T10:00:00Z' - - '2023-11-04T11:00:00Z' - - '2023-11-04T12:00:00Z' - - '2023-11-04T13:00:00Z' - - '2023-11-04T14:00:00Z' - - '2023-11-04T15:00:00Z' - - '2023-11-04T16:00:00Z' - - '2023-11-04T17:00:00Z' - - '2023-11-04T18:00:00Z' - - '2023-11-04T19:00:00Z' - - '2023-11-04T20:00:00Z' - - '2023-11-04T21:00:00Z' - - '2023-11-04T22:00:00Z' - - '2023-11-04T23:00:00Z' - - '2023-11-05T00:00:00Z' - - '2023-11-05T01:00:00Z' - - '2023-11-05T02:00:00Z' - - '2023-11-05T03:00:00Z' - - '2023-11-05T04:00:00Z' - - '2023-11-05T05:00:00Z' - - '2023-11-05T06:00:00Z' - - '2023-11-05T07:00:00Z' - - '2023-11-05T08:00:00Z' - - '2023-11-05T09:00:00Z' - - '2023-11-05T10:00:00Z' - - '2023-11-05T11:00:00Z' - - '2023-11-05T12:00:00Z' - - '2023-11-05T13:00:00Z' - - '2023-11-05T14:00:00Z' - - '2023-11-05T15:00:00Z' - - '2023-11-05T16:00:00Z' - - '2023-11-05T17:00:00Z' - - '2023-11-05T18:00:00Z' - - '2023-11-05T19:00:00Z' - - '2023-11-05T20:00:00Z' - - '2023-11-05T21:00:00Z' - - '2023-11-05T22:00:00Z' - - '2023-11-05T23:00:00Z' - - '2023-11-06T00:00:00Z' - - '2023-11-06T01:00:00Z' - - '2023-11-06T02:00:00Z' - - '2023-11-06T03:00:00Z' - - '2023-11-06T04:00:00Z' - - '2023-11-06T05:00:00Z' - - '2023-11-06T06:00:00Z' - - '2023-11-06T07:00:00Z' - - '2023-11-06T08:00:00Z' - - '2023-11-06T09:00:00Z' - - '2023-11-06T10:00:00Z' - - '2023-11-06T11:00:00Z' - - '2023-11-06T12:00:00Z' - - '2023-11-06T13:00:00Z' - - '2023-11-06T14:00:00Z' - - '2023-11-06T15:00:00Z' - - '2023-11-06T16:00:00Z' - - '2023-11-06T17:00:00Z' - - '2023-11-06T18:00:00Z' - - '2023-11-06T19:00:00Z' - - '2023-11-06T20:00:00Z' - - '2023-11-06T21:00:00Z' - - '2023-11-06T22:00:00Z' - - '2023-11-06T23:00:00Z' - - '2023-11-07T00:00:00Z' - - '2023-11-07T01:00:00Z' - - '2023-11-07T02:00:00Z' - - '2023-11-07T03:00:00Z' - - '2023-11-07T04:00:00Z' - - '2023-11-07T05:00:00Z' - - '2023-11-07T06:00:00Z' - - '2023-11-07T07:00:00Z' - - '2023-11-07T08:00:00Z' - - '2023-11-07T09:00:00Z' - - '2023-11-07T10:00:00Z' - - '2023-11-07T11:00:00Z' - - '2023-11-07T12:00:00Z' - - '2023-11-07T13:00:00Z' - - '2023-11-07T14:00:00Z' - - '2023-11-07T15:00:00Z' - - '2023-11-07T16:00:00Z' - - '2023-11-07T17:00:00Z' - - '2023-11-07T18:00:00Z' - - '2023-11-07T19:00:00Z' - - '2023-11-07T20:00:00Z' - - '2023-11-07T21:00:00Z' - - '2023-11-07T22:00:00Z' - - '2023-11-07T23:00:00Z' - - '2023-11-08T00:00:00Z' - - '2023-11-08T01:00:00Z' - - '2023-11-08T02:00:00Z' - - '2023-11-08T03:00:00Z' - - '2023-11-08T04:00:00Z' - - '2023-11-08T05:00:00Z' - - '2023-11-08T06:00:00Z' - - '2023-11-08T07:00:00Z' - - '2023-11-08T08:00:00Z' - - '2023-11-08T09:00:00Z' - - '2023-11-08T10:00:00Z' - - '2023-11-08T11:00:00Z' - - '2023-11-08T12:00:00Z' - - '2023-11-08T13:00:00Z' - - '2023-11-08T14:00:00Z' - - '2023-11-08T15:00:00Z' - - '2023-11-08T16:00:00Z' - - '2023-11-08T17:00:00Z' - - '2023-11-08T18:00:00Z' - - '2023-11-08T19:00:00Z' - - '2023-11-08T20:00:00Z' - - '2023-11-08T21:00:00Z' - - '2023-11-08T22:00:00Z' - - '2023-11-08T23:00:00Z' - - '2023-11-09T00:00:00Z' - - '2023-11-09T01:00:00Z' - - '2023-11-09T02:00:00Z' - - '2023-11-09T03:00:00Z' - - '2023-11-09T04:00:00Z' - - '2023-11-09T05:00:00Z' - - '2023-11-09T06:00:00Z' - - '2023-11-09T07:00:00Z' - - '2023-11-09T08:00:00Z' - - '2023-11-09T09:00:00Z' - - '2023-11-09T10:00:00Z' - - '2023-11-09T11:00:00Z' - - '2023-11-09T12:00:00Z' - - '2023-11-09T13:00:00Z' - - '2023-11-09T14:00:00Z' - - '2023-11-09T15:00:00Z' - - '2023-11-09T16:00:00Z' - - '2023-11-09T17:00:00Z' - - '2023-11-09T18:00:00Z' - - '2023-11-09T19:00:00Z' - - '2023-11-09T20:00:00Z' - - '2023-11-09T21:00:00Z' - - '2023-11-09T22:00:00Z' - - '2023-11-09T23:00:00Z' - - '2023-11-10T00:00:00Z' - - '2023-11-10T01:00:00Z' - - '2023-11-10T02:00:00Z' - - '2023-11-10T03:00:00Z' - - '2023-11-10T04:00:00Z' - - '2023-11-10T05:00:00Z' - - '2023-11-10T06:00:00Z' - - '2023-11-10T07:00:00Z' - - '2023-11-10T08:00:00Z' - - '2023-11-10T09:00:00Z' - - '2023-11-10T10:00:00Z' - - '2023-11-10T11:00:00Z' - - '2023-11-10T12:00:00Z' - - '2023-11-10T13:00:00Z' - - '2023-11-10T14:00:00Z' - - '2023-11-10T15:00:00Z' - - '2023-11-10T16:00:00Z' - - '2023-11-10T17:00:00Z' - - '2023-11-10T18:00:00Z' - - '2023-11-10T19:00:00Z' - - '2023-11-10T20:00:00Z' - - '2023-11-10T21:00:00Z' - - '2023-11-10T22:00:00Z' - - '2023-11-10T23:00:00Z' - - '2023-11-11T00:00:00Z' - - '2023-11-11T01:00:00Z' - - '2023-11-11T02:00:00Z' - - '2023-11-11T03:00:00Z' - - '2023-11-11T04:00:00Z' - - '2023-11-11T05:00:00Z' - - '2023-11-11T06:00:00Z' - - '2023-11-11T07:00:00Z' - - '2023-11-11T08:00:00Z' - - '2023-11-11T09:00:00Z' - - '2023-11-11T10:00:00Z' - - '2023-11-11T11:00:00Z' - - '2023-11-11T12:00:00Z' - - '2023-11-11T13:00:00Z' - - '2023-11-11T14:00:00Z' - - '2023-11-11T15:00:00Z' - - '2023-11-11T16:00:00Z' - - '2023-11-11T17:00:00Z' - - '2023-11-11T18:00:00Z' - - '2023-11-11T19:00:00Z' - - '2023-11-11T20:00:00Z' - - '2023-11-11T21:00:00Z' - - '2023-11-11T22:00:00Z' - - '2023-11-11T23:00:00Z' - - '2023-11-12T00:00:00Z' - - '2023-11-12T01:00:00Z' - - '2023-11-12T02:00:00Z' - - '2023-11-12T03:00:00Z' - - '2023-11-12T04:00:00Z' - - '2023-11-12T05:00:00Z' - - '2023-11-12T06:00:00Z' - - '2023-11-12T07:00:00Z' - - '2023-11-12T08:00:00Z' - - '2023-11-12T09:00:00Z' - - '2023-11-12T10:00:00Z' - - '2023-11-12T11:00:00Z' - - '2023-11-12T12:00:00Z' - - '2023-11-12T13:00:00Z' - - '2023-11-12T14:00:00Z' - - '2023-11-12T15:00:00Z' - - '2023-11-12T16:00:00Z' - - '2023-11-12T17:00:00Z' - - '2023-11-12T18:00:00Z' - - '2023-11-12T19:00:00Z' - - '2023-11-12T20:00:00Z' - - '2023-11-12T21:00:00Z' - - '2023-11-12T22:00:00Z' - - '2023-11-12T23:00:00Z' - - '2023-11-13T00:00:00Z' - - '2023-11-13T01:00:00Z' - - '2023-11-13T02:00:00Z' - - '2023-11-13T03:00:00Z' - - '2023-11-13T04:00:00Z' - - '2023-11-13T05:00:00Z' - - '2023-11-13T06:00:00Z' - - '2023-11-13T07:00:00Z' - - '2023-11-13T08:00:00Z' - - '2023-11-13T09:00:00Z' - - '2023-11-13T10:00:00Z' - - '2023-11-13T11:00:00Z' - - '2023-11-13T12:00:00Z' - - '2023-11-13T13:00:00Z' - - '2023-11-13T14:00:00Z' - - '2023-11-13T15:00:00Z' - - '2023-11-13T16:00:00Z' - - '2023-11-13T17:00:00Z' - - '2023-11-13T18:00:00Z' - - '2023-11-13T19:00:00Z' - - '2023-11-13T20:00:00Z' - - '2023-11-13T21:00:00Z' - - '2023-11-13T22:00:00Z' - - '2023-11-13T23:00:00Z' - - '2023-11-14T00:00:00Z' - - '2023-11-14T01:00:00Z' - - '2023-11-14T02:00:00Z' - - '2023-11-14T03:00:00Z' - - '2023-11-14T04:00:00Z' - - '2023-11-14T05:00:00Z' - - '2023-11-14T06:00:00Z' - - '2023-11-14T07:00:00Z' - - '2023-11-14T08:00:00Z' - - '2023-11-14T09:00:00Z' - - '2023-11-14T10:00:00Z' - - '2023-11-14T11:00:00Z' - - '2023-11-14T12:00:00Z' - - '2023-11-14T13:00:00Z' - - '2023-11-14T14:00:00Z' - - '2023-11-14T15:00:00Z' - - '2023-11-14T16:00:00Z' - - '2023-11-14T17:00:00Z' - - '2023-11-14T18:00:00Z' - - '2023-11-14T19:00:00Z' - - '2023-11-14T20:00:00Z' - - '2023-11-14T21:00:00Z' - - '2023-11-14T22:00:00Z' - - '2023-11-14T23:00:00Z' - - '2023-11-15T00:00:00Z' - - '2023-11-15T01:00:00Z' - - '2023-11-15T02:00:00Z' - - '2023-11-15T03:00:00Z' - - '2023-11-15T04:00:00Z' - - '2023-11-15T05:00:00Z' - - '2023-11-15T06:00:00Z' - - '2023-11-15T07:00:00Z' - - '2023-11-15T08:00:00Z' - - '2023-11-15T09:00:00Z' - - '2023-11-15T10:00:00Z' - - '2023-11-15T11:00:00Z' - - '2023-11-15T12:00:00Z' - - '2023-11-15T13:00:00Z' - - '2023-11-15T14:00:00Z' - - '2023-11-15T15:00:00Z' - - '2023-11-15T16:00:00Z' - - '2023-11-15T17:00:00Z' - - '2023-11-15T18:00:00Z' - - '2023-11-15T19:00:00Z' - - '2023-11-15T20:00:00Z' - - '2023-11-15T21:00:00Z' - - '2023-11-15T22:00:00Z' - - '2023-11-15T23:00:00Z' - - '2023-11-16T00:00:00Z' - - '2023-11-16T01:00:00Z' - - '2023-11-16T02:00:00Z' - - '2023-11-16T03:00:00Z' - - '2023-11-16T04:00:00Z' - - '2023-11-16T05:00:00Z' - - '2023-11-16T06:00:00Z' - - '2023-11-16T07:00:00Z' - - '2023-11-16T08:00:00Z' - - '2023-11-16T09:00:00Z' - - '2023-11-16T10:00:00Z' - - '2023-11-16T11:00:00Z' - - '2023-11-16T12:00:00Z' - - '2023-11-16T13:00:00Z' - - '2023-11-16T14:00:00Z' - - '2023-11-16T15:00:00Z' - - '2023-11-16T16:00:00Z' - - '2023-11-16T17:00:00Z' - - '2023-11-16T18:00:00Z' - - '2023-11-16T19:00:00Z' - - '2023-11-16T20:00:00Z' - - '2023-11-16T21:00:00Z' - - '2023-11-16T22:00:00Z' - - '2023-11-16T23:00:00Z' - - '2023-11-17T00:00:00Z' - - '2023-11-17T01:00:00Z' - - '2023-11-17T02:00:00Z' - - '2023-11-17T03:00:00Z' - - '2023-11-17T04:00:00Z' - - '2023-11-17T05:00:00Z' - - '2023-11-17T06:00:00Z' - - '2023-11-17T07:00:00Z' - - '2023-11-17T08:00:00Z' - - '2023-11-17T09:00:00Z' - - '2023-11-17T10:00:00Z' - - '2023-11-17T11:00:00Z' - - '2023-11-17T12:00:00Z' - - '2023-11-17T13:00:00Z' - - '2023-11-17T14:00:00Z' - - '2023-11-17T15:00:00Z' - - '2023-11-17T16:00:00Z' - - '2023-11-17T17:00:00Z' - - '2023-11-17T18:00:00Z' - - '2023-11-17T19:00:00Z' - - '2023-11-17T20:00:00Z' - - '2023-11-17T21:00:00Z' - - '2023-11-17T22:00:00Z' - - '2023-11-17T23:00:00Z' - - '2023-11-18T00:00:00Z' - - '2023-11-18T01:00:00Z' - - '2023-11-18T02:00:00Z' - - '2023-11-18T03:00:00Z' - - '2023-11-18T04:00:00Z' - - '2023-11-18T05:00:00Z' - - '2023-11-18T06:00:00Z' - - '2023-11-18T07:00:00Z' - - '2023-11-18T08:00:00Z' - - '2023-11-18T09:00:00Z' - - '2023-11-18T10:00:00Z' - - '2023-11-18T11:00:00Z' - - '2023-11-18T12:00:00Z' - - '2023-11-18T13:00:00Z' - - '2023-11-18T14:00:00Z' - - '2023-11-18T15:00:00Z' - - '2023-11-18T16:00:00Z' - - '2023-11-18T17:00:00Z' - - '2023-11-18T18:00:00Z' - - '2023-11-18T19:00:00Z' - - '2023-11-18T20:00:00Z' - - '2023-11-18T21:00:00Z' - - '2023-11-18T22:00:00Z' - - '2023-11-18T23:00:00Z' - - '2023-11-19T00:00:00Z' - - '2023-11-19T01:00:00Z' - - '2023-11-19T02:00:00Z' - - '2023-11-19T03:00:00Z' - - '2023-11-19T04:00:00Z' - - '2023-11-19T05:00:00Z' - - '2023-11-19T06:00:00Z' - - '2023-11-19T07:00:00Z' - - '2023-11-19T08:00:00Z' - - '2023-11-19T09:00:00Z' - - '2023-11-19T10:00:00Z' - - '2023-11-19T11:00:00Z' - - '2023-11-19T12:00:00Z' - - '2023-11-19T13:00:00Z' - - '2023-11-19T14:00:00Z' - - '2023-11-19T15:00:00Z' - - '2023-11-19T16:00:00Z' - - '2023-11-19T17:00:00Z' - - '2023-11-19T18:00:00Z' - - '2023-11-19T19:00:00Z' - - '2023-11-19T20:00:00Z' - - '2023-11-19T21:00:00Z' - - '2023-11-19T22:00:00Z' - - '2023-11-19T23:00:00Z' - - '2023-11-20T00:00:00Z' - - '2023-11-20T01:00:00Z' - - '2023-11-20T02:00:00Z' - - '2023-11-20T03:00:00Z' - - '2023-11-20T04:00:00Z' - - '2023-11-20T05:00:00Z' - - '2023-11-20T06:00:00Z' - - '2023-11-20T07:00:00Z' - - '2023-11-20T08:00:00Z' - - '2023-11-20T09:00:00Z' - - '2023-11-20T10:00:00Z' - - '2023-11-20T11:00:00Z' - - '2023-11-20T12:00:00Z' - - '2023-11-20T13:00:00Z' - - '2023-11-20T14:00:00Z' - - '2023-11-20T15:00:00Z' - - '2023-11-20T16:00:00Z' - - '2023-11-20T17:00:00Z' - - '2023-11-20T18:00:00Z' - - '2023-11-20T19:00:00Z' - - '2023-11-20T20:00:00Z' - - '2023-11-20T21:00:00Z' - - '2023-11-20T22:00:00Z' - - '2023-11-20T23:00:00Z' - - '2023-11-21T00:00:00Z' - - '2023-11-21T01:00:00Z' - - '2023-11-21T02:00:00Z' - - '2023-11-21T03:00:00Z' - - '2023-11-21T04:00:00Z' - - '2023-11-21T05:00:00Z' - - '2023-11-21T06:00:00Z' - - '2023-11-21T07:00:00Z' - - '2023-11-21T08:00:00Z' - - '2023-11-21T09:00:00Z' - - '2023-11-21T10:00:00Z' - - '2023-11-21T11:00:00Z' - - '2023-11-21T12:00:00Z' - - '2023-11-21T13:00:00Z' - - '2023-11-21T14:00:00Z' - - '2023-11-21T15:00:00Z' - - '2023-11-21T16:00:00Z' - - '2023-11-21T17:00:00Z' - - '2023-11-21T18:00:00Z' - - '2023-11-21T19:00:00Z' - - '2023-11-21T20:00:00Z' - - '2023-11-21T21:00:00Z' - - '2023-11-21T22:00:00Z' - - '2023-11-21T23:00:00Z' - - '2023-11-22T00:00:00Z' - - '2023-11-22T01:00:00Z' - - '2023-11-22T02:00:00Z' - - '2023-11-22T03:00:00Z' - - '2023-11-22T04:00:00Z' - - '2023-11-22T05:00:00Z' - - '2023-11-22T06:00:00Z' - - '2023-11-22T07:00:00Z' - - '2023-11-22T08:00:00Z' - - '2023-11-22T09:00:00Z' - - '2023-11-22T10:00:00Z' - - '2023-11-22T11:00:00Z' - - '2023-11-22T12:00:00Z' - - '2023-11-22T13:00:00Z' - - '2023-11-22T14:00:00Z' - - '2023-11-22T15:00:00Z' - - '2023-11-22T16:00:00Z' - - '2023-11-22T17:00:00Z' - - '2023-11-22T18:00:00Z' - - '2023-11-22T19:00:00Z' - - '2023-11-22T20:00:00Z' - - '2023-11-22T21:00:00Z' - - '2023-11-22T22:00:00Z' - - '2023-11-22T23:00:00Z' - - '2023-11-23T00:00:00Z' - - '2023-11-23T01:00:00Z' - - '2023-11-23T02:00:00Z' - - '2023-11-23T03:00:00Z' - - '2023-11-23T04:00:00Z' - - '2023-11-23T05:00:00Z' - - '2023-11-23T06:00:00Z' - - '2023-11-23T07:00:00Z' - - '2023-11-23T08:00:00Z' - - '2023-11-23T09:00:00Z' - - '2023-11-23T10:00:00Z' - - '2023-11-23T11:00:00Z' - - '2023-11-23T12:00:00Z' - - '2023-11-23T13:00:00Z' - - '2023-11-23T14:00:00Z' - - '2023-11-23T15:00:00Z' - - '2023-11-23T16:00:00Z' - - '2023-11-23T17:00:00Z' - - '2023-11-23T18:00:00Z' - - '2023-11-23T19:00:00Z' - - '2023-11-23T20:00:00Z' - - '2023-11-23T21:00:00Z' - - '2023-11-23T22:00:00Z' - - '2023-11-23T23:00:00Z' - - '2023-11-24T00:00:00Z' - - '2023-11-24T01:00:00Z' - - '2023-11-24T02:00:00Z' - - '2023-11-24T03:00:00Z' - - '2023-11-24T04:00:00Z' - - '2023-11-24T05:00:00Z' - - '2023-11-24T06:00:00Z' - - '2023-11-24T07:00:00Z' - - '2023-11-24T08:00:00Z' - - '2023-11-24T09:00:00Z' - - '2023-11-24T10:00:00Z' - - '2023-11-24T11:00:00Z' - - '2023-11-24T12:00:00Z' - - '2023-11-24T13:00:00Z' - - '2023-11-24T14:00:00Z' - - '2023-11-24T15:00:00Z' - - '2023-11-24T16:00:00Z' - - '2023-11-24T17:00:00Z' - - '2023-11-24T18:00:00Z' - - '2023-11-24T19:00:00Z' - - '2023-11-24T20:00:00Z' - - '2023-11-24T21:00:00Z' - - '2023-11-24T22:00:00Z' - - '2023-11-24T23:00:00Z' - - '2023-11-25T00:00:00Z' - - '2023-11-25T01:00:00Z' - - '2023-11-25T02:00:00Z' - - '2023-11-25T03:00:00Z' - - '2023-11-25T04:00:00Z' - - '2023-11-25T05:00:00Z' - - '2023-11-25T06:00:00Z' - - '2023-11-25T07:00:00Z' - - '2023-11-25T08:00:00Z' - - '2023-11-25T09:00:00Z' - - '2023-11-25T10:00:00Z' - - '2023-11-25T11:00:00Z' - - '2023-11-25T12:00:00Z' - - '2023-11-25T13:00:00Z' - - '2023-11-25T14:00:00Z' - - '2023-11-25T15:00:00Z' - - '2023-11-25T16:00:00Z' - - '2023-11-25T17:00:00Z' - - '2023-11-25T18:00:00Z' - - '2023-11-25T19:00:00Z' - - '2023-11-25T20:00:00Z' - - '2023-11-25T21:00:00Z' - - '2023-11-25T22:00:00Z' - - '2023-11-25T23:00:00Z' - - '2023-11-26T00:00:00Z' - - '2023-11-26T01:00:00Z' - - '2023-11-26T02:00:00Z' - - '2023-11-26T03:00:00Z' - - '2023-11-26T04:00:00Z' - - '2023-11-26T05:00:00Z' - - '2023-11-26T06:00:00Z' - - '2023-11-26T07:00:00Z' - - '2023-11-26T08:00:00Z' - - '2023-11-26T09:00:00Z' - - '2023-11-26T10:00:00Z' - - '2023-11-26T11:00:00Z' - - '2023-11-26T12:00:00Z' - - '2023-11-26T13:00:00Z' - - '2023-11-26T14:00:00Z' - - '2023-11-26T15:00:00Z' - - '2023-11-26T16:00:00Z' - - '2023-11-26T17:00:00Z' - - '2023-11-26T18:00:00Z' - - '2023-11-26T19:00:00Z' - - '2023-11-26T20:00:00Z' - - '2023-11-26T21:00:00Z' - - '2023-11-26T22:00:00Z' - - '2023-11-26T23:00:00Z' - - '2023-11-27T00:00:00Z' - - '2023-11-27T01:00:00Z' - - '2023-11-27T02:00:00Z' - - '2023-11-27T03:00:00Z' - - '2023-11-27T04:00:00Z' - - '2023-11-27T05:00:00Z' - - '2023-11-27T06:00:00Z' - - '2023-11-27T07:00:00Z' - - '2023-11-27T08:00:00Z' - - '2023-11-27T09:00:00Z' - - '2023-11-27T10:00:00Z' - - '2023-11-27T11:00:00Z' - - '2023-11-27T12:00:00Z' - - '2023-11-27T13:00:00Z' - - '2023-11-27T14:00:00Z' - - '2023-11-27T15:00:00Z' - - '2023-11-27T16:00:00Z' - - '2023-11-27T17:00:00Z' - - '2023-11-27T18:00:00Z' - - '2023-11-27T19:00:00Z' - - '2023-11-27T20:00:00Z' - - '2023-11-27T21:00:00Z' - - '2023-11-27T22:00:00Z' - - '2023-11-27T23:00:00Z' - - '2023-11-28T00:00:00Z' - - '2023-11-28T01:00:00Z' - - '2023-11-28T02:00:00Z' - - '2023-11-28T03:00:00Z' - - '2023-11-28T04:00:00Z' - - '2023-11-28T05:00:00Z' - - '2023-11-28T06:00:00Z' - - '2023-11-28T07:00:00Z' - - '2023-11-28T08:00:00Z' - - '2023-11-28T09:00:00Z' - - '2023-11-28T10:00:00Z' - - '2023-11-28T11:00:00Z' - - '2023-11-28T12:00:00Z' - - '2023-11-28T13:00:00Z' - - '2023-11-28T14:00:00Z' - - '2023-11-28T15:00:00Z' - - '2023-11-28T16:00:00Z' - - '2023-11-28T17:00:00Z' - - '2023-11-28T18:00:00Z' - - '2023-11-28T19:00:00Z' - - '2023-11-28T20:00:00Z' - - '2023-11-28T21:00:00Z' - - '2023-11-28T22:00:00Z' - - '2023-11-28T23:00:00Z' - - '2023-11-29T00:00:00Z' - - '2023-11-29T01:00:00Z' - - '2023-11-29T02:00:00Z' - - '2023-11-29T03:00:00Z' - - '2023-11-29T04:00:00Z' - - '2023-11-29T05:00:00Z' - - '2023-11-29T06:00:00Z' - - '2023-11-29T07:00:00Z' - - '2023-11-29T08:00:00Z' - - '2023-11-29T09:00:00Z' - - '2023-11-29T10:00:00Z' - - '2023-11-29T11:00:00Z' - - '2023-11-29T12:00:00Z' - - '2023-11-29T13:00:00Z' - - '2023-11-29T14:00:00Z' - - '2023-11-29T15:00:00Z' - - '2023-11-29T16:00:00Z' - - '2023-11-29T17:00:00Z' - - '2023-11-29T18:00:00Z' - - '2023-11-29T19:00:00Z' - - '2023-11-29T20:00:00Z' - - '2023-11-29T21:00:00Z' - - '2023-11-29T22:00:00Z' - - '2023-11-29T23:00:00Z' - - '2023-11-30T00:00:00Z' - - '2023-11-30T01:00:00Z' - - '2023-11-30T02:00:00Z' - - '2023-11-30T03:00:00Z' - - '2023-11-30T04:00:00Z' - - '2023-11-30T05:00:00Z' - - '2023-11-30T06:00:00Z' - - '2023-11-30T07:00:00Z' - - '2023-11-30T08:00:00Z' - - '2023-11-30T09:00:00Z' - - '2023-11-30T10:00:00Z' - - '2023-11-30T11:00:00Z' - - '2023-11-30T12:00:00Z' - - '2023-11-30T13:00:00Z' - - '2023-11-30T14:00:00Z' - - '2023-11-30T15:00:00Z' - - '2023-11-30T16:00:00Z' - - '2023-11-30T17:00:00Z' - - '2023-11-30T18:00:00Z' - - '2023-11-30T19:00:00Z' - - '2023-11-30T20:00:00Z' - - '2023-11-30T21:00:00Z' - - '2023-11-30T22:00:00Z' - - '2023-11-30T23:00:00Z' - - '2023-12-01T00:00:00Z' - - '2023-12-01T01:00:00Z' - - '2023-12-01T02:00:00Z' - - '2023-12-01T03:00:00Z' - - '2023-12-01T04:00:00Z' - - '2023-12-01T05:00:00Z' - - '2023-12-01T06:00:00Z' - - '2023-12-01T07:00:00Z' - - '2023-12-01T08:00:00Z' - - '2023-12-01T09:00:00Z' - - '2023-12-01T10:00:00Z' - - '2023-12-01T11:00:00Z' - - '2023-12-01T12:00:00Z' - - '2023-12-01T13:00:00Z' - - '2023-12-01T14:00:00Z' - - '2023-12-01T15:00:00Z' - - '2023-12-01T16:00:00Z' - - '2023-12-01T17:00:00Z' - - '2023-12-01T18:00:00Z' - - '2023-12-01T19:00:00Z' - - '2023-12-01T20:00:00Z' - - '2023-12-01T21:00:00Z' - - '2023-12-01T22:00:00Z' - - '2023-12-01T23:00:00Z' - - '2023-12-02T00:00:00Z' - - '2023-12-02T01:00:00Z' - - '2023-12-02T02:00:00Z' - - '2023-12-02T03:00:00Z' - - '2023-12-02T04:00:00Z' - - '2023-12-02T05:00:00Z' - - '2023-12-02T06:00:00Z' - - '2023-12-02T07:00:00Z' - - '2023-12-02T08:00:00Z' - - '2023-12-02T09:00:00Z' - - '2023-12-02T10:00:00Z' - - '2023-12-02T11:00:00Z' - - '2023-12-02T12:00:00Z' - - '2023-12-02T13:00:00Z' - - '2023-12-02T14:00:00Z' - - '2023-12-02T15:00:00Z' - - '2023-12-02T16:00:00Z' - - '2023-12-02T17:00:00Z' - - '2023-12-02T18:00:00Z' - - '2023-12-02T19:00:00Z' - - '2023-12-02T20:00:00Z' - - '2023-12-02T21:00:00Z' - - '2023-12-02T22:00:00Z' - - '2023-12-02T23:00:00Z' - - '2023-12-03T00:00:00Z' - - '2023-12-03T01:00:00Z' - - '2023-12-03T02:00:00Z' - - '2023-12-03T03:00:00Z' - - '2023-12-03T04:00:00Z' - - '2023-12-03T05:00:00Z' - - '2023-12-03T06:00:00Z' - - '2023-12-03T07:00:00Z' - - '2023-12-03T08:00:00Z' - - '2023-12-03T09:00:00Z' - - '2023-12-03T10:00:00Z' - - '2023-12-03T11:00:00Z' - - '2023-12-03T12:00:00Z' - - '2023-12-03T13:00:00Z' - - '2023-12-03T14:00:00Z' - - '2023-12-03T15:00:00Z' - - '2023-12-03T16:00:00Z' - - '2023-12-03T17:00:00Z' - - '2023-12-03T18:00:00Z' - - '2023-12-03T19:00:00Z' - - '2023-12-03T20:00:00Z' - - '2023-12-03T21:00:00Z' - - '2023-12-03T22:00:00Z' - - '2023-12-03T23:00:00Z' - - '2023-12-04T00:00:00Z' - - '2023-12-04T01:00:00Z' - - '2023-12-04T02:00:00Z' - - '2023-12-04T03:00:00Z' - - '2023-12-04T04:00:00Z' - - '2023-12-04T05:00:00Z' - - '2023-12-04T06:00:00Z' - - '2023-12-04T07:00:00Z' - - '2023-12-04T08:00:00Z' - - '2023-12-04T09:00:00Z' - - '2023-12-04T10:00:00Z' - - '2023-12-04T11:00:00Z' - - '2023-12-04T12:00:00Z' - - '2023-12-04T13:00:00Z' - - '2023-12-04T14:00:00Z' - - '2023-12-04T15:00:00Z' - - '2023-12-04T16:00:00Z' - - '2023-12-04T17:00:00Z' - - '2023-12-04T18:00:00Z' - - '2023-12-04T19:00:00Z' - - '2023-12-04T20:00:00Z' - - '2023-12-04T21:00:00Z' - - '2023-12-04T22:00:00Z' - - '2023-12-04T23:00:00Z' - - '2023-12-05T00:00:00Z' - - '2023-12-05T01:00:00Z' - - '2023-12-05T02:00:00Z' - - '2023-12-05T03:00:00Z' - - '2023-12-05T04:00:00Z' - - '2023-12-05T05:00:00Z' - - '2023-12-05T06:00:00Z' - - '2023-12-05T07:00:00Z' - - '2023-12-05T08:00:00Z' - - '2023-12-05T09:00:00Z' - - '2023-12-05T10:00:00Z' - - '2023-12-05T11:00:00Z' - - '2023-12-05T12:00:00Z' - - '2023-12-05T13:00:00Z' - - '2023-12-05T14:00:00Z' - - '2023-12-05T15:00:00Z' - - '2023-12-05T16:00:00Z' - - '2023-12-05T17:00:00Z' - - '2023-12-05T18:00:00Z' - - '2023-12-05T19:00:00Z' - - '2023-12-05T20:00:00Z' - - '2023-12-05T21:00:00Z' - - '2023-12-05T22:00:00Z' - - '2023-12-05T23:00:00Z' - - '2023-12-06T00:00:00Z' - - '2023-12-06T01:00:00Z' - - '2023-12-06T02:00:00Z' - - '2023-12-06T03:00:00Z' - - '2023-12-06T04:00:00Z' - - '2023-12-06T05:00:00Z' - - '2023-12-06T06:00:00Z' - - '2023-12-06T07:00:00Z' - - '2023-12-06T08:00:00Z' - - '2023-12-06T09:00:00Z' - - '2023-12-06T10:00:00Z' - - '2023-12-06T11:00:00Z' - - '2023-12-06T12:00:00Z' - - '2023-12-06T13:00:00Z' - - '2023-12-06T14:00:00Z' - - '2023-12-06T15:00:00Z' - - '2023-12-06T16:00:00Z' - - '2023-12-06T17:00:00Z' - - '2023-12-06T18:00:00Z' - - '2023-12-06T19:00:00Z' - - '2023-12-06T20:00:00Z' - - '2023-12-06T21:00:00Z' - - '2023-12-06T22:00:00Z' - - '2023-12-06T23:00:00Z' - - '2023-12-07T00:00:00Z' - - '2023-12-07T01:00:00Z' - - '2023-12-07T02:00:00Z' - - '2023-12-07T03:00:00Z' - - '2023-12-07T04:00:00Z' - - '2023-12-07T05:00:00Z' - - '2023-12-07T06:00:00Z' - - '2023-12-07T07:00:00Z' - - '2023-12-07T08:00:00Z' - - '2023-12-07T09:00:00Z' - - '2023-12-07T10:00:00Z' - - '2023-12-07T11:00:00Z' - - '2023-12-07T12:00:00Z' - - '2023-12-07T13:00:00Z' - - '2023-12-07T14:00:00Z' - - '2023-12-07T15:00:00Z' - - '2023-12-07T16:00:00Z' - - '2023-12-07T17:00:00Z' - - '2023-12-07T18:00:00Z' - - '2023-12-07T19:00:00Z' - - '2023-12-07T20:00:00Z' - - '2023-12-07T21:00:00Z' - - '2023-12-07T22:00:00Z' - - '2023-12-07T23:00:00Z' - - '2023-12-08T00:00:00Z' - - '2023-12-08T01:00:00Z' - - '2023-12-08T02:00:00Z' - - '2023-12-08T03:00:00Z' - - '2023-12-08T04:00:00Z' - - '2023-12-08T05:00:00Z' - - '2023-12-08T06:00:00Z' - - '2023-12-08T07:00:00Z' - - '2023-12-08T08:00:00Z' - - '2023-12-08T09:00:00Z' - - '2023-12-08T10:00:00Z' - - '2023-12-08T11:00:00Z' - - '2023-12-08T12:00:00Z' - - '2023-12-08T13:00:00Z' - - '2023-12-08T14:00:00Z' - - '2023-12-08T15:00:00Z' - - '2023-12-08T16:00:00Z' - - '2023-12-08T17:00:00Z' - - '2023-12-08T18:00:00Z' - - '2023-12-08T19:00:00Z' - - '2023-12-08T20:00:00Z' - - '2023-12-08T21:00:00Z' - - '2023-12-08T22:00:00Z' - - '2023-12-08T23:00:00Z' - - '2023-12-09T00:00:00Z' - - '2023-12-09T01:00:00Z' - - '2023-12-09T02:00:00Z' - - '2023-12-09T03:00:00Z' - - '2023-12-09T04:00:00Z' - - '2023-12-09T05:00:00Z' - - '2023-12-09T06:00:00Z' - - '2023-12-09T07:00:00Z' - - '2023-12-09T08:00:00Z' - - '2023-12-09T09:00:00Z' - - '2023-12-09T10:00:00Z' - - '2023-12-09T11:00:00Z' - - '2023-12-09T12:00:00Z' - - '2023-12-09T13:00:00Z' - - '2023-12-09T14:00:00Z' - - '2023-12-09T15:00:00Z' - - '2023-12-09T16:00:00Z' - - '2023-12-09T17:00:00Z' - - '2023-12-09T18:00:00Z' - - '2023-12-09T19:00:00Z' - - '2023-12-09T20:00:00Z' - - '2023-12-09T21:00:00Z' - - '2023-12-09T22:00:00Z' - - '2023-12-09T23:00:00Z' - - '2023-12-10T00:00:00Z' - - '2023-12-10T01:00:00Z' - - '2023-12-10T02:00:00Z' - - '2023-12-10T03:00:00Z' - - '2023-12-10T04:00:00Z' - - '2023-12-10T05:00:00Z' - - '2023-12-10T06:00:00Z' - - '2023-12-10T07:00:00Z' - - '2023-12-10T08:00:00Z' - - '2023-12-10T09:00:00Z' - - '2023-12-10T10:00:00Z' - - '2023-12-10T11:00:00Z' - - '2023-12-10T12:00:00Z' - - '2023-12-10T13:00:00Z' - - '2023-12-10T14:00:00Z' - - '2023-12-10T15:00:00Z' - - '2023-12-10T16:00:00Z' - - '2023-12-10T17:00:00Z' - - '2023-12-10T18:00:00Z' - - '2023-12-10T19:00:00Z' - - '2023-12-10T20:00:00Z' - - '2023-12-10T21:00:00Z' - - '2023-12-10T22:00:00Z' - - '2023-12-10T23:00:00Z' - - '2023-12-11T00:00:00Z' - - '2023-12-11T01:00:00Z' - - '2023-12-11T02:00:00Z' - - '2023-12-11T03:00:00Z' - - '2023-12-11T04:00:00Z' - - '2023-12-11T05:00:00Z' - - '2023-12-11T06:00:00Z' - - '2023-12-11T07:00:00Z' - - '2023-12-11T08:00:00Z' - - '2023-12-11T09:00:00Z' - - '2023-12-11T10:00:00Z' - - '2023-12-11T11:00:00Z' - - '2023-12-11T12:00:00Z' - - '2023-12-11T13:00:00Z' - - '2023-12-11T14:00:00Z' - - '2023-12-11T15:00:00Z' - - '2023-12-11T16:00:00Z' - - '2023-12-11T17:00:00Z' - - '2023-12-11T18:00:00Z' - - '2023-12-11T19:00:00Z' - - '2023-12-11T20:00:00Z' - - '2023-12-11T21:00:00Z' - - '2023-12-11T22:00:00Z' - - '2023-12-11T23:00:00Z' - - '2023-12-12T00:00:00Z' - - '2023-12-12T01:00:00Z' - - '2023-12-12T02:00:00Z' - - '2023-12-12T03:00:00Z' - - '2023-12-12T04:00:00Z' - - '2023-12-12T05:00:00Z' - - '2023-12-12T06:00:00Z' - - '2023-12-12T07:00:00Z' - - '2023-12-12T08:00:00Z' - - '2023-12-12T09:00:00Z' - - '2023-12-12T10:00:00Z' - - '2023-12-12T11:00:00Z' - - '2023-12-12T12:00:00Z' - - '2023-12-12T13:00:00Z' - - '2023-12-12T14:00:00Z' - - '2023-12-12T15:00:00Z' - - '2023-12-12T16:00:00Z' - - '2023-12-12T17:00:00Z' - - '2023-12-12T18:00:00Z' - - '2023-12-12T19:00:00Z' - - '2023-12-12T20:00:00Z' - - '2023-12-12T21:00:00Z' - - '2023-12-12T22:00:00Z' - - '2023-12-12T23:00:00Z' - - '2023-12-13T00:00:00Z' - - '2023-12-13T01:00:00Z' - - '2023-12-13T02:00:00Z' - - '2023-12-13T03:00:00Z' - - '2023-12-13T04:00:00Z' - - '2023-12-13T05:00:00Z' - - '2023-12-13T06:00:00Z' - - '2023-12-13T07:00:00Z' - - '2023-12-13T08:00:00Z' - - '2023-12-13T09:00:00Z' - - '2023-12-13T10:00:00Z' - - '2023-12-13T11:00:00Z' - - '2023-12-13T12:00:00Z' - - '2023-12-13T13:00:00Z' - - '2023-12-13T14:00:00Z' - - '2023-12-13T15:00:00Z' - - '2023-12-13T16:00:00Z' - - '2023-12-13T17:00:00Z' - - '2023-12-13T18:00:00Z' - - '2023-12-13T19:00:00Z' - - '2023-12-13T20:00:00Z' - - '2023-12-13T21:00:00Z' - - '2023-12-13T22:00:00Z' - - '2023-12-13T23:00:00Z' - - '2023-12-14T00:00:00Z' - - '2023-12-14T01:00:00Z' - - '2023-12-14T02:00:00Z' - - '2023-12-14T03:00:00Z' - - '2023-12-14T04:00:00Z' - - '2023-12-14T05:00:00Z' - - '2023-12-14T06:00:00Z' - - '2023-12-14T07:00:00Z' - - '2023-12-14T08:00:00Z' - - '2023-12-14T09:00:00Z' - - '2023-12-14T10:00:00Z' - - '2023-12-14T11:00:00Z' - - '2023-12-14T12:00:00Z' - - '2023-12-14T13:00:00Z' - - '2023-12-14T14:00:00Z' - - '2023-12-14T15:00:00Z' - - '2023-12-14T16:00:00Z' - - '2023-12-14T17:00:00Z' - - '2023-12-14T18:00:00Z' - - '2023-12-14T19:00:00Z' - - '2023-12-14T20:00:00Z' - - '2023-12-14T21:00:00Z' - - '2023-12-14T22:00:00Z' - - '2023-12-14T23:00:00Z' - - '2023-12-15T00:00:00Z' - - '2023-12-15T01:00:00Z' - - '2023-12-15T02:00:00Z' - - '2023-12-15T03:00:00Z' - - '2023-12-15T04:00:00Z' - - '2023-12-15T05:00:00Z' - - '2023-12-15T06:00:00Z' - - '2023-12-15T07:00:00Z' - - '2023-12-15T08:00:00Z' - - '2023-12-15T09:00:00Z' - - '2023-12-15T10:00:00Z' - - '2023-12-15T11:00:00Z' - - '2023-12-15T12:00:00Z' - - '2023-12-15T13:00:00Z' - - '2023-12-15T14:00:00Z' - - '2023-12-15T15:00:00Z' - - '2023-12-15T16:00:00Z' - - '2023-12-15T17:00:00Z' - - '2023-12-15T18:00:00Z' - - '2023-12-15T19:00:00Z' - - '2023-12-15T20:00:00Z' - - '2023-12-15T21:00:00Z' - - '2023-12-15T22:00:00Z' - - '2023-12-15T23:00:00Z' - - '2023-12-16T00:00:00Z' - - '2023-12-16T01:00:00Z' - - '2023-12-16T02:00:00Z' - - '2023-12-16T03:00:00Z' - - '2023-12-16T04:00:00Z' - - '2023-12-16T05:00:00Z' - - '2023-12-16T06:00:00Z' - - '2023-12-16T07:00:00Z' - - '2023-12-16T08:00:00Z' - - '2023-12-16T09:00:00Z' - - '2023-12-16T10:00:00Z' - - '2023-12-16T11:00:00Z' - - '2023-12-16T12:00:00Z' - - '2023-12-16T13:00:00Z' - - '2023-12-16T14:00:00Z' - - '2023-12-16T15:00:00Z' - - '2023-12-16T16:00:00Z' - - '2023-12-16T17:00:00Z' - - '2023-12-16T18:00:00Z' - - '2023-12-16T19:00:00Z' - - '2023-12-16T20:00:00Z' - - '2023-12-16T21:00:00Z' - - '2023-12-16T22:00:00Z' - - '2023-12-16T23:00:00Z' - - '2023-12-17T00:00:00Z' - - '2023-12-17T01:00:00Z' - - '2023-12-17T02:00:00Z' - - '2023-12-17T03:00:00Z' - - '2023-12-17T04:00:00Z' - - '2023-12-17T05:00:00Z' - - '2023-12-17T06:00:00Z' - - '2023-12-17T07:00:00Z' - - '2023-12-17T08:00:00Z' - - '2023-12-17T09:00:00Z' - - '2023-12-17T10:00:00Z' - - '2023-12-17T11:00:00Z' - - '2023-12-17T12:00:00Z' - - '2023-12-17T13:00:00Z' - - '2023-12-17T14:00:00Z' - - '2023-12-17T15:00:00Z' - - '2023-12-17T16:00:00Z' - - '2023-12-17T17:00:00Z' - - '2023-12-17T18:00:00Z' - - '2023-12-17T19:00:00Z' - - '2023-12-17T20:00:00Z' - - '2023-12-17T21:00:00Z' - - '2023-12-17T22:00:00Z' - - '2023-12-17T23:00:00Z' - - '2023-12-18T00:00:00Z' - - '2023-12-18T01:00:00Z' - - '2023-12-18T02:00:00Z' - - '2023-12-18T03:00:00Z' - - '2023-12-18T04:00:00Z' - - '2023-12-18T05:00:00Z' - - '2023-12-18T06:00:00Z' - - '2023-12-18T07:00:00Z' - - '2023-12-18T08:00:00Z' - - '2023-12-18T09:00:00Z' - - '2023-12-18T10:00:00Z' - - '2023-12-18T11:00:00Z' - - '2023-12-18T12:00:00Z' - - '2023-12-18T13:00:00Z' - - '2023-12-18T14:00:00Z' - - '2023-12-18T15:00:00Z' - - '2023-12-18T16:00:00Z' - - '2023-12-18T17:00:00Z' - - '2023-12-18T18:00:00Z' - - '2023-12-18T19:00:00Z' - - '2023-12-18T20:00:00Z' - - '2023-12-18T21:00:00Z' - - '2023-12-18T22:00:00Z' - - '2023-12-18T23:00:00Z' - - '2023-12-19T00:00:00Z' - - '2023-12-19T01:00:00Z' - - '2023-12-19T02:00:00Z' - - '2023-12-19T03:00:00Z' - - '2023-12-19T04:00:00Z' - - '2023-12-19T05:00:00Z' - - '2023-12-19T06:00:00Z' - - '2023-12-19T07:00:00Z' - - '2023-12-19T08:00:00Z' - - '2023-12-19T09:00:00Z' - - '2023-12-19T10:00:00Z' - - '2023-12-19T11:00:00Z' - - '2023-12-19T12:00:00Z' - - '2023-12-19T13:00:00Z' - - '2023-12-19T14:00:00Z' - - '2023-12-19T15:00:00Z' - - '2023-12-19T16:00:00Z' - - '2023-12-19T17:00:00Z' - - '2023-12-19T18:00:00Z' - - '2023-12-19T19:00:00Z' - - '2023-12-19T20:00:00Z' - - '2023-12-19T21:00:00Z' - - '2023-12-19T22:00:00Z' - - '2023-12-19T23:00:00Z' - - '2023-12-20T00:00:00Z' - - '2023-12-20T01:00:00Z' - - '2023-12-20T02:00:00Z' - - '2023-12-20T03:00:00Z' - - '2023-12-20T04:00:00Z' - - '2023-12-20T05:00:00Z' - - '2023-12-20T06:00:00Z' - - '2023-12-20T07:00:00Z' - - '2023-12-20T08:00:00Z' - - '2023-12-20T09:00:00Z' - - '2023-12-20T10:00:00Z' - - '2023-12-20T11:00:00Z' - - '2023-12-20T12:00:00Z' - - '2023-12-20T13:00:00Z' - - '2023-12-20T14:00:00Z' - - '2023-12-20T15:00:00Z' - - '2023-12-20T16:00:00Z' - - '2023-12-20T17:00:00Z' - - '2023-12-20T18:00:00Z' - - '2023-12-20T19:00:00Z' - - '2023-12-20T20:00:00Z' - - '2023-12-20T21:00:00Z' - - '2023-12-20T22:00:00Z' - - '2023-12-20T23:00:00Z' - - '2023-12-21T00:00:00Z' - - '2023-12-21T01:00:00Z' - - '2023-12-21T02:00:00Z' - - '2023-12-21T03:00:00Z' - - '2023-12-21T04:00:00Z' - - '2023-12-21T05:00:00Z' - - '2023-12-21T06:00:00Z' - - '2023-12-21T07:00:00Z' - - '2023-12-21T08:00:00Z' - - '2023-12-21T09:00:00Z' - - '2023-12-21T10:00:00Z' - - '2023-12-21T11:00:00Z' - - '2023-12-21T12:00:00Z' - - '2023-12-21T13:00:00Z' - - '2023-12-21T14:00:00Z' - - '2023-12-21T15:00:00Z' - - '2023-12-21T16:00:00Z' - - '2023-12-21T17:00:00Z' - - '2023-12-21T18:00:00Z' - - '2023-12-21T19:00:00Z' - - '2023-12-21T20:00:00Z' - - '2023-12-21T21:00:00Z' - - '2023-12-21T22:00:00Z' - - '2023-12-21T23:00:00Z' - - '2023-12-22T00:00:00Z' - - '2023-12-22T01:00:00Z' - - '2023-12-22T02:00:00Z' - - '2023-12-22T03:00:00Z' - - '2023-12-22T04:00:00Z' - - '2023-12-22T05:00:00Z' - - '2023-12-22T06:00:00Z' - - '2023-12-22T07:00:00Z' - - '2023-12-22T08:00:00Z' - - '2023-12-22T09:00:00Z' - - '2023-12-22T10:00:00Z' - - '2023-12-22T11:00:00Z' - - '2023-12-22T12:00:00Z' - - '2023-12-22T13:00:00Z' - - '2023-12-22T14:00:00Z' - - '2023-12-22T15:00:00Z' - - '2023-12-22T16:00:00Z' - - '2023-12-22T17:00:00Z' - - '2023-12-22T18:00:00Z' - - '2023-12-22T19:00:00Z' - - '2023-12-22T20:00:00Z' - - '2023-12-22T21:00:00Z' - - '2023-12-22T22:00:00Z' - - '2023-12-22T23:00:00Z' - - '2023-12-23T00:00:00Z' - - '2023-12-23T01:00:00Z' - - '2023-12-23T02:00:00Z' - - '2023-12-23T03:00:00Z' - - '2023-12-23T04:00:00Z' - - '2023-12-23T05:00:00Z' - - '2023-12-23T06:00:00Z' - - '2023-12-23T07:00:00Z' - - '2023-12-23T08:00:00Z' - - '2023-12-23T09:00:00Z' - - '2023-12-23T10:00:00Z' - - '2023-12-23T11:00:00Z' - - '2023-12-23T12:00:00Z' - - '2023-12-23T13:00:00Z' - - '2023-12-23T14:00:00Z' - - '2023-12-23T15:00:00Z' - - '2023-12-23T16:00:00Z' - - '2023-12-23T17:00:00Z' - - '2023-12-23T18:00:00Z' - - '2023-12-23T19:00:00Z' - - '2023-12-23T20:00:00Z' - - '2023-12-23T21:00:00Z' - - '2023-12-23T22:00:00Z' - - '2023-12-23T23:00:00Z' - - '2023-12-24T00:00:00Z' - - '2023-12-24T01:00:00Z' - - '2023-12-24T02:00:00Z' - - '2023-12-24T03:00:00Z' - - '2023-12-24T04:00:00Z' - - '2023-12-24T05:00:00Z' - - '2023-12-24T06:00:00Z' - - '2023-12-24T07:00:00Z' - - '2023-12-24T08:00:00Z' - - '2023-12-24T09:00:00Z' - - '2023-12-24T10:00:00Z' - - '2023-12-24T11:00:00Z' - - '2023-12-24T12:00:00Z' - - '2023-12-24T13:00:00Z' - - '2023-12-24T14:00:00Z' - - '2023-12-24T15:00:00Z' - - '2023-12-24T16:00:00Z' - - '2023-12-24T17:00:00Z' - - '2023-12-24T18:00:00Z' - - '2023-12-24T19:00:00Z' - - '2023-12-24T20:00:00Z' - - '2023-12-24T21:00:00Z' - - '2023-12-24T22:00:00Z' - - '2023-12-24T23:00:00Z' - - '2023-12-25T00:00:00Z' - - '2023-12-25T01:00:00Z' - - '2023-12-25T02:00:00Z' - - '2023-12-25T03:00:00Z' - - '2023-12-25T04:00:00Z' - - '2023-12-25T05:00:00Z' - - '2023-12-25T06:00:00Z' - - '2023-12-25T07:00:00Z' - - '2023-12-25T08:00:00Z' - - '2023-12-25T09:00:00Z' - - '2023-12-25T10:00:00Z' - - '2023-12-25T11:00:00Z' - - '2023-12-25T12:00:00Z' - - '2023-12-25T13:00:00Z' - - '2023-12-25T14:00:00Z' - - '2023-12-25T15:00:00Z' - - '2023-12-25T16:00:00Z' - - '2023-12-25T17:00:00Z' - - '2023-12-25T18:00:00Z' - - '2023-12-25T19:00:00Z' - - '2023-12-25T20:00:00Z' - - '2023-12-25T21:00:00Z' - - '2023-12-25T22:00:00Z' - - '2023-12-25T23:00:00Z' - - '2023-12-26T00:00:00Z' - - '2023-12-26T01:00:00Z' - - '2023-12-26T02:00:00Z' - - '2023-12-26T03:00:00Z' - - '2023-12-26T04:00:00Z' - - '2023-12-26T05:00:00Z' - - '2023-12-26T06:00:00Z' - - '2023-12-26T07:00:00Z' - - '2023-12-26T08:00:00Z' - - '2023-12-26T09:00:00Z' - - '2023-12-26T10:00:00Z' - - '2023-12-26T11:00:00Z' - - '2023-12-26T12:00:00Z' - - '2023-12-26T13:00:00Z' - - '2023-12-26T14:00:00Z' - - '2023-12-26T15:00:00Z' - - '2023-12-26T16:00:00Z' - - '2023-12-26T17:00:00Z' - - '2023-12-26T18:00:00Z' - - '2023-12-26T19:00:00Z' - - '2023-12-26T20:00:00Z' - - '2023-12-26T21:00:00Z' - - '2023-12-26T22:00:00Z' - - '2023-12-26T23:00:00Z' - - '2023-12-27T00:00:00Z' - - '2023-12-27T01:00:00Z' - - '2023-12-27T02:00:00Z' - - '2023-12-27T03:00:00Z' - - '2023-12-27T04:00:00Z' - - '2023-12-27T05:00:00Z' - - '2023-12-27T06:00:00Z' - - '2023-12-27T07:00:00Z' - - '2023-12-27T08:00:00Z' - - '2023-12-27T09:00:00Z' - - '2023-12-27T10:00:00Z' - - '2023-12-27T11:00:00Z' - - '2023-12-27T12:00:00Z' - - '2023-12-27T13:00:00Z' - - '2023-12-27T14:00:00Z' - - '2023-12-27T15:00:00Z' - - '2023-12-27T16:00:00Z' - - '2023-12-27T17:00:00Z' - - '2023-12-27T18:00:00Z' - - '2023-12-27T19:00:00Z' - - '2023-12-27T20:00:00Z' - - '2023-12-27T21:00:00Z' - - '2023-12-27T22:00:00Z' - - '2023-12-27T23:00:00Z' - - '2023-12-28T00:00:00Z' - - '2023-12-28T01:00:00Z' - - '2023-12-28T02:00:00Z' - - '2023-12-28T03:00:00Z' - - '2023-12-28T04:00:00Z' - - '2023-12-28T05:00:00Z' - - '2023-12-28T06:00:00Z' - - '2023-12-28T07:00:00Z' - - '2023-12-28T08:00:00Z' - - '2023-12-28T09:00:00Z' - - '2023-12-28T10:00:00Z' - - '2023-12-28T11:00:00Z' - - '2023-12-28T12:00:00Z' - - '2023-12-28T13:00:00Z' - - '2023-12-28T14:00:00Z' - - '2023-12-28T15:00:00Z' - - '2023-12-28T16:00:00Z' - - '2023-12-28T17:00:00Z' - - '2023-12-28T18:00:00Z' - - '2023-12-28T19:00:00Z' - - '2023-12-28T20:00:00Z' - - '2023-12-28T21:00:00Z' - - '2023-12-28T22:00:00Z' - - '2023-12-28T23:00:00Z' - - '2023-12-29T00:00:00Z' - - '2023-12-29T01:00:00Z' - - '2023-12-29T02:00:00Z' - - '2023-12-29T03:00:00Z' - - '2023-12-29T04:00:00Z' - - '2023-12-29T05:00:00Z' - - '2023-12-29T06:00:00Z' - - '2023-12-29T07:00:00Z' - - '2023-12-29T08:00:00Z' - - '2023-12-29T09:00:00Z' - - '2023-12-29T10:00:00Z' - - '2023-12-29T11:00:00Z' - - '2023-12-29T12:00:00Z' - - '2023-12-29T13:00:00Z' - - '2023-12-29T14:00:00Z' - - '2023-12-29T15:00:00Z' - - '2023-12-29T16:00:00Z' - - '2023-12-29T17:00:00Z' - - '2023-12-29T18:00:00Z' - - '2023-12-29T19:00:00Z' - - '2023-12-29T20:00:00Z' - - '2023-12-29T21:00:00Z' - - '2023-12-29T22:00:00Z' - - '2023-12-29T23:00:00Z' - - '2023-12-30T00:00:00Z' - - '2023-12-30T01:00:00Z' - - '2023-12-30T02:00:00Z' - - '2023-12-30T03:00:00Z' - - '2023-12-30T04:00:00Z' - - '2023-12-30T05:00:00Z' - - '2023-12-30T06:00:00Z' - - '2023-12-30T07:00:00Z' - - '2023-12-30T08:00:00Z' - - '2023-12-30T09:00:00Z' - - '2023-12-30T10:00:00Z' - - '2023-12-30T11:00:00Z' - - '2023-12-30T12:00:00Z' - - '2023-12-30T13:00:00Z' - - '2023-12-30T14:00:00Z' - - '2023-12-30T15:00:00Z' - - '2023-12-30T16:00:00Z' - - '2023-12-30T17:00:00Z' - - '2023-12-30T18:00:00Z' - - '2023-12-30T19:00:00Z' - - '2023-12-30T20:00:00Z' - - '2023-12-30T21:00:00Z' - - '2023-12-30T22:00:00Z' - - '2023-12-30T23:00:00Z' - - '2023-12-31T00:00:00Z' - - '2023-12-31T01:00:00Z' - - '2023-12-31T02:00:00Z' - - '2023-12-31T03:00:00Z' - - '2023-12-31T04:00:00Z' - - '2023-12-31T05:00:00Z' - - '2023-12-31T06:00:00Z' - - '2023-12-31T07:00:00Z' - - '2023-12-31T08:00:00Z' - - '2023-12-31T09:00:00Z' - - '2023-12-31T10:00:00Z' - - '2023-12-31T11:00:00Z' - - '2023-12-31T12:00:00Z' - - '2023-12-31T13:00:00Z' - - '2023-12-31T14:00:00Z' - - '2023-12-31T15:00:00Z' - - '2023-12-31T16:00:00Z' - - '2023-12-31T17:00:00Z' - - '2023-12-31T18:00:00Z' - - '2023-12-31T19:00:00Z' - - '2023-12-31T20:00:00Z' - - '2023-12-31T21:00:00Z' - - '2023-12-31T22:00:00Z' - - '2023-12-31T23:00:00Z' + - '2023-01-01T00:00:00Z' + - '2023-01-01T01:00:00Z' + - '2023-01-01T02:00:00Z' + - '2023-01-01T03:00:00Z' + - '2023-01-01T04:00:00Z' + - '2023-01-01T05:00:00Z' + - '2023-01-01T06:00:00Z' + - '2023-01-01T07:00:00Z' + - '2023-01-01T08:00:00Z' + - '2023-01-01T09:00:00Z' + - '2023-01-01T10:00:00Z' + - '2023-01-01T11:00:00Z' + - '2023-01-01T12:00:00Z' + - '2023-01-01T13:00:00Z' + - '2023-01-01T14:00:00Z' + - '2023-01-01T15:00:00Z' + - '2023-01-01T16:00:00Z' + - '2023-01-01T17:00:00Z' + - '2023-01-01T18:00:00Z' + - '2023-01-01T19:00:00Z' + - '2023-01-01T20:00:00Z' + - '2023-01-01T21:00:00Z' + - '2023-01-01T22:00:00Z' + - '2023-01-01T23:00:00Z' + - '2023-01-02T00:00:00Z' + - '2023-01-02T01:00:00Z' + - '2023-01-02T02:00:00Z' + - '2023-01-02T03:00:00Z' + - '2023-01-02T04:00:00Z' + - '2023-01-02T05:00:00Z' + - '2023-01-02T06:00:00Z' + - '2023-01-02T07:00:00Z' + - '2023-01-02T08:00:00Z' + - '2023-01-02T09:00:00Z' + - '2023-01-02T10:00:00Z' + - '2023-01-02T11:00:00Z' + - '2023-01-02T12:00:00Z' + - '2023-01-02T13:00:00Z' + - '2023-01-02T14:00:00Z' + - '2023-01-02T15:00:00Z' + - '2023-01-02T16:00:00Z' + - '2023-01-02T17:00:00Z' + - '2023-01-02T18:00:00Z' + - '2023-01-02T19:00:00Z' + - '2023-01-02T20:00:00Z' + - '2023-01-02T21:00:00Z' + - '2023-01-02T22:00:00Z' + - '2023-01-02T23:00:00Z' + - '2023-01-03T00:00:00Z' + - '2023-01-03T01:00:00Z' + - '2023-01-03T02:00:00Z' + - '2023-01-03T03:00:00Z' + - '2023-01-03T04:00:00Z' + - '2023-01-03T05:00:00Z' + - '2023-01-03T06:00:00Z' + - '2023-01-03T07:00:00Z' + - '2023-01-03T08:00:00Z' + - '2023-01-03T09:00:00Z' + - '2023-01-03T10:00:00Z' + - '2023-01-03T11:00:00Z' + - '2023-01-03T12:00:00Z' + - '2023-01-03T13:00:00Z' + - '2023-01-03T14:00:00Z' + - '2023-01-03T15:00:00Z' + - '2023-01-03T16:00:00Z' + - '2023-01-03T17:00:00Z' + - '2023-01-03T18:00:00Z' + - '2023-01-03T19:00:00Z' + - '2023-01-03T20:00:00Z' + - '2023-01-03T21:00:00Z' + - '2023-01-03T22:00:00Z' + - '2023-01-03T23:00:00Z' + - '2023-01-04T00:00:00Z' + - '2023-01-04T01:00:00Z' + - '2023-01-04T02:00:00Z' + - '2023-01-04T03:00:00Z' + - '2023-01-04T04:00:00Z' + - '2023-01-04T05:00:00Z' + - '2023-01-04T06:00:00Z' + - '2023-01-04T07:00:00Z' + - '2023-01-04T08:00:00Z' + - '2023-01-04T09:00:00Z' + - '2023-01-04T10:00:00Z' + - '2023-01-04T11:00:00Z' + - '2023-01-04T12:00:00Z' + - '2023-01-04T13:00:00Z' + - '2023-01-04T14:00:00Z' + - '2023-01-04T15:00:00Z' + - '2023-01-04T16:00:00Z' + - '2023-01-04T17:00:00Z' + - '2023-01-04T18:00:00Z' + - '2023-01-04T19:00:00Z' + - '2023-01-04T20:00:00Z' + - '2023-01-04T21:00:00Z' + - '2023-01-04T22:00:00Z' + - '2023-01-04T23:00:00Z' + - '2023-01-05T00:00:00Z' + - '2023-01-05T01:00:00Z' + - '2023-01-05T02:00:00Z' + - '2023-01-05T03:00:00Z' + - '2023-01-05T04:00:00Z' + - '2023-01-05T05:00:00Z' + - '2023-01-05T06:00:00Z' + - '2023-01-05T07:00:00Z' + - '2023-01-05T08:00:00Z' + - '2023-01-05T09:00:00Z' + - '2023-01-05T10:00:00Z' + - '2023-01-05T11:00:00Z' + - '2023-01-05T12:00:00Z' + - '2023-01-05T13:00:00Z' + - '2023-01-05T14:00:00Z' + - '2023-01-05T15:00:00Z' + - '2023-01-05T16:00:00Z' + - '2023-01-05T17:00:00Z' + - '2023-01-05T18:00:00Z' + - '2023-01-05T19:00:00Z' + - '2023-01-05T20:00:00Z' + - '2023-01-05T21:00:00Z' + - '2023-01-05T22:00:00Z' + - '2023-01-05T23:00:00Z' + - '2023-01-06T00:00:00Z' + - '2023-01-06T01:00:00Z' + - '2023-01-06T02:00:00Z' + - '2023-01-06T03:00:00Z' + - '2023-01-06T04:00:00Z' + - '2023-01-06T05:00:00Z' + - '2023-01-06T06:00:00Z' + - '2023-01-06T07:00:00Z' + - '2023-01-06T08:00:00Z' + - '2023-01-06T09:00:00Z' + - '2023-01-06T10:00:00Z' + - '2023-01-06T11:00:00Z' + - '2023-01-06T12:00:00Z' + - '2023-01-06T13:00:00Z' + - '2023-01-06T14:00:00Z' + - '2023-01-06T15:00:00Z' + - '2023-01-06T16:00:00Z' + - '2023-01-06T17:00:00Z' + - '2023-01-06T18:00:00Z' + - '2023-01-06T19:00:00Z' + - '2023-01-06T20:00:00Z' + - '2023-01-06T21:00:00Z' + - '2023-01-06T22:00:00Z' + - '2023-01-06T23:00:00Z' + - '2023-01-07T00:00:00Z' + - '2023-01-07T01:00:00Z' + - '2023-01-07T02:00:00Z' + - '2023-01-07T03:00:00Z' + - '2023-01-07T04:00:00Z' + - '2023-01-07T05:00:00Z' + - '2023-01-07T06:00:00Z' + - '2023-01-07T07:00:00Z' + - '2023-01-07T08:00:00Z' + - '2023-01-07T09:00:00Z' + - '2023-01-07T10:00:00Z' + - '2023-01-07T11:00:00Z' + - '2023-01-07T12:00:00Z' + - '2023-01-07T13:00:00Z' + - '2023-01-07T14:00:00Z' + - '2023-01-07T15:00:00Z' + - '2023-01-07T16:00:00Z' + - '2023-01-07T17:00:00Z' + - '2023-01-07T18:00:00Z' + - '2023-01-07T19:00:00Z' + - '2023-01-07T20:00:00Z' + - '2023-01-07T21:00:00Z' + - '2023-01-07T22:00:00Z' + - '2023-01-07T23:00:00Z' + - '2023-01-08T00:00:00Z' + - '2023-01-08T01:00:00Z' + - '2023-01-08T02:00:00Z' + - '2023-01-08T03:00:00Z' + - '2023-01-08T04:00:00Z' + - '2023-01-08T05:00:00Z' + - '2023-01-08T06:00:00Z' + - '2023-01-08T07:00:00Z' + - '2023-01-08T08:00:00Z' + - '2023-01-08T09:00:00Z' + - '2023-01-08T10:00:00Z' + - '2023-01-08T11:00:00Z' + - '2023-01-08T12:00:00Z' + - '2023-01-08T13:00:00Z' + - '2023-01-08T14:00:00Z' + - '2023-01-08T15:00:00Z' + - '2023-01-08T16:00:00Z' + - '2023-01-08T17:00:00Z' + - '2023-01-08T18:00:00Z' + - '2023-01-08T19:00:00Z' + - '2023-01-08T20:00:00Z' + - '2023-01-08T21:00:00Z' + - '2023-01-08T22:00:00Z' + - '2023-01-08T23:00:00Z' + - '2023-01-09T00:00:00Z' + - '2023-01-09T01:00:00Z' + - '2023-01-09T02:00:00Z' + - '2023-01-09T03:00:00Z' + - '2023-01-09T04:00:00Z' + - '2023-01-09T05:00:00Z' + - '2023-01-09T06:00:00Z' + - '2023-01-09T07:00:00Z' + - '2023-01-09T08:00:00Z' + - '2023-01-09T09:00:00Z' + - '2023-01-09T10:00:00Z' + - '2023-01-09T11:00:00Z' + - '2023-01-09T12:00:00Z' + - '2023-01-09T13:00:00Z' + - '2023-01-09T14:00:00Z' + - '2023-01-09T15:00:00Z' + - '2023-01-09T16:00:00Z' + - '2023-01-09T17:00:00Z' + - '2023-01-09T18:00:00Z' + - '2023-01-09T19:00:00Z' + - '2023-01-09T20:00:00Z' + - '2023-01-09T21:00:00Z' + - '2023-01-09T22:00:00Z' + - '2023-01-09T23:00:00Z' + - '2023-01-10T00:00:00Z' + - '2023-01-10T01:00:00Z' + - '2023-01-10T02:00:00Z' + - '2023-01-10T03:00:00Z' + - '2023-01-10T04:00:00Z' + - '2023-01-10T05:00:00Z' + - '2023-01-10T06:00:00Z' + - '2023-01-10T07:00:00Z' + - '2023-01-10T08:00:00Z' + - '2023-01-10T09:00:00Z' + - '2023-01-10T10:00:00Z' + - '2023-01-10T11:00:00Z' + - '2023-01-10T12:00:00Z' + - '2023-01-10T13:00:00Z' + - '2023-01-10T14:00:00Z' + - '2023-01-10T15:00:00Z' + - '2023-01-10T16:00:00Z' + - '2023-01-10T17:00:00Z' + - '2023-01-10T18:00:00Z' + - '2023-01-10T19:00:00Z' + - '2023-01-10T20:00:00Z' + - '2023-01-10T21:00:00Z' + - '2023-01-10T22:00:00Z' + - '2023-01-10T23:00:00Z' + - '2023-01-11T00:00:00Z' + - '2023-01-11T01:00:00Z' + - '2023-01-11T02:00:00Z' + - '2023-01-11T03:00:00Z' + - '2023-01-11T04:00:00Z' + - '2023-01-11T05:00:00Z' + - '2023-01-11T06:00:00Z' + - '2023-01-11T07:00:00Z' + - '2023-01-11T08:00:00Z' + - '2023-01-11T09:00:00Z' + - '2023-01-11T10:00:00Z' + - '2023-01-11T11:00:00Z' + - '2023-01-11T12:00:00Z' + - '2023-01-11T13:00:00Z' + - '2023-01-11T14:00:00Z' + - '2023-01-11T15:00:00Z' + - '2023-01-11T16:00:00Z' + - '2023-01-11T17:00:00Z' + - '2023-01-11T18:00:00Z' + - '2023-01-11T19:00:00Z' + - '2023-01-11T20:00:00Z' + - '2023-01-11T21:00:00Z' + - '2023-01-11T22:00:00Z' + - '2023-01-11T23:00:00Z' + - '2023-01-12T00:00:00Z' + - '2023-01-12T01:00:00Z' + - '2023-01-12T02:00:00Z' + - '2023-01-12T03:00:00Z' + - '2023-01-12T04:00:00Z' + - '2023-01-12T05:00:00Z' + - '2023-01-12T06:00:00Z' + - '2023-01-12T07:00:00Z' + - '2023-01-12T08:00:00Z' + - '2023-01-12T09:00:00Z' + - '2023-01-12T10:00:00Z' + - '2023-01-12T11:00:00Z' + - '2023-01-12T12:00:00Z' + - '2023-01-12T13:00:00Z' + - '2023-01-12T14:00:00Z' + - '2023-01-12T15:00:00Z' + - '2023-01-12T16:00:00Z' + - '2023-01-12T17:00:00Z' + - '2023-01-12T18:00:00Z' + - '2023-01-12T19:00:00Z' + - '2023-01-12T20:00:00Z' + - '2023-01-12T21:00:00Z' + - '2023-01-12T22:00:00Z' + - '2023-01-12T23:00:00Z' + - '2023-01-13T00:00:00Z' + - '2023-01-13T01:00:00Z' + - '2023-01-13T02:00:00Z' + - '2023-01-13T03:00:00Z' + - '2023-01-13T04:00:00Z' + - '2023-01-13T05:00:00Z' + - '2023-01-13T06:00:00Z' + - '2023-01-13T07:00:00Z' + - '2023-01-13T08:00:00Z' + - '2023-01-13T09:00:00Z' + - '2023-01-13T10:00:00Z' + - '2023-01-13T11:00:00Z' + - '2023-01-13T12:00:00Z' + - '2023-01-13T13:00:00Z' + - '2023-01-13T14:00:00Z' + - '2023-01-13T15:00:00Z' + - '2023-01-13T16:00:00Z' + - '2023-01-13T17:00:00Z' + - '2023-01-13T18:00:00Z' + - '2023-01-13T19:00:00Z' + - '2023-01-13T20:00:00Z' + - '2023-01-13T21:00:00Z' + - '2023-01-13T22:00:00Z' + - '2023-01-13T23:00:00Z' + - '2023-01-14T00:00:00Z' + - '2023-01-14T01:00:00Z' + - '2023-01-14T02:00:00Z' + - '2023-01-14T03:00:00Z' + - '2023-01-14T04:00:00Z' + - '2023-01-14T05:00:00Z' + - '2023-01-14T06:00:00Z' + - '2023-01-14T07:00:00Z' + - '2023-01-14T08:00:00Z' + - '2023-01-14T09:00:00Z' + - '2023-01-14T10:00:00Z' + - '2023-01-14T11:00:00Z' + - '2023-01-14T12:00:00Z' + - '2023-01-14T13:00:00Z' + - '2023-01-14T14:00:00Z' + - '2023-01-14T15:00:00Z' + - '2023-01-14T16:00:00Z' + - '2023-01-14T17:00:00Z' + - '2023-01-14T18:00:00Z' + - '2023-01-14T19:00:00Z' + - '2023-01-14T20:00:00Z' + - '2023-01-14T21:00:00Z' + - '2023-01-14T22:00:00Z' + - '2023-01-14T23:00:00Z' + - '2023-01-15T00:00:00Z' + - '2023-01-15T01:00:00Z' + - '2023-01-15T02:00:00Z' + - '2023-01-15T03:00:00Z' + - '2023-01-15T04:00:00Z' + - '2023-01-15T05:00:00Z' + - '2023-01-15T06:00:00Z' + - '2023-01-15T07:00:00Z' + - '2023-01-15T08:00:00Z' + - '2023-01-15T09:00:00Z' + - '2023-01-15T10:00:00Z' + - '2023-01-15T11:00:00Z' + - '2023-01-15T12:00:00Z' + - '2023-01-15T13:00:00Z' + - '2023-01-15T14:00:00Z' + - '2023-01-15T15:00:00Z' + - '2023-01-15T16:00:00Z' + - '2023-01-15T17:00:00Z' + - '2023-01-15T18:00:00Z' + - '2023-01-15T19:00:00Z' + - '2023-01-15T20:00:00Z' + - '2023-01-15T21:00:00Z' + - '2023-01-15T22:00:00Z' + - '2023-01-15T23:00:00Z' + - '2023-01-16T00:00:00Z' + - '2023-01-16T01:00:00Z' + - '2023-01-16T02:00:00Z' + - '2023-01-16T03:00:00Z' + - '2023-01-16T04:00:00Z' + - '2023-01-16T05:00:00Z' + - '2023-01-16T06:00:00Z' + - '2023-01-16T07:00:00Z' + - '2023-01-16T08:00:00Z' + - '2023-01-16T09:00:00Z' + - '2023-01-16T10:00:00Z' + - '2023-01-16T11:00:00Z' + - '2023-01-16T12:00:00Z' + - '2023-01-16T13:00:00Z' + - '2023-01-16T14:00:00Z' + - '2023-01-16T15:00:00Z' + - '2023-01-16T16:00:00Z' + - '2023-01-16T17:00:00Z' + - '2023-01-16T18:00:00Z' + - '2023-01-16T19:00:00Z' + - '2023-01-16T20:00:00Z' + - '2023-01-16T21:00:00Z' + - '2023-01-16T22:00:00Z' + - '2023-01-16T23:00:00Z' + - '2023-01-17T00:00:00Z' + - '2023-01-17T01:00:00Z' + - '2023-01-17T02:00:00Z' + - '2023-01-17T03:00:00Z' + - '2023-01-17T04:00:00Z' + - '2023-01-17T05:00:00Z' + - '2023-01-17T06:00:00Z' + - '2023-01-17T07:00:00Z' + - '2023-01-17T08:00:00Z' + - '2023-01-17T09:00:00Z' + - '2023-01-17T10:00:00Z' + - '2023-01-17T11:00:00Z' + - '2023-01-17T12:00:00Z' + - '2023-01-17T13:00:00Z' + - '2023-01-17T14:00:00Z' + - '2023-01-17T15:00:00Z' + - '2023-01-17T16:00:00Z' + - '2023-01-17T17:00:00Z' + - '2023-01-17T18:00:00Z' + - '2023-01-17T19:00:00Z' + - '2023-01-17T20:00:00Z' + - '2023-01-17T21:00:00Z' + - '2023-01-17T22:00:00Z' + - '2023-01-17T23:00:00Z' + - '2023-01-18T00:00:00Z' + - '2023-01-18T01:00:00Z' + - '2023-01-18T02:00:00Z' + - '2023-01-18T03:00:00Z' + - '2023-01-18T04:00:00Z' + - '2023-01-18T05:00:00Z' + - '2023-01-18T06:00:00Z' + - '2023-01-18T07:00:00Z' + - '2023-01-18T08:00:00Z' + - '2023-01-18T09:00:00Z' + - '2023-01-18T10:00:00Z' + - '2023-01-18T11:00:00Z' + - '2023-01-18T12:00:00Z' + - '2023-01-18T13:00:00Z' + - '2023-01-18T14:00:00Z' + - '2023-01-18T15:00:00Z' + - '2023-01-18T16:00:00Z' + - '2023-01-18T17:00:00Z' + - '2023-01-18T18:00:00Z' + - '2023-01-18T19:00:00Z' + - '2023-01-18T20:00:00Z' + - '2023-01-18T21:00:00Z' + - '2023-01-18T22:00:00Z' + - '2023-01-18T23:00:00Z' + - '2023-01-19T00:00:00Z' + - '2023-01-19T01:00:00Z' + - '2023-01-19T02:00:00Z' + - '2023-01-19T03:00:00Z' + - '2023-01-19T04:00:00Z' + - '2023-01-19T05:00:00Z' + - '2023-01-19T06:00:00Z' + - '2023-01-19T07:00:00Z' + - '2023-01-19T08:00:00Z' + - '2023-01-19T09:00:00Z' + - '2023-01-19T10:00:00Z' + - '2023-01-19T11:00:00Z' + - '2023-01-19T12:00:00Z' + - '2023-01-19T13:00:00Z' + - '2023-01-19T14:00:00Z' + - '2023-01-19T15:00:00Z' + - '2023-01-19T16:00:00Z' + - '2023-01-19T17:00:00Z' + - '2023-01-19T18:00:00Z' + - '2023-01-19T19:00:00Z' + - '2023-01-19T20:00:00Z' + - '2023-01-19T21:00:00Z' + - '2023-01-19T22:00:00Z' + - '2023-01-19T23:00:00Z' + - '2023-01-20T00:00:00Z' + - '2023-01-20T01:00:00Z' + - '2023-01-20T02:00:00Z' + - '2023-01-20T03:00:00Z' + - '2023-01-20T04:00:00Z' + - '2023-01-20T05:00:00Z' + - '2023-01-20T06:00:00Z' + - '2023-01-20T07:00:00Z' + - '2023-01-20T08:00:00Z' + - '2023-01-20T09:00:00Z' + - '2023-01-20T10:00:00Z' + - '2023-01-20T11:00:00Z' + - '2023-01-20T12:00:00Z' + - '2023-01-20T13:00:00Z' + - '2023-01-20T14:00:00Z' + - '2023-01-20T15:00:00Z' + - '2023-01-20T16:00:00Z' + - '2023-01-20T17:00:00Z' + - '2023-01-20T18:00:00Z' + - '2023-01-20T19:00:00Z' + - '2023-01-20T20:00:00Z' + - '2023-01-20T21:00:00Z' + - '2023-01-20T22:00:00Z' + - '2023-01-20T23:00:00Z' + - '2023-01-21T00:00:00Z' + - '2023-01-21T01:00:00Z' + - '2023-01-21T02:00:00Z' + - '2023-01-21T03:00:00Z' + - '2023-01-21T04:00:00Z' + - '2023-01-21T05:00:00Z' + - '2023-01-21T06:00:00Z' + - '2023-01-21T07:00:00Z' + - '2023-01-21T08:00:00Z' + - '2023-01-21T09:00:00Z' + - '2023-01-21T10:00:00Z' + - '2023-01-21T11:00:00Z' + - '2023-01-21T12:00:00Z' + - '2023-01-21T13:00:00Z' + - '2023-01-21T14:00:00Z' + - '2023-01-21T15:00:00Z' + - '2023-01-21T16:00:00Z' + - '2023-01-21T17:00:00Z' + - '2023-01-21T18:00:00Z' + - '2023-01-21T19:00:00Z' + - '2023-01-21T20:00:00Z' + - '2023-01-21T21:00:00Z' + - '2023-01-21T22:00:00Z' + - '2023-01-21T23:00:00Z' + - '2023-01-22T00:00:00Z' + - '2023-01-22T01:00:00Z' + - '2023-01-22T02:00:00Z' + - '2023-01-22T03:00:00Z' + - '2023-01-22T04:00:00Z' + - '2023-01-22T05:00:00Z' + - '2023-01-22T06:00:00Z' + - '2023-01-22T07:00:00Z' + - '2023-01-22T08:00:00Z' + - '2023-01-22T09:00:00Z' + - '2023-01-22T10:00:00Z' + - '2023-01-22T11:00:00Z' + - '2023-01-22T12:00:00Z' + - '2023-01-22T13:00:00Z' + - '2023-01-22T14:00:00Z' + - '2023-01-22T15:00:00Z' + - '2023-01-22T16:00:00Z' + - '2023-01-22T17:00:00Z' + - '2023-01-22T18:00:00Z' + - '2023-01-22T19:00:00Z' + - '2023-01-22T20:00:00Z' + - '2023-01-22T21:00:00Z' + - '2023-01-22T22:00:00Z' + - '2023-01-22T23:00:00Z' + - '2023-01-23T00:00:00Z' + - '2023-01-23T01:00:00Z' + - '2023-01-23T02:00:00Z' + - '2023-01-23T03:00:00Z' + - '2023-01-23T04:00:00Z' + - '2023-01-23T05:00:00Z' + - '2023-01-23T06:00:00Z' + - '2023-01-23T07:00:00Z' + - '2023-01-23T08:00:00Z' + - '2023-01-23T09:00:00Z' + - '2023-01-23T10:00:00Z' + - '2023-01-23T11:00:00Z' + - '2023-01-23T12:00:00Z' + - '2023-01-23T13:00:00Z' + - '2023-01-23T14:00:00Z' + - '2023-01-23T15:00:00Z' + - '2023-01-23T16:00:00Z' + - '2023-01-23T17:00:00Z' + - '2023-01-23T18:00:00Z' + - '2023-01-23T19:00:00Z' + - '2023-01-23T20:00:00Z' + - '2023-01-23T21:00:00Z' + - '2023-01-23T22:00:00Z' + - '2023-01-23T23:00:00Z' + - '2023-01-24T00:00:00Z' + - '2023-01-24T01:00:00Z' + - '2023-01-24T02:00:00Z' + - '2023-01-24T03:00:00Z' + - '2023-01-24T04:00:00Z' + - '2023-01-24T05:00:00Z' + - '2023-01-24T06:00:00Z' + - '2023-01-24T07:00:00Z' + - '2023-01-24T08:00:00Z' + - '2023-01-24T09:00:00Z' + - '2023-01-24T10:00:00Z' + - '2023-01-24T11:00:00Z' + - '2023-01-24T12:00:00Z' + - '2023-01-24T13:00:00Z' + - '2023-01-24T14:00:00Z' + - '2023-01-24T15:00:00Z' + - '2023-01-24T16:00:00Z' + - '2023-01-24T17:00:00Z' + - '2023-01-24T18:00:00Z' + - '2023-01-24T19:00:00Z' + - '2023-01-24T20:00:00Z' + - '2023-01-24T21:00:00Z' + - '2023-01-24T22:00:00Z' + - '2023-01-24T23:00:00Z' + - '2023-01-25T00:00:00Z' + - '2023-01-25T01:00:00Z' + - '2023-01-25T02:00:00Z' + - '2023-01-25T03:00:00Z' + - '2023-01-25T04:00:00Z' + - '2023-01-25T05:00:00Z' + - '2023-01-25T06:00:00Z' + - '2023-01-25T07:00:00Z' + - '2023-01-25T08:00:00Z' + - '2023-01-25T09:00:00Z' + - '2023-01-25T10:00:00Z' + - '2023-01-25T11:00:00Z' + - '2023-01-25T12:00:00Z' + - '2023-01-25T13:00:00Z' + - '2023-01-25T14:00:00Z' + - '2023-01-25T15:00:00Z' + - '2023-01-25T16:00:00Z' + - '2023-01-25T17:00:00Z' + - '2023-01-25T18:00:00Z' + - '2023-01-25T19:00:00Z' + - '2023-01-25T20:00:00Z' + - '2023-01-25T21:00:00Z' + - '2023-01-25T22:00:00Z' + - '2023-01-25T23:00:00Z' + - '2023-01-26T00:00:00Z' + - '2023-01-26T01:00:00Z' + - '2023-01-26T02:00:00Z' + - '2023-01-26T03:00:00Z' + - '2023-01-26T04:00:00Z' + - '2023-01-26T05:00:00Z' + - '2023-01-26T06:00:00Z' + - '2023-01-26T07:00:00Z' + - '2023-01-26T08:00:00Z' + - '2023-01-26T09:00:00Z' + - '2023-01-26T10:00:00Z' + - '2023-01-26T11:00:00Z' + - '2023-01-26T12:00:00Z' + - '2023-01-26T13:00:00Z' + - '2023-01-26T14:00:00Z' + - '2023-01-26T15:00:00Z' + - '2023-01-26T16:00:00Z' + - '2023-01-26T17:00:00Z' + - '2023-01-26T18:00:00Z' + - '2023-01-26T19:00:00Z' + - '2023-01-26T20:00:00Z' + - '2023-01-26T21:00:00Z' + - '2023-01-26T22:00:00Z' + - '2023-01-26T23:00:00Z' + - '2023-01-27T00:00:00Z' + - '2023-01-27T01:00:00Z' + - '2023-01-27T02:00:00Z' + - '2023-01-27T03:00:00Z' + - '2023-01-27T04:00:00Z' + - '2023-01-27T05:00:00Z' + - '2023-01-27T06:00:00Z' + - '2023-01-27T07:00:00Z' + - '2023-01-27T08:00:00Z' + - '2023-01-27T09:00:00Z' + - '2023-01-27T10:00:00Z' + - '2023-01-27T11:00:00Z' + - '2023-01-27T12:00:00Z' + - '2023-01-27T13:00:00Z' + - '2023-01-27T14:00:00Z' + - '2023-01-27T15:00:00Z' + - '2023-01-27T16:00:00Z' + - '2023-01-27T17:00:00Z' + - '2023-01-27T18:00:00Z' + - '2023-01-27T19:00:00Z' + - '2023-01-27T20:00:00Z' + - '2023-01-27T21:00:00Z' + - '2023-01-27T22:00:00Z' + - '2023-01-27T23:00:00Z' + - '2023-01-28T00:00:00Z' + - '2023-01-28T01:00:00Z' + - '2023-01-28T02:00:00Z' + - '2023-01-28T03:00:00Z' + - '2023-01-28T04:00:00Z' + - '2023-01-28T05:00:00Z' + - '2023-01-28T06:00:00Z' + - '2023-01-28T07:00:00Z' + - '2023-01-28T08:00:00Z' + - '2023-01-28T09:00:00Z' + - '2023-01-28T10:00:00Z' + - '2023-01-28T11:00:00Z' + - '2023-01-28T12:00:00Z' + - '2023-01-28T13:00:00Z' + - '2023-01-28T14:00:00Z' + - '2023-01-28T15:00:00Z' + - '2023-01-28T16:00:00Z' + - '2023-01-28T17:00:00Z' + - '2023-01-28T18:00:00Z' + - '2023-01-28T19:00:00Z' + - '2023-01-28T20:00:00Z' + - '2023-01-28T21:00:00Z' + - '2023-01-28T22:00:00Z' + - '2023-01-28T23:00:00Z' + - '2023-01-29T00:00:00Z' + - '2023-01-29T01:00:00Z' + - '2023-01-29T02:00:00Z' + - '2023-01-29T03:00:00Z' + - '2023-01-29T04:00:00Z' + - '2023-01-29T05:00:00Z' + - '2023-01-29T06:00:00Z' + - '2023-01-29T07:00:00Z' + - '2023-01-29T08:00:00Z' + - '2023-01-29T09:00:00Z' + - '2023-01-29T10:00:00Z' + - '2023-01-29T11:00:00Z' + - '2023-01-29T12:00:00Z' + - '2023-01-29T13:00:00Z' + - '2023-01-29T14:00:00Z' + - '2023-01-29T15:00:00Z' + - '2023-01-29T16:00:00Z' + - '2023-01-29T17:00:00Z' + - '2023-01-29T18:00:00Z' + - '2023-01-29T19:00:00Z' + - '2023-01-29T20:00:00Z' + - '2023-01-29T21:00:00Z' + - '2023-01-29T22:00:00Z' + - '2023-01-29T23:00:00Z' + - '2023-01-30T00:00:00Z' + - '2023-01-30T01:00:00Z' + - '2023-01-30T02:00:00Z' + - '2023-01-30T03:00:00Z' + - '2023-01-30T04:00:00Z' + - '2023-01-30T05:00:00Z' + - '2023-01-30T06:00:00Z' + - '2023-01-30T07:00:00Z' + - '2023-01-30T08:00:00Z' + - '2023-01-30T09:00:00Z' + - '2023-01-30T10:00:00Z' + - '2023-01-30T11:00:00Z' + - '2023-01-30T12:00:00Z' + - '2023-01-30T13:00:00Z' + - '2023-01-30T14:00:00Z' + - '2023-01-30T15:00:00Z' + - '2023-01-30T16:00:00Z' + - '2023-01-30T17:00:00Z' + - '2023-01-30T18:00:00Z' + - '2023-01-30T19:00:00Z' + - '2023-01-30T20:00:00Z' + - '2023-01-30T21:00:00Z' + - '2023-01-30T22:00:00Z' + - '2023-01-30T23:00:00Z' + - '2023-01-31T00:00:00Z' + - '2023-01-31T01:00:00Z' + - '2023-01-31T02:00:00Z' + - '2023-01-31T03:00:00Z' + - '2023-01-31T04:00:00Z' + - '2023-01-31T05:00:00Z' + - '2023-01-31T06:00:00Z' + - '2023-01-31T07:00:00Z' + - '2023-01-31T08:00:00Z' + - '2023-01-31T09:00:00Z' + - '2023-01-31T10:00:00Z' + - '2023-01-31T11:00:00Z' + - '2023-01-31T12:00:00Z' + - '2023-01-31T13:00:00Z' + - '2023-01-31T14:00:00Z' + - '2023-01-31T15:00:00Z' + - '2023-01-31T16:00:00Z' + - '2023-01-31T17:00:00Z' + - '2023-01-31T18:00:00Z' + - '2023-01-31T19:00:00Z' + - '2023-01-31T20:00:00Z' + - '2023-01-31T21:00:00Z' + - '2023-01-31T22:00:00Z' + - '2023-01-31T23:00:00Z' + - '2023-02-01T00:00:00Z' + - '2023-02-01T01:00:00Z' + - '2023-02-01T02:00:00Z' + - '2023-02-01T03:00:00Z' + - '2023-02-01T04:00:00Z' + - '2023-02-01T05:00:00Z' + - '2023-02-01T06:00:00Z' + - '2023-02-01T07:00:00Z' + - '2023-02-01T08:00:00Z' + - '2023-02-01T09:00:00Z' + - '2023-02-01T10:00:00Z' + - '2023-02-01T11:00:00Z' + - '2023-02-01T12:00:00Z' + - '2023-02-01T13:00:00Z' + - '2023-02-01T14:00:00Z' + - '2023-02-01T15:00:00Z' + - '2023-02-01T16:00:00Z' + - '2023-02-01T17:00:00Z' + - '2023-02-01T18:00:00Z' + - '2023-02-01T19:00:00Z' + - '2023-02-01T20:00:00Z' + - '2023-02-01T21:00:00Z' + - '2023-02-01T22:00:00Z' + - '2023-02-01T23:00:00Z' + - '2023-02-02T00:00:00Z' + - '2023-02-02T01:00:00Z' + - '2023-02-02T02:00:00Z' + - '2023-02-02T03:00:00Z' + - '2023-02-02T04:00:00Z' + - '2023-02-02T05:00:00Z' + - '2023-02-02T06:00:00Z' + - '2023-02-02T07:00:00Z' + - '2023-02-02T08:00:00Z' + - '2023-02-02T09:00:00Z' + - '2023-02-02T10:00:00Z' + - '2023-02-02T11:00:00Z' + - '2023-02-02T12:00:00Z' + - '2023-02-02T13:00:00Z' + - '2023-02-02T14:00:00Z' + - '2023-02-02T15:00:00Z' + - '2023-02-02T16:00:00Z' + - '2023-02-02T17:00:00Z' + - '2023-02-02T18:00:00Z' + - '2023-02-02T19:00:00Z' + - '2023-02-02T20:00:00Z' + - '2023-02-02T21:00:00Z' + - '2023-02-02T22:00:00Z' + - '2023-02-02T23:00:00Z' + - '2023-02-03T00:00:00Z' + - '2023-02-03T01:00:00Z' + - '2023-02-03T02:00:00Z' + - '2023-02-03T03:00:00Z' + - '2023-02-03T04:00:00Z' + - '2023-02-03T05:00:00Z' + - '2023-02-03T06:00:00Z' + - '2023-02-03T07:00:00Z' + - '2023-02-03T08:00:00Z' + - '2023-02-03T09:00:00Z' + - '2023-02-03T10:00:00Z' + - '2023-02-03T11:00:00Z' + - '2023-02-03T12:00:00Z' + - '2023-02-03T13:00:00Z' + - '2023-02-03T14:00:00Z' + - '2023-02-03T15:00:00Z' + - '2023-02-03T16:00:00Z' + - '2023-02-03T17:00:00Z' + - '2023-02-03T18:00:00Z' + - '2023-02-03T19:00:00Z' + - '2023-02-03T20:00:00Z' + - '2023-02-03T21:00:00Z' + - '2023-02-03T22:00:00Z' + - '2023-02-03T23:00:00Z' + - '2023-02-04T00:00:00Z' + - '2023-02-04T01:00:00Z' + - '2023-02-04T02:00:00Z' + - '2023-02-04T03:00:00Z' + - '2023-02-04T04:00:00Z' + - '2023-02-04T05:00:00Z' + - '2023-02-04T06:00:00Z' + - '2023-02-04T07:00:00Z' + - '2023-02-04T08:00:00Z' + - '2023-02-04T09:00:00Z' + - '2023-02-04T10:00:00Z' + - '2023-02-04T11:00:00Z' + - '2023-02-04T12:00:00Z' + - '2023-02-04T13:00:00Z' + - '2023-02-04T14:00:00Z' + - '2023-02-04T15:00:00Z' + - '2023-02-04T16:00:00Z' + - '2023-02-04T17:00:00Z' + - '2023-02-04T18:00:00Z' + - '2023-02-04T19:00:00Z' + - '2023-02-04T20:00:00Z' + - '2023-02-04T21:00:00Z' + - '2023-02-04T22:00:00Z' + - '2023-02-04T23:00:00Z' + - '2023-02-05T00:00:00Z' + - '2023-02-05T01:00:00Z' + - '2023-02-05T02:00:00Z' + - '2023-02-05T03:00:00Z' + - '2023-02-05T04:00:00Z' + - '2023-02-05T05:00:00Z' + - '2023-02-05T06:00:00Z' + - '2023-02-05T07:00:00Z' + - '2023-02-05T08:00:00Z' + - '2023-02-05T09:00:00Z' + - '2023-02-05T10:00:00Z' + - '2023-02-05T11:00:00Z' + - '2023-02-05T12:00:00Z' + - '2023-02-05T13:00:00Z' + - '2023-02-05T14:00:00Z' + - '2023-02-05T15:00:00Z' + - '2023-02-05T16:00:00Z' + - '2023-02-05T17:00:00Z' + - '2023-02-05T18:00:00Z' + - '2023-02-05T19:00:00Z' + - '2023-02-05T20:00:00Z' + - '2023-02-05T21:00:00Z' + - '2023-02-05T22:00:00Z' + - '2023-02-05T23:00:00Z' + - '2023-02-06T00:00:00Z' + - '2023-02-06T01:00:00Z' + - '2023-02-06T02:00:00Z' + - '2023-02-06T03:00:00Z' + - '2023-02-06T04:00:00Z' + - '2023-02-06T05:00:00Z' + - '2023-02-06T06:00:00Z' + - '2023-02-06T07:00:00Z' + - '2023-02-06T08:00:00Z' + - '2023-02-06T09:00:00Z' + - '2023-02-06T10:00:00Z' + - '2023-02-06T11:00:00Z' + - '2023-02-06T12:00:00Z' + - '2023-02-06T13:00:00Z' + - '2023-02-06T14:00:00Z' + - '2023-02-06T15:00:00Z' + - '2023-02-06T16:00:00Z' + - '2023-02-06T17:00:00Z' + - '2023-02-06T18:00:00Z' + - '2023-02-06T19:00:00Z' + - '2023-02-06T20:00:00Z' + - '2023-02-06T21:00:00Z' + - '2023-02-06T22:00:00Z' + - '2023-02-06T23:00:00Z' + - '2023-02-07T00:00:00Z' + - '2023-02-07T01:00:00Z' + - '2023-02-07T02:00:00Z' + - '2023-02-07T03:00:00Z' + - '2023-02-07T04:00:00Z' + - '2023-02-07T05:00:00Z' + - '2023-02-07T06:00:00Z' + - '2023-02-07T07:00:00Z' + - '2023-02-07T08:00:00Z' + - '2023-02-07T09:00:00Z' + - '2023-02-07T10:00:00Z' + - '2023-02-07T11:00:00Z' + - '2023-02-07T12:00:00Z' + - '2023-02-07T13:00:00Z' + - '2023-02-07T14:00:00Z' + - '2023-02-07T15:00:00Z' + - '2023-02-07T16:00:00Z' + - '2023-02-07T17:00:00Z' + - '2023-02-07T18:00:00Z' + - '2023-02-07T19:00:00Z' + - '2023-02-07T20:00:00Z' + - '2023-02-07T21:00:00Z' + - '2023-02-07T22:00:00Z' + - '2023-02-07T23:00:00Z' + - '2023-02-08T00:00:00Z' + - '2023-02-08T01:00:00Z' + - '2023-02-08T02:00:00Z' + - '2023-02-08T03:00:00Z' + - '2023-02-08T04:00:00Z' + - '2023-02-08T05:00:00Z' + - '2023-02-08T06:00:00Z' + - '2023-02-08T07:00:00Z' + - '2023-02-08T08:00:00Z' + - '2023-02-08T09:00:00Z' + - '2023-02-08T10:00:00Z' + - '2023-02-08T11:00:00Z' + - '2023-02-08T12:00:00Z' + - '2023-02-08T13:00:00Z' + - '2023-02-08T14:00:00Z' + - '2023-02-08T15:00:00Z' + - '2023-02-08T16:00:00Z' + - '2023-02-08T17:00:00Z' + - '2023-02-08T18:00:00Z' + - '2023-02-08T19:00:00Z' + - '2023-02-08T20:00:00Z' + - '2023-02-08T21:00:00Z' + - '2023-02-08T22:00:00Z' + - '2023-02-08T23:00:00Z' + - '2023-02-09T00:00:00Z' + - '2023-02-09T01:00:00Z' + - '2023-02-09T02:00:00Z' + - '2023-02-09T03:00:00Z' + - '2023-02-09T04:00:00Z' + - '2023-02-09T05:00:00Z' + - '2023-02-09T06:00:00Z' + - '2023-02-09T07:00:00Z' + - '2023-02-09T08:00:00Z' + - '2023-02-09T09:00:00Z' + - '2023-02-09T10:00:00Z' + - '2023-02-09T11:00:00Z' + - '2023-02-09T12:00:00Z' + - '2023-02-09T13:00:00Z' + - '2023-02-09T14:00:00Z' + - '2023-02-09T15:00:00Z' + - '2023-02-09T16:00:00Z' + - '2023-02-09T17:00:00Z' + - '2023-02-09T18:00:00Z' + - '2023-02-09T19:00:00Z' + - '2023-02-09T20:00:00Z' + - '2023-02-09T21:00:00Z' + - '2023-02-09T22:00:00Z' + - '2023-02-09T23:00:00Z' + - '2023-02-10T00:00:00Z' + - '2023-02-10T01:00:00Z' + - '2023-02-10T02:00:00Z' + - '2023-02-10T03:00:00Z' + - '2023-02-10T04:00:00Z' + - '2023-02-10T05:00:00Z' + - '2023-02-10T06:00:00Z' + - '2023-02-10T07:00:00Z' + - '2023-02-10T08:00:00Z' + - '2023-02-10T09:00:00Z' + - '2023-02-10T10:00:00Z' + - '2023-02-10T11:00:00Z' + - '2023-02-10T12:00:00Z' + - '2023-02-10T13:00:00Z' + - '2023-02-10T14:00:00Z' + - '2023-02-10T15:00:00Z' + - '2023-02-10T16:00:00Z' + - '2023-02-10T17:00:00Z' + - '2023-02-10T18:00:00Z' + - '2023-02-10T19:00:00Z' + - '2023-02-10T20:00:00Z' + - '2023-02-10T21:00:00Z' + - '2023-02-10T22:00:00Z' + - '2023-02-10T23:00:00Z' + - '2023-02-11T00:00:00Z' + - '2023-02-11T01:00:00Z' + - '2023-02-11T02:00:00Z' + - '2023-02-11T03:00:00Z' + - '2023-02-11T04:00:00Z' + - '2023-02-11T05:00:00Z' + - '2023-02-11T06:00:00Z' + - '2023-02-11T07:00:00Z' + - '2023-02-11T08:00:00Z' + - '2023-02-11T09:00:00Z' + - '2023-02-11T10:00:00Z' + - '2023-02-11T11:00:00Z' + - '2023-02-11T12:00:00Z' + - '2023-02-11T13:00:00Z' + - '2023-02-11T14:00:00Z' + - '2023-02-11T15:00:00Z' + - '2023-02-11T16:00:00Z' + - '2023-02-11T17:00:00Z' + - '2023-02-11T18:00:00Z' + - '2023-02-11T19:00:00Z' + - '2023-02-11T20:00:00Z' + - '2023-02-11T21:00:00Z' + - '2023-02-11T22:00:00Z' + - '2023-02-11T23:00:00Z' + - '2023-02-12T00:00:00Z' + - '2023-02-12T01:00:00Z' + - '2023-02-12T02:00:00Z' + - '2023-02-12T03:00:00Z' + - '2023-02-12T04:00:00Z' + - '2023-02-12T05:00:00Z' + - '2023-02-12T06:00:00Z' + - '2023-02-12T07:00:00Z' + - '2023-02-12T08:00:00Z' + - '2023-02-12T09:00:00Z' + - '2023-02-12T10:00:00Z' + - '2023-02-12T11:00:00Z' + - '2023-02-12T12:00:00Z' + - '2023-02-12T13:00:00Z' + - '2023-02-12T14:00:00Z' + - '2023-02-12T15:00:00Z' + - '2023-02-12T16:00:00Z' + - '2023-02-12T17:00:00Z' + - '2023-02-12T18:00:00Z' + - '2023-02-12T19:00:00Z' + - '2023-02-12T20:00:00Z' + - '2023-02-12T21:00:00Z' + - '2023-02-12T22:00:00Z' + - '2023-02-12T23:00:00Z' + - '2023-02-13T00:00:00Z' + - '2023-02-13T01:00:00Z' + - '2023-02-13T02:00:00Z' + - '2023-02-13T03:00:00Z' + - '2023-02-13T04:00:00Z' + - '2023-02-13T05:00:00Z' + - '2023-02-13T06:00:00Z' + - '2023-02-13T07:00:00Z' + - '2023-02-13T08:00:00Z' + - '2023-02-13T09:00:00Z' + - '2023-02-13T10:00:00Z' + - '2023-02-13T11:00:00Z' + - '2023-02-13T12:00:00Z' + - '2023-02-13T13:00:00Z' + - '2023-02-13T14:00:00Z' + - '2023-02-13T15:00:00Z' + - '2023-02-13T16:00:00Z' + - '2023-02-13T17:00:00Z' + - '2023-02-13T18:00:00Z' + - '2023-02-13T19:00:00Z' + - '2023-02-13T20:00:00Z' + - '2023-02-13T21:00:00Z' + - '2023-02-13T22:00:00Z' + - '2023-02-13T23:00:00Z' + - '2023-02-14T00:00:00Z' + - '2023-02-14T01:00:00Z' + - '2023-02-14T02:00:00Z' + - '2023-02-14T03:00:00Z' + - '2023-02-14T04:00:00Z' + - '2023-02-14T05:00:00Z' + - '2023-02-14T06:00:00Z' + - '2023-02-14T07:00:00Z' + - '2023-02-14T08:00:00Z' + - '2023-02-14T09:00:00Z' + - '2023-02-14T10:00:00Z' + - '2023-02-14T11:00:00Z' + - '2023-02-14T12:00:00Z' + - '2023-02-14T13:00:00Z' + - '2023-02-14T14:00:00Z' + - '2023-02-14T15:00:00Z' + - '2023-02-14T16:00:00Z' + - '2023-02-14T17:00:00Z' + - '2023-02-14T18:00:00Z' + - '2023-02-14T19:00:00Z' + - '2023-02-14T20:00:00Z' + - '2023-02-14T21:00:00Z' + - '2023-02-14T22:00:00Z' + - '2023-02-14T23:00:00Z' + - '2023-02-15T00:00:00Z' + - '2023-02-15T01:00:00Z' + - '2023-02-15T02:00:00Z' + - '2023-02-15T03:00:00Z' + - '2023-02-15T04:00:00Z' + - '2023-02-15T05:00:00Z' + - '2023-02-15T06:00:00Z' + - '2023-02-15T07:00:00Z' + - '2023-02-15T08:00:00Z' + - '2023-02-15T09:00:00Z' + - '2023-02-15T10:00:00Z' + - '2023-02-15T11:00:00Z' + - '2023-02-15T12:00:00Z' + - '2023-02-15T13:00:00Z' + - '2023-02-15T14:00:00Z' + - '2023-02-15T15:00:00Z' + - '2023-02-15T16:00:00Z' + - '2023-02-15T17:00:00Z' + - '2023-02-15T18:00:00Z' + - '2023-02-15T19:00:00Z' + - '2023-02-15T20:00:00Z' + - '2023-02-15T21:00:00Z' + - '2023-02-15T22:00:00Z' + - '2023-02-15T23:00:00Z' + - '2023-02-16T00:00:00Z' + - '2023-02-16T01:00:00Z' + - '2023-02-16T02:00:00Z' + - '2023-02-16T03:00:00Z' + - '2023-02-16T04:00:00Z' + - '2023-02-16T05:00:00Z' + - '2023-02-16T06:00:00Z' + - '2023-02-16T07:00:00Z' + - '2023-02-16T08:00:00Z' + - '2023-02-16T09:00:00Z' + - '2023-02-16T10:00:00Z' + - '2023-02-16T11:00:00Z' + - '2023-02-16T12:00:00Z' + - '2023-02-16T13:00:00Z' + - '2023-02-16T14:00:00Z' + - '2023-02-16T15:00:00Z' + - '2023-02-16T16:00:00Z' + - '2023-02-16T17:00:00Z' + - '2023-02-16T18:00:00Z' + - '2023-02-16T19:00:00Z' + - '2023-02-16T20:00:00Z' + - '2023-02-16T21:00:00Z' + - '2023-02-16T22:00:00Z' + - '2023-02-16T23:00:00Z' + - '2023-02-17T00:00:00Z' + - '2023-02-17T01:00:00Z' + - '2023-02-17T02:00:00Z' + - '2023-02-17T03:00:00Z' + - '2023-02-17T04:00:00Z' + - '2023-02-17T05:00:00Z' + - '2023-02-17T06:00:00Z' + - '2023-02-17T07:00:00Z' + - '2023-02-17T08:00:00Z' + - '2023-02-17T09:00:00Z' + - '2023-02-17T10:00:00Z' + - '2023-02-17T11:00:00Z' + - '2023-02-17T12:00:00Z' + - '2023-02-17T13:00:00Z' + - '2023-02-17T14:00:00Z' + - '2023-02-17T15:00:00Z' + - '2023-02-17T16:00:00Z' + - '2023-02-17T17:00:00Z' + - '2023-02-17T18:00:00Z' + - '2023-02-17T19:00:00Z' + - '2023-02-17T20:00:00Z' + - '2023-02-17T21:00:00Z' + - '2023-02-17T22:00:00Z' + - '2023-02-17T23:00:00Z' + - '2023-02-18T00:00:00Z' + - '2023-02-18T01:00:00Z' + - '2023-02-18T02:00:00Z' + - '2023-02-18T03:00:00Z' + - '2023-02-18T04:00:00Z' + - '2023-02-18T05:00:00Z' + - '2023-02-18T06:00:00Z' + - '2023-02-18T07:00:00Z' + - '2023-02-18T08:00:00Z' + - '2023-02-18T09:00:00Z' + - '2023-02-18T10:00:00Z' + - '2023-02-18T11:00:00Z' + - '2023-02-18T12:00:00Z' + - '2023-02-18T13:00:00Z' + - '2023-02-18T14:00:00Z' + - '2023-02-18T15:00:00Z' + - '2023-02-18T16:00:00Z' + - '2023-02-18T17:00:00Z' + - '2023-02-18T18:00:00Z' + - '2023-02-18T19:00:00Z' + - '2023-02-18T20:00:00Z' + - '2023-02-18T21:00:00Z' + - '2023-02-18T22:00:00Z' + - '2023-02-18T23:00:00Z' + - '2023-02-19T00:00:00Z' + - '2023-02-19T01:00:00Z' + - '2023-02-19T02:00:00Z' + - '2023-02-19T03:00:00Z' + - '2023-02-19T04:00:00Z' + - '2023-02-19T05:00:00Z' + - '2023-02-19T06:00:00Z' + - '2023-02-19T07:00:00Z' + - '2023-02-19T08:00:00Z' + - '2023-02-19T09:00:00Z' + - '2023-02-19T10:00:00Z' + - '2023-02-19T11:00:00Z' + - '2023-02-19T12:00:00Z' + - '2023-02-19T13:00:00Z' + - '2023-02-19T14:00:00Z' + - '2023-02-19T15:00:00Z' + - '2023-02-19T16:00:00Z' + - '2023-02-19T17:00:00Z' + - '2023-02-19T18:00:00Z' + - '2023-02-19T19:00:00Z' + - '2023-02-19T20:00:00Z' + - '2023-02-19T21:00:00Z' + - '2023-02-19T22:00:00Z' + - '2023-02-19T23:00:00Z' + - '2023-02-20T00:00:00Z' + - '2023-02-20T01:00:00Z' + - '2023-02-20T02:00:00Z' + - '2023-02-20T03:00:00Z' + - '2023-02-20T04:00:00Z' + - '2023-02-20T05:00:00Z' + - '2023-02-20T06:00:00Z' + - '2023-02-20T07:00:00Z' + - '2023-02-20T08:00:00Z' + - '2023-02-20T09:00:00Z' + - '2023-02-20T10:00:00Z' + - '2023-02-20T11:00:00Z' + - '2023-02-20T12:00:00Z' + - '2023-02-20T13:00:00Z' + - '2023-02-20T14:00:00Z' + - '2023-02-20T15:00:00Z' + - '2023-02-20T16:00:00Z' + - '2023-02-20T17:00:00Z' + - '2023-02-20T18:00:00Z' + - '2023-02-20T19:00:00Z' + - '2023-02-20T20:00:00Z' + - '2023-02-20T21:00:00Z' + - '2023-02-20T22:00:00Z' + - '2023-02-20T23:00:00Z' + - '2023-02-21T00:00:00Z' + - '2023-02-21T01:00:00Z' + - '2023-02-21T02:00:00Z' + - '2023-02-21T03:00:00Z' + - '2023-02-21T04:00:00Z' + - '2023-02-21T05:00:00Z' + - '2023-02-21T06:00:00Z' + - '2023-02-21T07:00:00Z' + - '2023-02-21T08:00:00Z' + - '2023-02-21T09:00:00Z' + - '2023-02-21T10:00:00Z' + - '2023-02-21T11:00:00Z' + - '2023-02-21T12:00:00Z' + - '2023-02-21T13:00:00Z' + - '2023-02-21T14:00:00Z' + - '2023-02-21T15:00:00Z' + - '2023-02-21T16:00:00Z' + - '2023-02-21T17:00:00Z' + - '2023-02-21T18:00:00Z' + - '2023-02-21T19:00:00Z' + - '2023-02-21T20:00:00Z' + - '2023-02-21T21:00:00Z' + - '2023-02-21T22:00:00Z' + - '2023-02-21T23:00:00Z' + - '2023-02-22T00:00:00Z' + - '2023-02-22T01:00:00Z' + - '2023-02-22T02:00:00Z' + - '2023-02-22T03:00:00Z' + - '2023-02-22T04:00:00Z' + - '2023-02-22T05:00:00Z' + - '2023-02-22T06:00:00Z' + - '2023-02-22T07:00:00Z' + - '2023-02-22T08:00:00Z' + - '2023-02-22T09:00:00Z' + - '2023-02-22T10:00:00Z' + - '2023-02-22T11:00:00Z' + - '2023-02-22T12:00:00Z' + - '2023-02-22T13:00:00Z' + - '2023-02-22T14:00:00Z' + - '2023-02-22T15:00:00Z' + - '2023-02-22T16:00:00Z' + - '2023-02-22T17:00:00Z' + - '2023-02-22T18:00:00Z' + - '2023-02-22T19:00:00Z' + - '2023-02-22T20:00:00Z' + - '2023-02-22T21:00:00Z' + - '2023-02-22T22:00:00Z' + - '2023-02-22T23:00:00Z' + - '2023-02-23T00:00:00Z' + - '2023-02-23T01:00:00Z' + - '2023-02-23T02:00:00Z' + - '2023-02-23T03:00:00Z' + - '2023-02-23T04:00:00Z' + - '2023-02-23T05:00:00Z' + - '2023-02-23T06:00:00Z' + - '2023-02-23T07:00:00Z' + - '2023-02-23T08:00:00Z' + - '2023-02-23T09:00:00Z' + - '2023-02-23T10:00:00Z' + - '2023-02-23T11:00:00Z' + - '2023-02-23T12:00:00Z' + - '2023-02-23T13:00:00Z' + - '2023-02-23T14:00:00Z' + - '2023-02-23T15:00:00Z' + - '2023-02-23T16:00:00Z' + - '2023-02-23T17:00:00Z' + - '2023-02-23T18:00:00Z' + - '2023-02-23T19:00:00Z' + - '2023-02-23T20:00:00Z' + - '2023-02-23T21:00:00Z' + - '2023-02-23T22:00:00Z' + - '2023-02-23T23:00:00Z' + - '2023-02-24T00:00:00Z' + - '2023-02-24T01:00:00Z' + - '2023-02-24T02:00:00Z' + - '2023-02-24T03:00:00Z' + - '2023-02-24T04:00:00Z' + - '2023-02-24T05:00:00Z' + - '2023-02-24T06:00:00Z' + - '2023-02-24T07:00:00Z' + - '2023-02-24T08:00:00Z' + - '2023-02-24T09:00:00Z' + - '2023-02-24T10:00:00Z' + - '2023-02-24T11:00:00Z' + - '2023-02-24T12:00:00Z' + - '2023-02-24T13:00:00Z' + - '2023-02-24T14:00:00Z' + - '2023-02-24T15:00:00Z' + - '2023-02-24T16:00:00Z' + - '2023-02-24T17:00:00Z' + - '2023-02-24T18:00:00Z' + - '2023-02-24T19:00:00Z' + - '2023-02-24T20:00:00Z' + - '2023-02-24T21:00:00Z' + - '2023-02-24T22:00:00Z' + - '2023-02-24T23:00:00Z' + - '2023-02-25T00:00:00Z' + - '2023-02-25T01:00:00Z' + - '2023-02-25T02:00:00Z' + - '2023-02-25T03:00:00Z' + - '2023-02-25T04:00:00Z' + - '2023-02-25T05:00:00Z' + - '2023-02-25T06:00:00Z' + - '2023-02-25T07:00:00Z' + - '2023-02-25T08:00:00Z' + - '2023-02-25T09:00:00Z' + - '2023-02-25T10:00:00Z' + - '2023-02-25T11:00:00Z' + - '2023-02-25T12:00:00Z' + - '2023-02-25T13:00:00Z' + - '2023-02-25T14:00:00Z' + - '2023-02-25T15:00:00Z' + - '2023-02-25T16:00:00Z' + - '2023-02-25T17:00:00Z' + - '2023-02-25T18:00:00Z' + - '2023-02-25T19:00:00Z' + - '2023-02-25T20:00:00Z' + - '2023-02-25T21:00:00Z' + - '2023-02-25T22:00:00Z' + - '2023-02-25T23:00:00Z' + - '2023-02-26T00:00:00Z' + - '2023-02-26T01:00:00Z' + - '2023-02-26T02:00:00Z' + - '2023-02-26T03:00:00Z' + - '2023-02-26T04:00:00Z' + - '2023-02-26T05:00:00Z' + - '2023-02-26T06:00:00Z' + - '2023-02-26T07:00:00Z' + - '2023-02-26T08:00:00Z' + - '2023-02-26T09:00:00Z' + - '2023-02-26T10:00:00Z' + - '2023-02-26T11:00:00Z' + - '2023-02-26T12:00:00Z' + - '2023-02-26T13:00:00Z' + - '2023-02-26T14:00:00Z' + - '2023-02-26T15:00:00Z' + - '2023-02-26T16:00:00Z' + - '2023-02-26T17:00:00Z' + - '2023-02-26T18:00:00Z' + - '2023-02-26T19:00:00Z' + - '2023-02-26T20:00:00Z' + - '2023-02-26T21:00:00Z' + - '2023-02-26T22:00:00Z' + - '2023-02-26T23:00:00Z' + - '2023-02-27T00:00:00Z' + - '2023-02-27T01:00:00Z' + - '2023-02-27T02:00:00Z' + - '2023-02-27T03:00:00Z' + - '2023-02-27T04:00:00Z' + - '2023-02-27T05:00:00Z' + - '2023-02-27T06:00:00Z' + - '2023-02-27T07:00:00Z' + - '2023-02-27T08:00:00Z' + - '2023-02-27T09:00:00Z' + - '2023-02-27T10:00:00Z' + - '2023-02-27T11:00:00Z' + - '2023-02-27T12:00:00Z' + - '2023-02-27T13:00:00Z' + - '2023-02-27T14:00:00Z' + - '2023-02-27T15:00:00Z' + - '2023-02-27T16:00:00Z' + - '2023-02-27T17:00:00Z' + - '2023-02-27T18:00:00Z' + - '2023-02-27T19:00:00Z' + - '2023-02-27T20:00:00Z' + - '2023-02-27T21:00:00Z' + - '2023-02-27T22:00:00Z' + - '2023-02-27T23:00:00Z' + - '2023-02-28T00:00:00Z' + - '2023-02-28T01:00:00Z' + - '2023-02-28T02:00:00Z' + - '2023-02-28T03:00:00Z' + - '2023-02-28T04:00:00Z' + - '2023-02-28T05:00:00Z' + - '2023-02-28T06:00:00Z' + - '2023-02-28T07:00:00Z' + - '2023-02-28T08:00:00Z' + - '2023-02-28T09:00:00Z' + - '2023-02-28T10:00:00Z' + - '2023-02-28T11:00:00Z' + - '2023-02-28T12:00:00Z' + - '2023-02-28T13:00:00Z' + - '2023-02-28T14:00:00Z' + - '2023-02-28T15:00:00Z' + - '2023-02-28T16:00:00Z' + - '2023-02-28T17:00:00Z' + - '2023-02-28T18:00:00Z' + - '2023-02-28T19:00:00Z' + - '2023-02-28T20:00:00Z' + - '2023-02-28T21:00:00Z' + - '2023-02-28T22:00:00Z' + - '2023-02-28T23:00:00Z' + - '2023-03-01T00:00:00Z' + - '2023-03-01T01:00:00Z' + - '2023-03-01T02:00:00Z' + - '2023-03-01T03:00:00Z' + - '2023-03-01T04:00:00Z' + - '2023-03-01T05:00:00Z' + - '2023-03-01T06:00:00Z' + - '2023-03-01T07:00:00Z' + - '2023-03-01T08:00:00Z' + - '2023-03-01T09:00:00Z' + - '2023-03-01T10:00:00Z' + - '2023-03-01T11:00:00Z' + - '2023-03-01T12:00:00Z' + - '2023-03-01T13:00:00Z' + - '2023-03-01T14:00:00Z' + - '2023-03-01T15:00:00Z' + - '2023-03-01T16:00:00Z' + - '2023-03-01T17:00:00Z' + - '2023-03-01T18:00:00Z' + - '2023-03-01T19:00:00Z' + - '2023-03-01T20:00:00Z' + - '2023-03-01T21:00:00Z' + - '2023-03-01T22:00:00Z' + - '2023-03-01T23:00:00Z' + - '2023-03-02T00:00:00Z' + - '2023-03-02T01:00:00Z' + - '2023-03-02T02:00:00Z' + - '2023-03-02T03:00:00Z' + - '2023-03-02T04:00:00Z' + - '2023-03-02T05:00:00Z' + - '2023-03-02T06:00:00Z' + - '2023-03-02T07:00:00Z' + - '2023-03-02T08:00:00Z' + - '2023-03-02T09:00:00Z' + - '2023-03-02T10:00:00Z' + - '2023-03-02T11:00:00Z' + - '2023-03-02T12:00:00Z' + - '2023-03-02T13:00:00Z' + - '2023-03-02T14:00:00Z' + - '2023-03-02T15:00:00Z' + - '2023-03-02T16:00:00Z' + - '2023-03-02T17:00:00Z' + - '2023-03-02T18:00:00Z' + - '2023-03-02T19:00:00Z' + - '2023-03-02T20:00:00Z' + - '2023-03-02T21:00:00Z' + - '2023-03-02T22:00:00Z' + - '2023-03-02T23:00:00Z' + - '2023-03-03T00:00:00Z' + - '2023-03-03T01:00:00Z' + - '2023-03-03T02:00:00Z' + - '2023-03-03T03:00:00Z' + - '2023-03-03T04:00:00Z' + - '2023-03-03T05:00:00Z' + - '2023-03-03T06:00:00Z' + - '2023-03-03T07:00:00Z' + - '2023-03-03T08:00:00Z' + - '2023-03-03T09:00:00Z' + - '2023-03-03T10:00:00Z' + - '2023-03-03T11:00:00Z' + - '2023-03-03T12:00:00Z' + - '2023-03-03T13:00:00Z' + - '2023-03-03T14:00:00Z' + - '2023-03-03T15:00:00Z' + - '2023-03-03T16:00:00Z' + - '2023-03-03T17:00:00Z' + - '2023-03-03T18:00:00Z' + - '2023-03-03T19:00:00Z' + - '2023-03-03T20:00:00Z' + - '2023-03-03T21:00:00Z' + - '2023-03-03T22:00:00Z' + - '2023-03-03T23:00:00Z' + - '2023-03-04T00:00:00Z' + - '2023-03-04T01:00:00Z' + - '2023-03-04T02:00:00Z' + - '2023-03-04T03:00:00Z' + - '2023-03-04T04:00:00Z' + - '2023-03-04T05:00:00Z' + - '2023-03-04T06:00:00Z' + - '2023-03-04T07:00:00Z' + - '2023-03-04T08:00:00Z' + - '2023-03-04T09:00:00Z' + - '2023-03-04T10:00:00Z' + - '2023-03-04T11:00:00Z' + - '2023-03-04T12:00:00Z' + - '2023-03-04T13:00:00Z' + - '2023-03-04T14:00:00Z' + - '2023-03-04T15:00:00Z' + - '2023-03-04T16:00:00Z' + - '2023-03-04T17:00:00Z' + - '2023-03-04T18:00:00Z' + - '2023-03-04T19:00:00Z' + - '2023-03-04T20:00:00Z' + - '2023-03-04T21:00:00Z' + - '2023-03-04T22:00:00Z' + - '2023-03-04T23:00:00Z' + - '2023-03-05T00:00:00Z' + - '2023-03-05T01:00:00Z' + - '2023-03-05T02:00:00Z' + - '2023-03-05T03:00:00Z' + - '2023-03-05T04:00:00Z' + - '2023-03-05T05:00:00Z' + - '2023-03-05T06:00:00Z' + - '2023-03-05T07:00:00Z' + - '2023-03-05T08:00:00Z' + - '2023-03-05T09:00:00Z' + - '2023-03-05T10:00:00Z' + - '2023-03-05T11:00:00Z' + - '2023-03-05T12:00:00Z' + - '2023-03-05T13:00:00Z' + - '2023-03-05T14:00:00Z' + - '2023-03-05T15:00:00Z' + - '2023-03-05T16:00:00Z' + - '2023-03-05T17:00:00Z' + - '2023-03-05T18:00:00Z' + - '2023-03-05T19:00:00Z' + - '2023-03-05T20:00:00Z' + - '2023-03-05T21:00:00Z' + - '2023-03-05T22:00:00Z' + - '2023-03-05T23:00:00Z' + - '2023-03-06T00:00:00Z' + - '2023-03-06T01:00:00Z' + - '2023-03-06T02:00:00Z' + - '2023-03-06T03:00:00Z' + - '2023-03-06T04:00:00Z' + - '2023-03-06T05:00:00Z' + - '2023-03-06T06:00:00Z' + - '2023-03-06T07:00:00Z' + - '2023-03-06T08:00:00Z' + - '2023-03-06T09:00:00Z' + - '2023-03-06T10:00:00Z' + - '2023-03-06T11:00:00Z' + - '2023-03-06T12:00:00Z' + - '2023-03-06T13:00:00Z' + - '2023-03-06T14:00:00Z' + - '2023-03-06T15:00:00Z' + - '2023-03-06T16:00:00Z' + - '2023-03-06T17:00:00Z' + - '2023-03-06T18:00:00Z' + - '2023-03-06T19:00:00Z' + - '2023-03-06T20:00:00Z' + - '2023-03-06T21:00:00Z' + - '2023-03-06T22:00:00Z' + - '2023-03-06T23:00:00Z' + - '2023-03-07T00:00:00Z' + - '2023-03-07T01:00:00Z' + - '2023-03-07T02:00:00Z' + - '2023-03-07T03:00:00Z' + - '2023-03-07T04:00:00Z' + - '2023-03-07T05:00:00Z' + - '2023-03-07T06:00:00Z' + - '2023-03-07T07:00:00Z' + - '2023-03-07T08:00:00Z' + - '2023-03-07T09:00:00Z' + - '2023-03-07T10:00:00Z' + - '2023-03-07T11:00:00Z' + - '2023-03-07T12:00:00Z' + - '2023-03-07T13:00:00Z' + - '2023-03-07T14:00:00Z' + - '2023-03-07T15:00:00Z' + - '2023-03-07T16:00:00Z' + - '2023-03-07T17:00:00Z' + - '2023-03-07T18:00:00Z' + - '2023-03-07T19:00:00Z' + - '2023-03-07T20:00:00Z' + - '2023-03-07T21:00:00Z' + - '2023-03-07T22:00:00Z' + - '2023-03-07T23:00:00Z' + - '2023-03-08T00:00:00Z' + - '2023-03-08T01:00:00Z' + - '2023-03-08T02:00:00Z' + - '2023-03-08T03:00:00Z' + - '2023-03-08T04:00:00Z' + - '2023-03-08T05:00:00Z' + - '2023-03-08T06:00:00Z' + - '2023-03-08T07:00:00Z' + - '2023-03-08T08:00:00Z' + - '2023-03-08T09:00:00Z' + - '2023-03-08T10:00:00Z' + - '2023-03-08T11:00:00Z' + - '2023-03-08T12:00:00Z' + - '2023-03-08T13:00:00Z' + - '2023-03-08T14:00:00Z' + - '2023-03-08T15:00:00Z' + - '2023-03-08T16:00:00Z' + - '2023-03-08T17:00:00Z' + - '2023-03-08T18:00:00Z' + - '2023-03-08T19:00:00Z' + - '2023-03-08T20:00:00Z' + - '2023-03-08T21:00:00Z' + - '2023-03-08T22:00:00Z' + - '2023-03-08T23:00:00Z' + - '2023-03-09T00:00:00Z' + - '2023-03-09T01:00:00Z' + - '2023-03-09T02:00:00Z' + - '2023-03-09T03:00:00Z' + - '2023-03-09T04:00:00Z' + - '2023-03-09T05:00:00Z' + - '2023-03-09T06:00:00Z' + - '2023-03-09T07:00:00Z' + - '2023-03-09T08:00:00Z' + - '2023-03-09T09:00:00Z' + - '2023-03-09T10:00:00Z' + - '2023-03-09T11:00:00Z' + - '2023-03-09T12:00:00Z' + - '2023-03-09T13:00:00Z' + - '2023-03-09T14:00:00Z' + - '2023-03-09T15:00:00Z' + - '2023-03-09T16:00:00Z' + - '2023-03-09T17:00:00Z' + - '2023-03-09T18:00:00Z' + - '2023-03-09T19:00:00Z' + - '2023-03-09T20:00:00Z' + - '2023-03-09T21:00:00Z' + - '2023-03-09T22:00:00Z' + - '2023-03-09T23:00:00Z' + - '2023-03-10T00:00:00Z' + - '2023-03-10T01:00:00Z' + - '2023-03-10T02:00:00Z' + - '2023-03-10T03:00:00Z' + - '2023-03-10T04:00:00Z' + - '2023-03-10T05:00:00Z' + - '2023-03-10T06:00:00Z' + - '2023-03-10T07:00:00Z' + - '2023-03-10T08:00:00Z' + - '2023-03-10T09:00:00Z' + - '2023-03-10T10:00:00Z' + - '2023-03-10T11:00:00Z' + - '2023-03-10T12:00:00Z' + - '2023-03-10T13:00:00Z' + - '2023-03-10T14:00:00Z' + - '2023-03-10T15:00:00Z' + - '2023-03-10T16:00:00Z' + - '2023-03-10T17:00:00Z' + - '2023-03-10T18:00:00Z' + - '2023-03-10T19:00:00Z' + - '2023-03-10T20:00:00Z' + - '2023-03-10T21:00:00Z' + - '2023-03-10T22:00:00Z' + - '2023-03-10T23:00:00Z' + - '2023-03-11T00:00:00Z' + - '2023-03-11T01:00:00Z' + - '2023-03-11T02:00:00Z' + - '2023-03-11T03:00:00Z' + - '2023-03-11T04:00:00Z' + - '2023-03-11T05:00:00Z' + - '2023-03-11T06:00:00Z' + - '2023-03-11T07:00:00Z' + - '2023-03-11T08:00:00Z' + - '2023-03-11T09:00:00Z' + - '2023-03-11T10:00:00Z' + - '2023-03-11T11:00:00Z' + - '2023-03-11T12:00:00Z' + - '2023-03-11T13:00:00Z' + - '2023-03-11T14:00:00Z' + - '2023-03-11T15:00:00Z' + - '2023-03-11T16:00:00Z' + - '2023-03-11T17:00:00Z' + - '2023-03-11T18:00:00Z' + - '2023-03-11T19:00:00Z' + - '2023-03-11T20:00:00Z' + - '2023-03-11T21:00:00Z' + - '2023-03-11T22:00:00Z' + - '2023-03-11T23:00:00Z' + - '2023-03-12T00:00:00Z' + - '2023-03-12T01:00:00Z' + - '2023-03-12T02:00:00Z' + - '2023-03-12T03:00:00Z' + - '2023-03-12T04:00:00Z' + - '2023-03-12T05:00:00Z' + - '2023-03-12T06:00:00Z' + - '2023-03-12T07:00:00Z' + - '2023-03-12T08:00:00Z' + - '2023-03-12T09:00:00Z' + - '2023-03-12T10:00:00Z' + - '2023-03-12T11:00:00Z' + - '2023-03-12T12:00:00Z' + - '2023-03-12T13:00:00Z' + - '2023-03-12T14:00:00Z' + - '2023-03-12T15:00:00Z' + - '2023-03-12T16:00:00Z' + - '2023-03-12T17:00:00Z' + - '2023-03-12T18:00:00Z' + - '2023-03-12T19:00:00Z' + - '2023-03-12T20:00:00Z' + - '2023-03-12T21:00:00Z' + - '2023-03-12T22:00:00Z' + - '2023-03-12T23:00:00Z' + - '2023-03-13T00:00:00Z' + - '2023-03-13T01:00:00Z' + - '2023-03-13T02:00:00Z' + - '2023-03-13T03:00:00Z' + - '2023-03-13T04:00:00Z' + - '2023-03-13T05:00:00Z' + - '2023-03-13T06:00:00Z' + - '2023-03-13T07:00:00Z' + - '2023-03-13T08:00:00Z' + - '2023-03-13T09:00:00Z' + - '2023-03-13T10:00:00Z' + - '2023-03-13T11:00:00Z' + - '2023-03-13T12:00:00Z' + - '2023-03-13T13:00:00Z' + - '2023-03-13T14:00:00Z' + - '2023-03-13T15:00:00Z' + - '2023-03-13T16:00:00Z' + - '2023-03-13T17:00:00Z' + - '2023-03-13T18:00:00Z' + - '2023-03-13T19:00:00Z' + - '2023-03-13T20:00:00Z' + - '2023-03-13T21:00:00Z' + - '2023-03-13T22:00:00Z' + - '2023-03-13T23:00:00Z' + - '2023-03-14T00:00:00Z' + - '2023-03-14T01:00:00Z' + - '2023-03-14T02:00:00Z' + - '2023-03-14T03:00:00Z' + - '2023-03-14T04:00:00Z' + - '2023-03-14T05:00:00Z' + - '2023-03-14T06:00:00Z' + - '2023-03-14T07:00:00Z' + - '2023-03-14T08:00:00Z' + - '2023-03-14T09:00:00Z' + - '2023-03-14T10:00:00Z' + - '2023-03-14T11:00:00Z' + - '2023-03-14T12:00:00Z' + - '2023-03-14T13:00:00Z' + - '2023-03-14T14:00:00Z' + - '2023-03-14T15:00:00Z' + - '2023-03-14T16:00:00Z' + - '2023-03-14T17:00:00Z' + - '2023-03-14T18:00:00Z' + - '2023-03-14T19:00:00Z' + - '2023-03-14T20:00:00Z' + - '2023-03-14T21:00:00Z' + - '2023-03-14T22:00:00Z' + - '2023-03-14T23:00:00Z' + - '2023-03-15T00:00:00Z' + - '2023-03-15T01:00:00Z' + - '2023-03-15T02:00:00Z' + - '2023-03-15T03:00:00Z' + - '2023-03-15T04:00:00Z' + - '2023-03-15T05:00:00Z' + - '2023-03-15T06:00:00Z' + - '2023-03-15T07:00:00Z' + - '2023-03-15T08:00:00Z' + - '2023-03-15T09:00:00Z' + - '2023-03-15T10:00:00Z' + - '2023-03-15T11:00:00Z' + - '2023-03-15T12:00:00Z' + - '2023-03-15T13:00:00Z' + - '2023-03-15T14:00:00Z' + - '2023-03-15T15:00:00Z' + - '2023-03-15T16:00:00Z' + - '2023-03-15T17:00:00Z' + - '2023-03-15T18:00:00Z' + - '2023-03-15T19:00:00Z' + - '2023-03-15T20:00:00Z' + - '2023-03-15T21:00:00Z' + - '2023-03-15T22:00:00Z' + - '2023-03-15T23:00:00Z' + - '2023-03-16T00:00:00Z' + - '2023-03-16T01:00:00Z' + - '2023-03-16T02:00:00Z' + - '2023-03-16T03:00:00Z' + - '2023-03-16T04:00:00Z' + - '2023-03-16T05:00:00Z' + - '2023-03-16T06:00:00Z' + - '2023-03-16T07:00:00Z' + - '2023-03-16T08:00:00Z' + - '2023-03-16T09:00:00Z' + - '2023-03-16T10:00:00Z' + - '2023-03-16T11:00:00Z' + - '2023-03-16T12:00:00Z' + - '2023-03-16T13:00:00Z' + - '2023-03-16T14:00:00Z' + - '2023-03-16T15:00:00Z' + - '2023-03-16T16:00:00Z' + - '2023-03-16T17:00:00Z' + - '2023-03-16T18:00:00Z' + - '2023-03-16T19:00:00Z' + - '2023-03-16T20:00:00Z' + - '2023-03-16T21:00:00Z' + - '2023-03-16T22:00:00Z' + - '2023-03-16T23:00:00Z' + - '2023-03-17T00:00:00Z' + - '2023-03-17T01:00:00Z' + - '2023-03-17T02:00:00Z' + - '2023-03-17T03:00:00Z' + - '2023-03-17T04:00:00Z' + - '2023-03-17T05:00:00Z' + - '2023-03-17T06:00:00Z' + - '2023-03-17T07:00:00Z' + - '2023-03-17T08:00:00Z' + - '2023-03-17T09:00:00Z' + - '2023-03-17T10:00:00Z' + - '2023-03-17T11:00:00Z' + - '2023-03-17T12:00:00Z' + - '2023-03-17T13:00:00Z' + - '2023-03-17T14:00:00Z' + - '2023-03-17T15:00:00Z' + - '2023-03-17T16:00:00Z' + - '2023-03-17T17:00:00Z' + - '2023-03-17T18:00:00Z' + - '2023-03-17T19:00:00Z' + - '2023-03-17T20:00:00Z' + - '2023-03-17T21:00:00Z' + - '2023-03-17T22:00:00Z' + - '2023-03-17T23:00:00Z' + - '2023-03-18T00:00:00Z' + - '2023-03-18T01:00:00Z' + - '2023-03-18T02:00:00Z' + - '2023-03-18T03:00:00Z' + - '2023-03-18T04:00:00Z' + - '2023-03-18T05:00:00Z' + - '2023-03-18T06:00:00Z' + - '2023-03-18T07:00:00Z' + - '2023-03-18T08:00:00Z' + - '2023-03-18T09:00:00Z' + - '2023-03-18T10:00:00Z' + - '2023-03-18T11:00:00Z' + - '2023-03-18T12:00:00Z' + - '2023-03-18T13:00:00Z' + - '2023-03-18T14:00:00Z' + - '2023-03-18T15:00:00Z' + - '2023-03-18T16:00:00Z' + - '2023-03-18T17:00:00Z' + - '2023-03-18T18:00:00Z' + - '2023-03-18T19:00:00Z' + - '2023-03-18T20:00:00Z' + - '2023-03-18T21:00:00Z' + - '2023-03-18T22:00:00Z' + - '2023-03-18T23:00:00Z' + - '2023-03-19T00:00:00Z' + - '2023-03-19T01:00:00Z' + - '2023-03-19T02:00:00Z' + - '2023-03-19T03:00:00Z' + - '2023-03-19T04:00:00Z' + - '2023-03-19T05:00:00Z' + - '2023-03-19T06:00:00Z' + - '2023-03-19T07:00:00Z' + - '2023-03-19T08:00:00Z' + - '2023-03-19T09:00:00Z' + - '2023-03-19T10:00:00Z' + - '2023-03-19T11:00:00Z' + - '2023-03-19T12:00:00Z' + - '2023-03-19T13:00:00Z' + - '2023-03-19T14:00:00Z' + - '2023-03-19T15:00:00Z' + - '2023-03-19T16:00:00Z' + - '2023-03-19T17:00:00Z' + - '2023-03-19T18:00:00Z' + - '2023-03-19T19:00:00Z' + - '2023-03-19T20:00:00Z' + - '2023-03-19T21:00:00Z' + - '2023-03-19T22:00:00Z' + - '2023-03-19T23:00:00Z' + - '2023-03-20T00:00:00Z' + - '2023-03-20T01:00:00Z' + - '2023-03-20T02:00:00Z' + - '2023-03-20T03:00:00Z' + - '2023-03-20T04:00:00Z' + - '2023-03-20T05:00:00Z' + - '2023-03-20T06:00:00Z' + - '2023-03-20T07:00:00Z' + - '2023-03-20T08:00:00Z' + - '2023-03-20T09:00:00Z' + - '2023-03-20T10:00:00Z' + - '2023-03-20T11:00:00Z' + - '2023-03-20T12:00:00Z' + - '2023-03-20T13:00:00Z' + - '2023-03-20T14:00:00Z' + - '2023-03-20T15:00:00Z' + - '2023-03-20T16:00:00Z' + - '2023-03-20T17:00:00Z' + - '2023-03-20T18:00:00Z' + - '2023-03-20T19:00:00Z' + - '2023-03-20T20:00:00Z' + - '2023-03-20T21:00:00Z' + - '2023-03-20T22:00:00Z' + - '2023-03-20T23:00:00Z' + - '2023-03-21T00:00:00Z' + - '2023-03-21T01:00:00Z' + - '2023-03-21T02:00:00Z' + - '2023-03-21T03:00:00Z' + - '2023-03-21T04:00:00Z' + - '2023-03-21T05:00:00Z' + - '2023-03-21T06:00:00Z' + - '2023-03-21T07:00:00Z' + - '2023-03-21T08:00:00Z' + - '2023-03-21T09:00:00Z' + - '2023-03-21T10:00:00Z' + - '2023-03-21T11:00:00Z' + - '2023-03-21T12:00:00Z' + - '2023-03-21T13:00:00Z' + - '2023-03-21T14:00:00Z' + - '2023-03-21T15:00:00Z' + - '2023-03-21T16:00:00Z' + - '2023-03-21T17:00:00Z' + - '2023-03-21T18:00:00Z' + - '2023-03-21T19:00:00Z' + - '2023-03-21T20:00:00Z' + - '2023-03-21T21:00:00Z' + - '2023-03-21T22:00:00Z' + - '2023-03-21T23:00:00Z' + - '2023-03-22T00:00:00Z' + - '2023-03-22T01:00:00Z' + - '2023-03-22T02:00:00Z' + - '2023-03-22T03:00:00Z' + - '2023-03-22T04:00:00Z' + - '2023-03-22T05:00:00Z' + - '2023-03-22T06:00:00Z' + - '2023-03-22T07:00:00Z' + - '2023-03-22T08:00:00Z' + - '2023-03-22T09:00:00Z' + - '2023-03-22T10:00:00Z' + - '2023-03-22T11:00:00Z' + - '2023-03-22T12:00:00Z' + - '2023-03-22T13:00:00Z' + - '2023-03-22T14:00:00Z' + - '2023-03-22T15:00:00Z' + - '2023-03-22T16:00:00Z' + - '2023-03-22T17:00:00Z' + - '2023-03-22T18:00:00Z' + - '2023-03-22T19:00:00Z' + - '2023-03-22T20:00:00Z' + - '2023-03-22T21:00:00Z' + - '2023-03-22T22:00:00Z' + - '2023-03-22T23:00:00Z' + - '2023-03-23T00:00:00Z' + - '2023-03-23T01:00:00Z' + - '2023-03-23T02:00:00Z' + - '2023-03-23T03:00:00Z' + - '2023-03-23T04:00:00Z' + - '2023-03-23T05:00:00Z' + - '2023-03-23T06:00:00Z' + - '2023-03-23T07:00:00Z' + - '2023-03-23T08:00:00Z' + - '2023-03-23T09:00:00Z' + - '2023-03-23T10:00:00Z' + - '2023-03-23T11:00:00Z' + - '2023-03-23T12:00:00Z' + - '2023-03-23T13:00:00Z' + - '2023-03-23T14:00:00Z' + - '2023-03-23T15:00:00Z' + - '2023-03-23T16:00:00Z' + - '2023-03-23T17:00:00Z' + - '2023-03-23T18:00:00Z' + - '2023-03-23T19:00:00Z' + - '2023-03-23T20:00:00Z' + - '2023-03-23T21:00:00Z' + - '2023-03-23T22:00:00Z' + - '2023-03-23T23:00:00Z' + - '2023-03-24T00:00:00Z' + - '2023-03-24T01:00:00Z' + - '2023-03-24T02:00:00Z' + - '2023-03-24T03:00:00Z' + - '2023-03-24T04:00:00Z' + - '2023-03-24T05:00:00Z' + - '2023-03-24T06:00:00Z' + - '2023-03-24T07:00:00Z' + - '2023-03-24T08:00:00Z' + - '2023-03-24T09:00:00Z' + - '2023-03-24T10:00:00Z' + - '2023-03-24T11:00:00Z' + - '2023-03-24T12:00:00Z' + - '2023-03-24T13:00:00Z' + - '2023-03-24T14:00:00Z' + - '2023-03-24T15:00:00Z' + - '2023-03-24T16:00:00Z' + - '2023-03-24T17:00:00Z' + - '2023-03-24T18:00:00Z' + - '2023-03-24T19:00:00Z' + - '2023-03-24T20:00:00Z' + - '2023-03-24T21:00:00Z' + - '2023-03-24T22:00:00Z' + - '2023-03-24T23:00:00Z' + - '2023-03-25T00:00:00Z' + - '2023-03-25T01:00:00Z' + - '2023-03-25T02:00:00Z' + - '2023-03-25T03:00:00Z' + - '2023-03-25T04:00:00Z' + - '2023-03-25T05:00:00Z' + - '2023-03-25T06:00:00Z' + - '2023-03-25T07:00:00Z' + - '2023-03-25T08:00:00Z' + - '2023-03-25T09:00:00Z' + - '2023-03-25T10:00:00Z' + - '2023-03-25T11:00:00Z' + - '2023-03-25T12:00:00Z' + - '2023-03-25T13:00:00Z' + - '2023-03-25T14:00:00Z' + - '2023-03-25T15:00:00Z' + - '2023-03-25T16:00:00Z' + - '2023-03-25T17:00:00Z' + - '2023-03-25T18:00:00Z' + - '2023-03-25T19:00:00Z' + - '2023-03-25T20:00:00Z' + - '2023-03-25T21:00:00Z' + - '2023-03-25T22:00:00Z' + - '2023-03-25T23:00:00Z' + - '2023-03-26T00:00:00Z' + - '2023-03-26T01:00:00Z' + - '2023-03-26T02:00:00Z' + - '2023-03-26T03:00:00Z' + - '2023-03-26T04:00:00Z' + - '2023-03-26T05:00:00Z' + - '2023-03-26T06:00:00Z' + - '2023-03-26T07:00:00Z' + - '2023-03-26T08:00:00Z' + - '2023-03-26T09:00:00Z' + - '2023-03-26T10:00:00Z' + - '2023-03-26T11:00:00Z' + - '2023-03-26T12:00:00Z' + - '2023-03-26T13:00:00Z' + - '2023-03-26T14:00:00Z' + - '2023-03-26T15:00:00Z' + - '2023-03-26T16:00:00Z' + - '2023-03-26T17:00:00Z' + - '2023-03-26T18:00:00Z' + - '2023-03-26T19:00:00Z' + - '2023-03-26T20:00:00Z' + - '2023-03-26T21:00:00Z' + - '2023-03-26T22:00:00Z' + - '2023-03-26T23:00:00Z' + - '2023-03-27T00:00:00Z' + - '2023-03-27T01:00:00Z' + - '2023-03-27T02:00:00Z' + - '2023-03-27T03:00:00Z' + - '2023-03-27T04:00:00Z' + - '2023-03-27T05:00:00Z' + - '2023-03-27T06:00:00Z' + - '2023-03-27T07:00:00Z' + - '2023-03-27T08:00:00Z' + - '2023-03-27T09:00:00Z' + - '2023-03-27T10:00:00Z' + - '2023-03-27T11:00:00Z' + - '2023-03-27T12:00:00Z' + - '2023-03-27T13:00:00Z' + - '2023-03-27T14:00:00Z' + - '2023-03-27T15:00:00Z' + - '2023-03-27T16:00:00Z' + - '2023-03-27T17:00:00Z' + - '2023-03-27T18:00:00Z' + - '2023-03-27T19:00:00Z' + - '2023-03-27T20:00:00Z' + - '2023-03-27T21:00:00Z' + - '2023-03-27T22:00:00Z' + - '2023-03-27T23:00:00Z' + - '2023-03-28T00:00:00Z' + - '2023-03-28T01:00:00Z' + - '2023-03-28T02:00:00Z' + - '2023-03-28T03:00:00Z' + - '2023-03-28T04:00:00Z' + - '2023-03-28T05:00:00Z' + - '2023-03-28T06:00:00Z' + - '2023-03-28T07:00:00Z' + - '2023-03-28T08:00:00Z' + - '2023-03-28T09:00:00Z' + - '2023-03-28T10:00:00Z' + - '2023-03-28T11:00:00Z' + - '2023-03-28T12:00:00Z' + - '2023-03-28T13:00:00Z' + - '2023-03-28T14:00:00Z' + - '2023-03-28T15:00:00Z' + - '2023-03-28T16:00:00Z' + - '2023-03-28T17:00:00Z' + - '2023-03-28T18:00:00Z' + - '2023-03-28T19:00:00Z' + - '2023-03-28T20:00:00Z' + - '2023-03-28T21:00:00Z' + - '2023-03-28T22:00:00Z' + - '2023-03-28T23:00:00Z' + - '2023-03-29T00:00:00Z' + - '2023-03-29T01:00:00Z' + - '2023-03-29T02:00:00Z' + - '2023-03-29T03:00:00Z' + - '2023-03-29T04:00:00Z' + - '2023-03-29T05:00:00Z' + - '2023-03-29T06:00:00Z' + - '2023-03-29T07:00:00Z' + - '2023-03-29T08:00:00Z' + - '2023-03-29T09:00:00Z' + - '2023-03-29T10:00:00Z' + - '2023-03-29T11:00:00Z' + - '2023-03-29T12:00:00Z' + - '2023-03-29T13:00:00Z' + - '2023-03-29T14:00:00Z' + - '2023-03-29T15:00:00Z' + - '2023-03-29T16:00:00Z' + - '2023-03-29T17:00:00Z' + - '2023-03-29T18:00:00Z' + - '2023-03-29T19:00:00Z' + - '2023-03-29T20:00:00Z' + - '2023-03-29T21:00:00Z' + - '2023-03-29T22:00:00Z' + - '2023-03-29T23:00:00Z' + - '2023-03-30T00:00:00Z' + - '2023-03-30T01:00:00Z' + - '2023-03-30T02:00:00Z' + - '2023-03-30T03:00:00Z' + - '2023-03-30T04:00:00Z' + - '2023-03-30T05:00:00Z' + - '2023-03-30T06:00:00Z' + - '2023-03-30T07:00:00Z' + - '2023-03-30T08:00:00Z' + - '2023-03-30T09:00:00Z' + - '2023-03-30T10:00:00Z' + - '2023-03-30T11:00:00Z' + - '2023-03-30T12:00:00Z' + - '2023-03-30T13:00:00Z' + - '2023-03-30T14:00:00Z' + - '2023-03-30T15:00:00Z' + - '2023-03-30T16:00:00Z' + - '2023-03-30T17:00:00Z' + - '2023-03-30T18:00:00Z' + - '2023-03-30T19:00:00Z' + - '2023-03-30T20:00:00Z' + - '2023-03-30T21:00:00Z' + - '2023-03-30T22:00:00Z' + - '2023-03-30T23:00:00Z' + - '2023-03-31T00:00:00Z' + - '2023-03-31T01:00:00Z' + - '2023-03-31T02:00:00Z' + - '2023-03-31T03:00:00Z' + - '2023-03-31T04:00:00Z' + - '2023-03-31T05:00:00Z' + - '2023-03-31T06:00:00Z' + - '2023-03-31T07:00:00Z' + - '2023-03-31T08:00:00Z' + - '2023-03-31T09:00:00Z' + - '2023-03-31T10:00:00Z' + - '2023-03-31T11:00:00Z' + - '2023-03-31T12:00:00Z' + - '2023-03-31T13:00:00Z' + - '2023-03-31T14:00:00Z' + - '2023-03-31T15:00:00Z' + - '2023-03-31T16:00:00Z' + - '2023-03-31T17:00:00Z' + - '2023-03-31T18:00:00Z' + - '2023-03-31T19:00:00Z' + - '2023-03-31T20:00:00Z' + - '2023-03-31T21:00:00Z' + - '2023-03-31T22:00:00Z' + - '2023-03-31T23:00:00Z' + - '2023-04-01T00:00:00Z' + - '2023-04-01T01:00:00Z' + - '2023-04-01T02:00:00Z' + - '2023-04-01T03:00:00Z' + - '2023-04-01T04:00:00Z' + - '2023-04-01T05:00:00Z' + - '2023-04-01T06:00:00Z' + - '2023-04-01T07:00:00Z' + - '2023-04-01T08:00:00Z' + - '2023-04-01T09:00:00Z' + - '2023-04-01T10:00:00Z' + - '2023-04-01T11:00:00Z' + - '2023-04-01T12:00:00Z' + - '2023-04-01T13:00:00Z' + - '2023-04-01T14:00:00Z' + - '2023-04-01T15:00:00Z' + - '2023-04-01T16:00:00Z' + - '2023-04-01T17:00:00Z' + - '2023-04-01T18:00:00Z' + - '2023-04-01T19:00:00Z' + - '2023-04-01T20:00:00Z' + - '2023-04-01T21:00:00Z' + - '2023-04-01T22:00:00Z' + - '2023-04-01T23:00:00Z' + - '2023-04-02T00:00:00Z' + - '2023-04-02T01:00:00Z' + - '2023-04-02T02:00:00Z' + - '2023-04-02T03:00:00Z' + - '2023-04-02T04:00:00Z' + - '2023-04-02T05:00:00Z' + - '2023-04-02T06:00:00Z' + - '2023-04-02T07:00:00Z' + - '2023-04-02T08:00:00Z' + - '2023-04-02T09:00:00Z' + - '2023-04-02T10:00:00Z' + - '2023-04-02T11:00:00Z' + - '2023-04-02T12:00:00Z' + - '2023-04-02T13:00:00Z' + - '2023-04-02T14:00:00Z' + - '2023-04-02T15:00:00Z' + - '2023-04-02T16:00:00Z' + - '2023-04-02T17:00:00Z' + - '2023-04-02T18:00:00Z' + - '2023-04-02T19:00:00Z' + - '2023-04-02T20:00:00Z' + - '2023-04-02T21:00:00Z' + - '2023-04-02T22:00:00Z' + - '2023-04-02T23:00:00Z' + - '2023-04-03T00:00:00Z' + - '2023-04-03T01:00:00Z' + - '2023-04-03T02:00:00Z' + - '2023-04-03T03:00:00Z' + - '2023-04-03T04:00:00Z' + - '2023-04-03T05:00:00Z' + - '2023-04-03T06:00:00Z' + - '2023-04-03T07:00:00Z' + - '2023-04-03T08:00:00Z' + - '2023-04-03T09:00:00Z' + - '2023-04-03T10:00:00Z' + - '2023-04-03T11:00:00Z' + - '2023-04-03T12:00:00Z' + - '2023-04-03T13:00:00Z' + - '2023-04-03T14:00:00Z' + - '2023-04-03T15:00:00Z' + - '2023-04-03T16:00:00Z' + - '2023-04-03T17:00:00Z' + - '2023-04-03T18:00:00Z' + - '2023-04-03T19:00:00Z' + - '2023-04-03T20:00:00Z' + - '2023-04-03T21:00:00Z' + - '2023-04-03T22:00:00Z' + - '2023-04-03T23:00:00Z' + - '2023-04-04T00:00:00Z' + - '2023-04-04T01:00:00Z' + - '2023-04-04T02:00:00Z' + - '2023-04-04T03:00:00Z' + - '2023-04-04T04:00:00Z' + - '2023-04-04T05:00:00Z' + - '2023-04-04T06:00:00Z' + - '2023-04-04T07:00:00Z' + - '2023-04-04T08:00:00Z' + - '2023-04-04T09:00:00Z' + - '2023-04-04T10:00:00Z' + - '2023-04-04T11:00:00Z' + - '2023-04-04T12:00:00Z' + - '2023-04-04T13:00:00Z' + - '2023-04-04T14:00:00Z' + - '2023-04-04T15:00:00Z' + - '2023-04-04T16:00:00Z' + - '2023-04-04T17:00:00Z' + - '2023-04-04T18:00:00Z' + - '2023-04-04T19:00:00Z' + - '2023-04-04T20:00:00Z' + - '2023-04-04T21:00:00Z' + - '2023-04-04T22:00:00Z' + - '2023-04-04T23:00:00Z' + - '2023-04-05T00:00:00Z' + - '2023-04-05T01:00:00Z' + - '2023-04-05T02:00:00Z' + - '2023-04-05T03:00:00Z' + - '2023-04-05T04:00:00Z' + - '2023-04-05T05:00:00Z' + - '2023-04-05T06:00:00Z' + - '2023-04-05T07:00:00Z' + - '2023-04-05T08:00:00Z' + - '2023-04-05T09:00:00Z' + - '2023-04-05T10:00:00Z' + - '2023-04-05T11:00:00Z' + - '2023-04-05T12:00:00Z' + - '2023-04-05T13:00:00Z' + - '2023-04-05T14:00:00Z' + - '2023-04-05T15:00:00Z' + - '2023-04-05T16:00:00Z' + - '2023-04-05T17:00:00Z' + - '2023-04-05T18:00:00Z' + - '2023-04-05T19:00:00Z' + - '2023-04-05T20:00:00Z' + - '2023-04-05T21:00:00Z' + - '2023-04-05T22:00:00Z' + - '2023-04-05T23:00:00Z' + - '2023-04-06T00:00:00Z' + - '2023-04-06T01:00:00Z' + - '2023-04-06T02:00:00Z' + - '2023-04-06T03:00:00Z' + - '2023-04-06T04:00:00Z' + - '2023-04-06T05:00:00Z' + - '2023-04-06T06:00:00Z' + - '2023-04-06T07:00:00Z' + - '2023-04-06T08:00:00Z' + - '2023-04-06T09:00:00Z' + - '2023-04-06T10:00:00Z' + - '2023-04-06T11:00:00Z' + - '2023-04-06T12:00:00Z' + - '2023-04-06T13:00:00Z' + - '2023-04-06T14:00:00Z' + - '2023-04-06T15:00:00Z' + - '2023-04-06T16:00:00Z' + - '2023-04-06T17:00:00Z' + - '2023-04-06T18:00:00Z' + - '2023-04-06T19:00:00Z' + - '2023-04-06T20:00:00Z' + - '2023-04-06T21:00:00Z' + - '2023-04-06T22:00:00Z' + - '2023-04-06T23:00:00Z' + - '2023-04-07T00:00:00Z' + - '2023-04-07T01:00:00Z' + - '2023-04-07T02:00:00Z' + - '2023-04-07T03:00:00Z' + - '2023-04-07T04:00:00Z' + - '2023-04-07T05:00:00Z' + - '2023-04-07T06:00:00Z' + - '2023-04-07T07:00:00Z' + - '2023-04-07T08:00:00Z' + - '2023-04-07T09:00:00Z' + - '2023-04-07T10:00:00Z' + - '2023-04-07T11:00:00Z' + - '2023-04-07T12:00:00Z' + - '2023-04-07T13:00:00Z' + - '2023-04-07T14:00:00Z' + - '2023-04-07T15:00:00Z' + - '2023-04-07T16:00:00Z' + - '2023-04-07T17:00:00Z' + - '2023-04-07T18:00:00Z' + - '2023-04-07T19:00:00Z' + - '2023-04-07T20:00:00Z' + - '2023-04-07T21:00:00Z' + - '2023-04-07T22:00:00Z' + - '2023-04-07T23:00:00Z' + - '2023-04-08T00:00:00Z' + - '2023-04-08T01:00:00Z' + - '2023-04-08T02:00:00Z' + - '2023-04-08T03:00:00Z' + - '2023-04-08T04:00:00Z' + - '2023-04-08T05:00:00Z' + - '2023-04-08T06:00:00Z' + - '2023-04-08T07:00:00Z' + - '2023-04-08T08:00:00Z' + - '2023-04-08T09:00:00Z' + - '2023-04-08T10:00:00Z' + - '2023-04-08T11:00:00Z' + - '2023-04-08T12:00:00Z' + - '2023-04-08T13:00:00Z' + - '2023-04-08T14:00:00Z' + - '2023-04-08T15:00:00Z' + - '2023-04-08T16:00:00Z' + - '2023-04-08T17:00:00Z' + - '2023-04-08T18:00:00Z' + - '2023-04-08T19:00:00Z' + - '2023-04-08T20:00:00Z' + - '2023-04-08T21:00:00Z' + - '2023-04-08T22:00:00Z' + - '2023-04-08T23:00:00Z' + - '2023-04-09T00:00:00Z' + - '2023-04-09T01:00:00Z' + - '2023-04-09T02:00:00Z' + - '2023-04-09T03:00:00Z' + - '2023-04-09T04:00:00Z' + - '2023-04-09T05:00:00Z' + - '2023-04-09T06:00:00Z' + - '2023-04-09T07:00:00Z' + - '2023-04-09T08:00:00Z' + - '2023-04-09T09:00:00Z' + - '2023-04-09T10:00:00Z' + - '2023-04-09T11:00:00Z' + - '2023-04-09T12:00:00Z' + - '2023-04-09T13:00:00Z' + - '2023-04-09T14:00:00Z' + - '2023-04-09T15:00:00Z' + - '2023-04-09T16:00:00Z' + - '2023-04-09T17:00:00Z' + - '2023-04-09T18:00:00Z' + - '2023-04-09T19:00:00Z' + - '2023-04-09T20:00:00Z' + - '2023-04-09T21:00:00Z' + - '2023-04-09T22:00:00Z' + - '2023-04-09T23:00:00Z' + - '2023-04-10T00:00:00Z' + - '2023-04-10T01:00:00Z' + - '2023-04-10T02:00:00Z' + - '2023-04-10T03:00:00Z' + - '2023-04-10T04:00:00Z' + - '2023-04-10T05:00:00Z' + - '2023-04-10T06:00:00Z' + - '2023-04-10T07:00:00Z' + - '2023-04-10T08:00:00Z' + - '2023-04-10T09:00:00Z' + - '2023-04-10T10:00:00Z' + - '2023-04-10T11:00:00Z' + - '2023-04-10T12:00:00Z' + - '2023-04-10T13:00:00Z' + - '2023-04-10T14:00:00Z' + - '2023-04-10T15:00:00Z' + - '2023-04-10T16:00:00Z' + - '2023-04-10T17:00:00Z' + - '2023-04-10T18:00:00Z' + - '2023-04-10T19:00:00Z' + - '2023-04-10T20:00:00Z' + - '2023-04-10T21:00:00Z' + - '2023-04-10T22:00:00Z' + - '2023-04-10T23:00:00Z' + - '2023-04-11T00:00:00Z' + - '2023-04-11T01:00:00Z' + - '2023-04-11T02:00:00Z' + - '2023-04-11T03:00:00Z' + - '2023-04-11T04:00:00Z' + - '2023-04-11T05:00:00Z' + - '2023-04-11T06:00:00Z' + - '2023-04-11T07:00:00Z' + - '2023-04-11T08:00:00Z' + - '2023-04-11T09:00:00Z' + - '2023-04-11T10:00:00Z' + - '2023-04-11T11:00:00Z' + - '2023-04-11T12:00:00Z' + - '2023-04-11T13:00:00Z' + - '2023-04-11T14:00:00Z' + - '2023-04-11T15:00:00Z' + - '2023-04-11T16:00:00Z' + - '2023-04-11T17:00:00Z' + - '2023-04-11T18:00:00Z' + - '2023-04-11T19:00:00Z' + - '2023-04-11T20:00:00Z' + - '2023-04-11T21:00:00Z' + - '2023-04-11T22:00:00Z' + - '2023-04-11T23:00:00Z' + - '2023-04-12T00:00:00Z' + - '2023-04-12T01:00:00Z' + - '2023-04-12T02:00:00Z' + - '2023-04-12T03:00:00Z' + - '2023-04-12T04:00:00Z' + - '2023-04-12T05:00:00Z' + - '2023-04-12T06:00:00Z' + - '2023-04-12T07:00:00Z' + - '2023-04-12T08:00:00Z' + - '2023-04-12T09:00:00Z' + - '2023-04-12T10:00:00Z' + - '2023-04-12T11:00:00Z' + - '2023-04-12T12:00:00Z' + - '2023-04-12T13:00:00Z' + - '2023-04-12T14:00:00Z' + - '2023-04-12T15:00:00Z' + - '2023-04-12T16:00:00Z' + - '2023-04-12T17:00:00Z' + - '2023-04-12T18:00:00Z' + - '2023-04-12T19:00:00Z' + - '2023-04-12T20:00:00Z' + - '2023-04-12T21:00:00Z' + - '2023-04-12T22:00:00Z' + - '2023-04-12T23:00:00Z' + - '2023-04-13T00:00:00Z' + - '2023-04-13T01:00:00Z' + - '2023-04-13T02:00:00Z' + - '2023-04-13T03:00:00Z' + - '2023-04-13T04:00:00Z' + - '2023-04-13T05:00:00Z' + - '2023-04-13T06:00:00Z' + - '2023-04-13T07:00:00Z' + - '2023-04-13T08:00:00Z' + - '2023-04-13T09:00:00Z' + - '2023-04-13T10:00:00Z' + - '2023-04-13T11:00:00Z' + - '2023-04-13T12:00:00Z' + - '2023-04-13T13:00:00Z' + - '2023-04-13T14:00:00Z' + - '2023-04-13T15:00:00Z' + - '2023-04-13T16:00:00Z' + - '2023-04-13T17:00:00Z' + - '2023-04-13T18:00:00Z' + - '2023-04-13T19:00:00Z' + - '2023-04-13T20:00:00Z' + - '2023-04-13T21:00:00Z' + - '2023-04-13T22:00:00Z' + - '2023-04-13T23:00:00Z' + - '2023-04-14T00:00:00Z' + - '2023-04-14T01:00:00Z' + - '2023-04-14T02:00:00Z' + - '2023-04-14T03:00:00Z' + - '2023-04-14T04:00:00Z' + - '2023-04-14T05:00:00Z' + - '2023-04-14T06:00:00Z' + - '2023-04-14T07:00:00Z' + - '2023-04-14T08:00:00Z' + - '2023-04-14T09:00:00Z' + - '2023-04-14T10:00:00Z' + - '2023-04-14T11:00:00Z' + - '2023-04-14T12:00:00Z' + - '2023-04-14T13:00:00Z' + - '2023-04-14T14:00:00Z' + - '2023-04-14T15:00:00Z' + - '2023-04-14T16:00:00Z' + - '2023-04-14T17:00:00Z' + - '2023-04-14T18:00:00Z' + - '2023-04-14T19:00:00Z' + - '2023-04-14T20:00:00Z' + - '2023-04-14T21:00:00Z' + - '2023-04-14T22:00:00Z' + - '2023-04-14T23:00:00Z' + - '2023-04-15T00:00:00Z' + - '2023-04-15T01:00:00Z' + - '2023-04-15T02:00:00Z' + - '2023-04-15T03:00:00Z' + - '2023-04-15T04:00:00Z' + - '2023-04-15T05:00:00Z' + - '2023-04-15T06:00:00Z' + - '2023-04-15T07:00:00Z' + - '2023-04-15T08:00:00Z' + - '2023-04-15T09:00:00Z' + - '2023-04-15T10:00:00Z' + - '2023-04-15T11:00:00Z' + - '2023-04-15T12:00:00Z' + - '2023-04-15T13:00:00Z' + - '2023-04-15T14:00:00Z' + - '2023-04-15T15:00:00Z' + - '2023-04-15T16:00:00Z' + - '2023-04-15T17:00:00Z' + - '2023-04-15T18:00:00Z' + - '2023-04-15T19:00:00Z' + - '2023-04-15T20:00:00Z' + - '2023-04-15T21:00:00Z' + - '2023-04-15T22:00:00Z' + - '2023-04-15T23:00:00Z' + - '2023-04-16T00:00:00Z' + - '2023-04-16T01:00:00Z' + - '2023-04-16T02:00:00Z' + - '2023-04-16T03:00:00Z' + - '2023-04-16T04:00:00Z' + - '2023-04-16T05:00:00Z' + - '2023-04-16T06:00:00Z' + - '2023-04-16T07:00:00Z' + - '2023-04-16T08:00:00Z' + - '2023-04-16T09:00:00Z' + - '2023-04-16T10:00:00Z' + - '2023-04-16T11:00:00Z' + - '2023-04-16T12:00:00Z' + - '2023-04-16T13:00:00Z' + - '2023-04-16T14:00:00Z' + - '2023-04-16T15:00:00Z' + - '2023-04-16T16:00:00Z' + - '2023-04-16T17:00:00Z' + - '2023-04-16T18:00:00Z' + - '2023-04-16T19:00:00Z' + - '2023-04-16T20:00:00Z' + - '2023-04-16T21:00:00Z' + - '2023-04-16T22:00:00Z' + - '2023-04-16T23:00:00Z' + - '2023-04-17T00:00:00Z' + - '2023-04-17T01:00:00Z' + - '2023-04-17T02:00:00Z' + - '2023-04-17T03:00:00Z' + - '2023-04-17T04:00:00Z' + - '2023-04-17T05:00:00Z' + - '2023-04-17T06:00:00Z' + - '2023-04-17T07:00:00Z' + - '2023-04-17T08:00:00Z' + - '2023-04-17T09:00:00Z' + - '2023-04-17T10:00:00Z' + - '2023-04-17T11:00:00Z' + - '2023-04-17T12:00:00Z' + - '2023-04-17T13:00:00Z' + - '2023-04-17T14:00:00Z' + - '2023-04-17T15:00:00Z' + - '2023-04-17T16:00:00Z' + - '2023-04-17T17:00:00Z' + - '2023-04-17T18:00:00Z' + - '2023-04-17T19:00:00Z' + - '2023-04-17T20:00:00Z' + - '2023-04-17T21:00:00Z' + - '2023-04-17T22:00:00Z' + - '2023-04-17T23:00:00Z' + - '2023-04-18T00:00:00Z' + - '2023-04-18T01:00:00Z' + - '2023-04-18T02:00:00Z' + - '2023-04-18T03:00:00Z' + - '2023-04-18T04:00:00Z' + - '2023-04-18T05:00:00Z' + - '2023-04-18T06:00:00Z' + - '2023-04-18T07:00:00Z' + - '2023-04-18T08:00:00Z' + - '2023-04-18T09:00:00Z' + - '2023-04-18T10:00:00Z' + - '2023-04-18T11:00:00Z' + - '2023-04-18T12:00:00Z' + - '2023-04-18T13:00:00Z' + - '2023-04-18T14:00:00Z' + - '2023-04-18T15:00:00Z' + - '2023-04-18T16:00:00Z' + - '2023-04-18T17:00:00Z' + - '2023-04-18T18:00:00Z' + - '2023-04-18T19:00:00Z' + - '2023-04-18T20:00:00Z' + - '2023-04-18T21:00:00Z' + - '2023-04-18T22:00:00Z' + - '2023-04-18T23:00:00Z' + - '2023-04-19T00:00:00Z' + - '2023-04-19T01:00:00Z' + - '2023-04-19T02:00:00Z' + - '2023-04-19T03:00:00Z' + - '2023-04-19T04:00:00Z' + - '2023-04-19T05:00:00Z' + - '2023-04-19T06:00:00Z' + - '2023-04-19T07:00:00Z' + - '2023-04-19T08:00:00Z' + - '2023-04-19T09:00:00Z' + - '2023-04-19T10:00:00Z' + - '2023-04-19T11:00:00Z' + - '2023-04-19T12:00:00Z' + - '2023-04-19T13:00:00Z' + - '2023-04-19T14:00:00Z' + - '2023-04-19T15:00:00Z' + - '2023-04-19T16:00:00Z' + - '2023-04-19T17:00:00Z' + - '2023-04-19T18:00:00Z' + - '2023-04-19T19:00:00Z' + - '2023-04-19T20:00:00Z' + - '2023-04-19T21:00:00Z' + - '2023-04-19T22:00:00Z' + - '2023-04-19T23:00:00Z' + - '2023-04-20T00:00:00Z' + - '2023-04-20T01:00:00Z' + - '2023-04-20T02:00:00Z' + - '2023-04-20T03:00:00Z' + - '2023-04-20T04:00:00Z' + - '2023-04-20T05:00:00Z' + - '2023-04-20T06:00:00Z' + - '2023-04-20T07:00:00Z' + - '2023-04-20T08:00:00Z' + - '2023-04-20T09:00:00Z' + - '2023-04-20T10:00:00Z' + - '2023-04-20T11:00:00Z' + - '2023-04-20T12:00:00Z' + - '2023-04-20T13:00:00Z' + - '2023-04-20T14:00:00Z' + - '2023-04-20T15:00:00Z' + - '2023-04-20T16:00:00Z' + - '2023-04-20T17:00:00Z' + - '2023-04-20T18:00:00Z' + - '2023-04-20T19:00:00Z' + - '2023-04-20T20:00:00Z' + - '2023-04-20T21:00:00Z' + - '2023-04-20T22:00:00Z' + - '2023-04-20T23:00:00Z' + - '2023-04-21T00:00:00Z' + - '2023-04-21T01:00:00Z' + - '2023-04-21T02:00:00Z' + - '2023-04-21T03:00:00Z' + - '2023-04-21T04:00:00Z' + - '2023-04-21T05:00:00Z' + - '2023-04-21T06:00:00Z' + - '2023-04-21T07:00:00Z' + - '2023-04-21T08:00:00Z' + - '2023-04-21T09:00:00Z' + - '2023-04-21T10:00:00Z' + - '2023-04-21T11:00:00Z' + - '2023-04-21T12:00:00Z' + - '2023-04-21T13:00:00Z' + - '2023-04-21T14:00:00Z' + - '2023-04-21T15:00:00Z' + - '2023-04-21T16:00:00Z' + - '2023-04-21T17:00:00Z' + - '2023-04-21T18:00:00Z' + - '2023-04-21T19:00:00Z' + - '2023-04-21T20:00:00Z' + - '2023-04-21T21:00:00Z' + - '2023-04-21T22:00:00Z' + - '2023-04-21T23:00:00Z' + - '2023-04-22T00:00:00Z' + - '2023-04-22T01:00:00Z' + - '2023-04-22T02:00:00Z' + - '2023-04-22T03:00:00Z' + - '2023-04-22T04:00:00Z' + - '2023-04-22T05:00:00Z' + - '2023-04-22T06:00:00Z' + - '2023-04-22T07:00:00Z' + - '2023-04-22T08:00:00Z' + - '2023-04-22T09:00:00Z' + - '2023-04-22T10:00:00Z' + - '2023-04-22T11:00:00Z' + - '2023-04-22T12:00:00Z' + - '2023-04-22T13:00:00Z' + - '2023-04-22T14:00:00Z' + - '2023-04-22T15:00:00Z' + - '2023-04-22T16:00:00Z' + - '2023-04-22T17:00:00Z' + - '2023-04-22T18:00:00Z' + - '2023-04-22T19:00:00Z' + - '2023-04-22T20:00:00Z' + - '2023-04-22T21:00:00Z' + - '2023-04-22T22:00:00Z' + - '2023-04-22T23:00:00Z' + - '2023-04-23T00:00:00Z' + - '2023-04-23T01:00:00Z' + - '2023-04-23T02:00:00Z' + - '2023-04-23T03:00:00Z' + - '2023-04-23T04:00:00Z' + - '2023-04-23T05:00:00Z' + - '2023-04-23T06:00:00Z' + - '2023-04-23T07:00:00Z' + - '2023-04-23T08:00:00Z' + - '2023-04-23T09:00:00Z' + - '2023-04-23T10:00:00Z' + - '2023-04-23T11:00:00Z' + - '2023-04-23T12:00:00Z' + - '2023-04-23T13:00:00Z' + - '2023-04-23T14:00:00Z' + - '2023-04-23T15:00:00Z' + - '2023-04-23T16:00:00Z' + - '2023-04-23T17:00:00Z' + - '2023-04-23T18:00:00Z' + - '2023-04-23T19:00:00Z' + - '2023-04-23T20:00:00Z' + - '2023-04-23T21:00:00Z' + - '2023-04-23T22:00:00Z' + - '2023-04-23T23:00:00Z' + - '2023-04-24T00:00:00Z' + - '2023-04-24T01:00:00Z' + - '2023-04-24T02:00:00Z' + - '2023-04-24T03:00:00Z' + - '2023-04-24T04:00:00Z' + - '2023-04-24T05:00:00Z' + - '2023-04-24T06:00:00Z' + - '2023-04-24T07:00:00Z' + - '2023-04-24T08:00:00Z' + - '2023-04-24T09:00:00Z' + - '2023-04-24T10:00:00Z' + - '2023-04-24T11:00:00Z' + - '2023-04-24T12:00:00Z' + - '2023-04-24T13:00:00Z' + - '2023-04-24T14:00:00Z' + - '2023-04-24T15:00:00Z' + - '2023-04-24T16:00:00Z' + - '2023-04-24T17:00:00Z' + - '2023-04-24T18:00:00Z' + - '2023-04-24T19:00:00Z' + - '2023-04-24T20:00:00Z' + - '2023-04-24T21:00:00Z' + - '2023-04-24T22:00:00Z' + - '2023-04-24T23:00:00Z' + - '2023-04-25T00:00:00Z' + - '2023-04-25T01:00:00Z' + - '2023-04-25T02:00:00Z' + - '2023-04-25T03:00:00Z' + - '2023-04-25T04:00:00Z' + - '2023-04-25T05:00:00Z' + - '2023-04-25T06:00:00Z' + - '2023-04-25T07:00:00Z' + - '2023-04-25T08:00:00Z' + - '2023-04-25T09:00:00Z' + - '2023-04-25T10:00:00Z' + - '2023-04-25T11:00:00Z' + - '2023-04-25T12:00:00Z' + - '2023-04-25T13:00:00Z' + - '2023-04-25T14:00:00Z' + - '2023-04-25T15:00:00Z' + - '2023-04-25T16:00:00Z' + - '2023-04-25T17:00:00Z' + - '2023-04-25T18:00:00Z' + - '2023-04-25T19:00:00Z' + - '2023-04-25T20:00:00Z' + - '2023-04-25T21:00:00Z' + - '2023-04-25T22:00:00Z' + - '2023-04-25T23:00:00Z' + - '2023-04-26T00:00:00Z' + - '2023-04-26T01:00:00Z' + - '2023-04-26T02:00:00Z' + - '2023-04-26T03:00:00Z' + - '2023-04-26T04:00:00Z' + - '2023-04-26T05:00:00Z' + - '2023-04-26T06:00:00Z' + - '2023-04-26T07:00:00Z' + - '2023-04-26T08:00:00Z' + - '2023-04-26T09:00:00Z' + - '2023-04-26T10:00:00Z' + - '2023-04-26T11:00:00Z' + - '2023-04-26T12:00:00Z' + - '2023-04-26T13:00:00Z' + - '2023-04-26T14:00:00Z' + - '2023-04-26T15:00:00Z' + - '2023-04-26T16:00:00Z' + - '2023-04-26T17:00:00Z' + - '2023-04-26T18:00:00Z' + - '2023-04-26T19:00:00Z' + - '2023-04-26T20:00:00Z' + - '2023-04-26T21:00:00Z' + - '2023-04-26T22:00:00Z' + - '2023-04-26T23:00:00Z' + - '2023-04-27T00:00:00Z' + - '2023-04-27T01:00:00Z' + - '2023-04-27T02:00:00Z' + - '2023-04-27T03:00:00Z' + - '2023-04-27T04:00:00Z' + - '2023-04-27T05:00:00Z' + - '2023-04-27T06:00:00Z' + - '2023-04-27T07:00:00Z' + - '2023-04-27T08:00:00Z' + - '2023-04-27T09:00:00Z' + - '2023-04-27T10:00:00Z' + - '2023-04-27T11:00:00Z' + - '2023-04-27T12:00:00Z' + - '2023-04-27T13:00:00Z' + - '2023-04-27T14:00:00Z' + - '2023-04-27T15:00:00Z' + - '2023-04-27T16:00:00Z' + - '2023-04-27T17:00:00Z' + - '2023-04-27T18:00:00Z' + - '2023-04-27T19:00:00Z' + - '2023-04-27T20:00:00Z' + - '2023-04-27T21:00:00Z' + - '2023-04-27T22:00:00Z' + - '2023-04-27T23:00:00Z' + - '2023-04-28T00:00:00Z' + - '2023-04-28T01:00:00Z' + - '2023-04-28T02:00:00Z' + - '2023-04-28T03:00:00Z' + - '2023-04-28T04:00:00Z' + - '2023-04-28T05:00:00Z' + - '2023-04-28T06:00:00Z' + - '2023-04-28T07:00:00Z' + - '2023-04-28T08:00:00Z' + - '2023-04-28T09:00:00Z' + - '2023-04-28T10:00:00Z' + - '2023-04-28T11:00:00Z' + - '2023-04-28T12:00:00Z' + - '2023-04-28T13:00:00Z' + - '2023-04-28T14:00:00Z' + - '2023-04-28T15:00:00Z' + - '2023-04-28T16:00:00Z' + - '2023-04-28T17:00:00Z' + - '2023-04-28T18:00:00Z' + - '2023-04-28T19:00:00Z' + - '2023-04-28T20:00:00Z' + - '2023-04-28T21:00:00Z' + - '2023-04-28T22:00:00Z' + - '2023-04-28T23:00:00Z' + - '2023-04-29T00:00:00Z' + - '2023-04-29T01:00:00Z' + - '2023-04-29T02:00:00Z' + - '2023-04-29T03:00:00Z' + - '2023-04-29T04:00:00Z' + - '2023-04-29T05:00:00Z' + - '2023-04-29T06:00:00Z' + - '2023-04-29T07:00:00Z' + - '2023-04-29T08:00:00Z' + - '2023-04-29T09:00:00Z' + - '2023-04-29T10:00:00Z' + - '2023-04-29T11:00:00Z' + - '2023-04-29T12:00:00Z' + - '2023-04-29T13:00:00Z' + - '2023-04-29T14:00:00Z' + - '2023-04-29T15:00:00Z' + - '2023-04-29T16:00:00Z' + - '2023-04-29T17:00:00Z' + - '2023-04-29T18:00:00Z' + - '2023-04-29T19:00:00Z' + - '2023-04-29T20:00:00Z' + - '2023-04-29T21:00:00Z' + - '2023-04-29T22:00:00Z' + - '2023-04-29T23:00:00Z' + - '2023-04-30T00:00:00Z' + - '2023-04-30T01:00:00Z' + - '2023-04-30T02:00:00Z' + - '2023-04-30T03:00:00Z' + - '2023-04-30T04:00:00Z' + - '2023-04-30T05:00:00Z' + - '2023-04-30T06:00:00Z' + - '2023-04-30T07:00:00Z' + - '2023-04-30T08:00:00Z' + - '2023-04-30T09:00:00Z' + - '2023-04-30T10:00:00Z' + - '2023-04-30T11:00:00Z' + - '2023-04-30T12:00:00Z' + - '2023-04-30T13:00:00Z' + - '2023-04-30T14:00:00Z' + - '2023-04-30T15:00:00Z' + - '2023-04-30T16:00:00Z' + - '2023-04-30T17:00:00Z' + - '2023-04-30T18:00:00Z' + - '2023-04-30T19:00:00Z' + - '2023-04-30T20:00:00Z' + - '2023-04-30T21:00:00Z' + - '2023-04-30T22:00:00Z' + - '2023-04-30T23:00:00Z' + - '2023-05-01T00:00:00Z' + - '2023-05-01T01:00:00Z' + - '2023-05-01T02:00:00Z' + - '2023-05-01T03:00:00Z' + - '2023-05-01T04:00:00Z' + - '2023-05-01T05:00:00Z' + - '2023-05-01T06:00:00Z' + - '2023-05-01T07:00:00Z' + - '2023-05-01T08:00:00Z' + - '2023-05-01T09:00:00Z' + - '2023-05-01T10:00:00Z' + - '2023-05-01T11:00:00Z' + - '2023-05-01T12:00:00Z' + - '2023-05-01T13:00:00Z' + - '2023-05-01T14:00:00Z' + - '2023-05-01T15:00:00Z' + - '2023-05-01T16:00:00Z' + - '2023-05-01T17:00:00Z' + - '2023-05-01T18:00:00Z' + - '2023-05-01T19:00:00Z' + - '2023-05-01T20:00:00Z' + - '2023-05-01T21:00:00Z' + - '2023-05-01T22:00:00Z' + - '2023-05-01T23:00:00Z' + - '2023-05-02T00:00:00Z' + - '2023-05-02T01:00:00Z' + - '2023-05-02T02:00:00Z' + - '2023-05-02T03:00:00Z' + - '2023-05-02T04:00:00Z' + - '2023-05-02T05:00:00Z' + - '2023-05-02T06:00:00Z' + - '2023-05-02T07:00:00Z' + - '2023-05-02T08:00:00Z' + - '2023-05-02T09:00:00Z' + - '2023-05-02T10:00:00Z' + - '2023-05-02T11:00:00Z' + - '2023-05-02T12:00:00Z' + - '2023-05-02T13:00:00Z' + - '2023-05-02T14:00:00Z' + - '2023-05-02T15:00:00Z' + - '2023-05-02T16:00:00Z' + - '2023-05-02T17:00:00Z' + - '2023-05-02T18:00:00Z' + - '2023-05-02T19:00:00Z' + - '2023-05-02T20:00:00Z' + - '2023-05-02T21:00:00Z' + - '2023-05-02T22:00:00Z' + - '2023-05-02T23:00:00Z' + - '2023-05-03T00:00:00Z' + - '2023-05-03T01:00:00Z' + - '2023-05-03T02:00:00Z' + - '2023-05-03T03:00:00Z' + - '2023-05-03T04:00:00Z' + - '2023-05-03T05:00:00Z' + - '2023-05-03T06:00:00Z' + - '2023-05-03T07:00:00Z' + - '2023-05-03T08:00:00Z' + - '2023-05-03T09:00:00Z' + - '2023-05-03T10:00:00Z' + - '2023-05-03T11:00:00Z' + - '2023-05-03T12:00:00Z' + - '2023-05-03T13:00:00Z' + - '2023-05-03T14:00:00Z' + - '2023-05-03T15:00:00Z' + - '2023-05-03T16:00:00Z' + - '2023-05-03T17:00:00Z' + - '2023-05-03T18:00:00Z' + - '2023-05-03T19:00:00Z' + - '2023-05-03T20:00:00Z' + - '2023-05-03T21:00:00Z' + - '2023-05-03T22:00:00Z' + - '2023-05-03T23:00:00Z' + - '2023-05-04T00:00:00Z' + - '2023-05-04T01:00:00Z' + - '2023-05-04T02:00:00Z' + - '2023-05-04T03:00:00Z' + - '2023-05-04T04:00:00Z' + - '2023-05-04T05:00:00Z' + - '2023-05-04T06:00:00Z' + - '2023-05-04T07:00:00Z' + - '2023-05-04T08:00:00Z' + - '2023-05-04T09:00:00Z' + - '2023-05-04T10:00:00Z' + - '2023-05-04T11:00:00Z' + - '2023-05-04T12:00:00Z' + - '2023-05-04T13:00:00Z' + - '2023-05-04T14:00:00Z' + - '2023-05-04T15:00:00Z' + - '2023-05-04T16:00:00Z' + - '2023-05-04T17:00:00Z' + - '2023-05-04T18:00:00Z' + - '2023-05-04T19:00:00Z' + - '2023-05-04T20:00:00Z' + - '2023-05-04T21:00:00Z' + - '2023-05-04T22:00:00Z' + - '2023-05-04T23:00:00Z' + - '2023-05-05T00:00:00Z' + - '2023-05-05T01:00:00Z' + - '2023-05-05T02:00:00Z' + - '2023-05-05T03:00:00Z' + - '2023-05-05T04:00:00Z' + - '2023-05-05T05:00:00Z' + - '2023-05-05T06:00:00Z' + - '2023-05-05T07:00:00Z' + - '2023-05-05T08:00:00Z' + - '2023-05-05T09:00:00Z' + - '2023-05-05T10:00:00Z' + - '2023-05-05T11:00:00Z' + - '2023-05-05T12:00:00Z' + - '2023-05-05T13:00:00Z' + - '2023-05-05T14:00:00Z' + - '2023-05-05T15:00:00Z' + - '2023-05-05T16:00:00Z' + - '2023-05-05T17:00:00Z' + - '2023-05-05T18:00:00Z' + - '2023-05-05T19:00:00Z' + - '2023-05-05T20:00:00Z' + - '2023-05-05T21:00:00Z' + - '2023-05-05T22:00:00Z' + - '2023-05-05T23:00:00Z' + - '2023-05-06T00:00:00Z' + - '2023-05-06T01:00:00Z' + - '2023-05-06T02:00:00Z' + - '2023-05-06T03:00:00Z' + - '2023-05-06T04:00:00Z' + - '2023-05-06T05:00:00Z' + - '2023-05-06T06:00:00Z' + - '2023-05-06T07:00:00Z' + - '2023-05-06T08:00:00Z' + - '2023-05-06T09:00:00Z' + - '2023-05-06T10:00:00Z' + - '2023-05-06T11:00:00Z' + - '2023-05-06T12:00:00Z' + - '2023-05-06T13:00:00Z' + - '2023-05-06T14:00:00Z' + - '2023-05-06T15:00:00Z' + - '2023-05-06T16:00:00Z' + - '2023-05-06T17:00:00Z' + - '2023-05-06T18:00:00Z' + - '2023-05-06T19:00:00Z' + - '2023-05-06T20:00:00Z' + - '2023-05-06T21:00:00Z' + - '2023-05-06T22:00:00Z' + - '2023-05-06T23:00:00Z' + - '2023-05-07T00:00:00Z' + - '2023-05-07T01:00:00Z' + - '2023-05-07T02:00:00Z' + - '2023-05-07T03:00:00Z' + - '2023-05-07T04:00:00Z' + - '2023-05-07T05:00:00Z' + - '2023-05-07T06:00:00Z' + - '2023-05-07T07:00:00Z' + - '2023-05-07T08:00:00Z' + - '2023-05-07T09:00:00Z' + - '2023-05-07T10:00:00Z' + - '2023-05-07T11:00:00Z' + - '2023-05-07T12:00:00Z' + - '2023-05-07T13:00:00Z' + - '2023-05-07T14:00:00Z' + - '2023-05-07T15:00:00Z' + - '2023-05-07T16:00:00Z' + - '2023-05-07T17:00:00Z' + - '2023-05-07T18:00:00Z' + - '2023-05-07T19:00:00Z' + - '2023-05-07T20:00:00Z' + - '2023-05-07T21:00:00Z' + - '2023-05-07T22:00:00Z' + - '2023-05-07T23:00:00Z' + - '2023-05-08T00:00:00Z' + - '2023-05-08T01:00:00Z' + - '2023-05-08T02:00:00Z' + - '2023-05-08T03:00:00Z' + - '2023-05-08T04:00:00Z' + - '2023-05-08T05:00:00Z' + - '2023-05-08T06:00:00Z' + - '2023-05-08T07:00:00Z' + - '2023-05-08T08:00:00Z' + - '2023-05-08T09:00:00Z' + - '2023-05-08T10:00:00Z' + - '2023-05-08T11:00:00Z' + - '2023-05-08T12:00:00Z' + - '2023-05-08T13:00:00Z' + - '2023-05-08T14:00:00Z' + - '2023-05-08T15:00:00Z' + - '2023-05-08T16:00:00Z' + - '2023-05-08T17:00:00Z' + - '2023-05-08T18:00:00Z' + - '2023-05-08T19:00:00Z' + - '2023-05-08T20:00:00Z' + - '2023-05-08T21:00:00Z' + - '2023-05-08T22:00:00Z' + - '2023-05-08T23:00:00Z' + - '2023-05-09T00:00:00Z' + - '2023-05-09T01:00:00Z' + - '2023-05-09T02:00:00Z' + - '2023-05-09T03:00:00Z' + - '2023-05-09T04:00:00Z' + - '2023-05-09T05:00:00Z' + - '2023-05-09T06:00:00Z' + - '2023-05-09T07:00:00Z' + - '2023-05-09T08:00:00Z' + - '2023-05-09T09:00:00Z' + - '2023-05-09T10:00:00Z' + - '2023-05-09T11:00:00Z' + - '2023-05-09T12:00:00Z' + - '2023-05-09T13:00:00Z' + - '2023-05-09T14:00:00Z' + - '2023-05-09T15:00:00Z' + - '2023-05-09T16:00:00Z' + - '2023-05-09T17:00:00Z' + - '2023-05-09T18:00:00Z' + - '2023-05-09T19:00:00Z' + - '2023-05-09T20:00:00Z' + - '2023-05-09T21:00:00Z' + - '2023-05-09T22:00:00Z' + - '2023-05-09T23:00:00Z' + - '2023-05-10T00:00:00Z' + - '2023-05-10T01:00:00Z' + - '2023-05-10T02:00:00Z' + - '2023-05-10T03:00:00Z' + - '2023-05-10T04:00:00Z' + - '2023-05-10T05:00:00Z' + - '2023-05-10T06:00:00Z' + - '2023-05-10T07:00:00Z' + - '2023-05-10T08:00:00Z' + - '2023-05-10T09:00:00Z' + - '2023-05-10T10:00:00Z' + - '2023-05-10T11:00:00Z' + - '2023-05-10T12:00:00Z' + - '2023-05-10T13:00:00Z' + - '2023-05-10T14:00:00Z' + - '2023-05-10T15:00:00Z' + - '2023-05-10T16:00:00Z' + - '2023-05-10T17:00:00Z' + - '2023-05-10T18:00:00Z' + - '2023-05-10T19:00:00Z' + - '2023-05-10T20:00:00Z' + - '2023-05-10T21:00:00Z' + - '2023-05-10T22:00:00Z' + - '2023-05-10T23:00:00Z' + - '2023-05-11T00:00:00Z' + - '2023-05-11T01:00:00Z' + - '2023-05-11T02:00:00Z' + - '2023-05-11T03:00:00Z' + - '2023-05-11T04:00:00Z' + - '2023-05-11T05:00:00Z' + - '2023-05-11T06:00:00Z' + - '2023-05-11T07:00:00Z' + - '2023-05-11T08:00:00Z' + - '2023-05-11T09:00:00Z' + - '2023-05-11T10:00:00Z' + - '2023-05-11T11:00:00Z' + - '2023-05-11T12:00:00Z' + - '2023-05-11T13:00:00Z' + - '2023-05-11T14:00:00Z' + - '2023-05-11T15:00:00Z' + - '2023-05-11T16:00:00Z' + - '2023-05-11T17:00:00Z' + - '2023-05-11T18:00:00Z' + - '2023-05-11T19:00:00Z' + - '2023-05-11T20:00:00Z' + - '2023-05-11T21:00:00Z' + - '2023-05-11T22:00:00Z' + - '2023-05-11T23:00:00Z' + - '2023-05-12T00:00:00Z' + - '2023-05-12T01:00:00Z' + - '2023-05-12T02:00:00Z' + - '2023-05-12T03:00:00Z' + - '2023-05-12T04:00:00Z' + - '2023-05-12T05:00:00Z' + - '2023-05-12T06:00:00Z' + - '2023-05-12T07:00:00Z' + - '2023-05-12T08:00:00Z' + - '2023-05-12T09:00:00Z' + - '2023-05-12T10:00:00Z' + - '2023-05-12T11:00:00Z' + - '2023-05-12T12:00:00Z' + - '2023-05-12T13:00:00Z' + - '2023-05-12T14:00:00Z' + - '2023-05-12T15:00:00Z' + - '2023-05-12T16:00:00Z' + - '2023-05-12T17:00:00Z' + - '2023-05-12T18:00:00Z' + - '2023-05-12T19:00:00Z' + - '2023-05-12T20:00:00Z' + - '2023-05-12T21:00:00Z' + - '2023-05-12T22:00:00Z' + - '2023-05-12T23:00:00Z' + - '2023-05-13T00:00:00Z' + - '2023-05-13T01:00:00Z' + - '2023-05-13T02:00:00Z' + - '2023-05-13T03:00:00Z' + - '2023-05-13T04:00:00Z' + - '2023-05-13T05:00:00Z' + - '2023-05-13T06:00:00Z' + - '2023-05-13T07:00:00Z' + - '2023-05-13T08:00:00Z' + - '2023-05-13T09:00:00Z' + - '2023-05-13T10:00:00Z' + - '2023-05-13T11:00:00Z' + - '2023-05-13T12:00:00Z' + - '2023-05-13T13:00:00Z' + - '2023-05-13T14:00:00Z' + - '2023-05-13T15:00:00Z' + - '2023-05-13T16:00:00Z' + - '2023-05-13T17:00:00Z' + - '2023-05-13T18:00:00Z' + - '2023-05-13T19:00:00Z' + - '2023-05-13T20:00:00Z' + - '2023-05-13T21:00:00Z' + - '2023-05-13T22:00:00Z' + - '2023-05-13T23:00:00Z' + - '2023-05-14T00:00:00Z' + - '2023-05-14T01:00:00Z' + - '2023-05-14T02:00:00Z' + - '2023-05-14T03:00:00Z' + - '2023-05-14T04:00:00Z' + - '2023-05-14T05:00:00Z' + - '2023-05-14T06:00:00Z' + - '2023-05-14T07:00:00Z' + - '2023-05-14T08:00:00Z' + - '2023-05-14T09:00:00Z' + - '2023-05-14T10:00:00Z' + - '2023-05-14T11:00:00Z' + - '2023-05-14T12:00:00Z' + - '2023-05-14T13:00:00Z' + - '2023-05-14T14:00:00Z' + - '2023-05-14T15:00:00Z' + - '2023-05-14T16:00:00Z' + - '2023-05-14T17:00:00Z' + - '2023-05-14T18:00:00Z' + - '2023-05-14T19:00:00Z' + - '2023-05-14T20:00:00Z' + - '2023-05-14T21:00:00Z' + - '2023-05-14T22:00:00Z' + - '2023-05-14T23:00:00Z' + - '2023-05-15T00:00:00Z' + - '2023-05-15T01:00:00Z' + - '2023-05-15T02:00:00Z' + - '2023-05-15T03:00:00Z' + - '2023-05-15T04:00:00Z' + - '2023-05-15T05:00:00Z' + - '2023-05-15T06:00:00Z' + - '2023-05-15T07:00:00Z' + - '2023-05-15T08:00:00Z' + - '2023-05-15T09:00:00Z' + - '2023-05-15T10:00:00Z' + - '2023-05-15T11:00:00Z' + - '2023-05-15T12:00:00Z' + - '2023-05-15T13:00:00Z' + - '2023-05-15T14:00:00Z' + - '2023-05-15T15:00:00Z' + - '2023-05-15T16:00:00Z' + - '2023-05-15T17:00:00Z' + - '2023-05-15T18:00:00Z' + - '2023-05-15T19:00:00Z' + - '2023-05-15T20:00:00Z' + - '2023-05-15T21:00:00Z' + - '2023-05-15T22:00:00Z' + - '2023-05-15T23:00:00Z' + - '2023-05-16T00:00:00Z' + - '2023-05-16T01:00:00Z' + - '2023-05-16T02:00:00Z' + - '2023-05-16T03:00:00Z' + - '2023-05-16T04:00:00Z' + - '2023-05-16T05:00:00Z' + - '2023-05-16T06:00:00Z' + - '2023-05-16T07:00:00Z' + - '2023-05-16T08:00:00Z' + - '2023-05-16T09:00:00Z' + - '2023-05-16T10:00:00Z' + - '2023-05-16T11:00:00Z' + - '2023-05-16T12:00:00Z' + - '2023-05-16T13:00:00Z' + - '2023-05-16T14:00:00Z' + - '2023-05-16T15:00:00Z' + - '2023-05-16T16:00:00Z' + - '2023-05-16T17:00:00Z' + - '2023-05-16T18:00:00Z' + - '2023-05-16T19:00:00Z' + - '2023-05-16T20:00:00Z' + - '2023-05-16T21:00:00Z' + - '2023-05-16T22:00:00Z' + - '2023-05-16T23:00:00Z' + - '2023-05-17T00:00:00Z' + - '2023-05-17T01:00:00Z' + - '2023-05-17T02:00:00Z' + - '2023-05-17T03:00:00Z' + - '2023-05-17T04:00:00Z' + - '2023-05-17T05:00:00Z' + - '2023-05-17T06:00:00Z' + - '2023-05-17T07:00:00Z' + - '2023-05-17T08:00:00Z' + - '2023-05-17T09:00:00Z' + - '2023-05-17T10:00:00Z' + - '2023-05-17T11:00:00Z' + - '2023-05-17T12:00:00Z' + - '2023-05-17T13:00:00Z' + - '2023-05-17T14:00:00Z' + - '2023-05-17T15:00:00Z' + - '2023-05-17T16:00:00Z' + - '2023-05-17T17:00:00Z' + - '2023-05-17T18:00:00Z' + - '2023-05-17T19:00:00Z' + - '2023-05-17T20:00:00Z' + - '2023-05-17T21:00:00Z' + - '2023-05-17T22:00:00Z' + - '2023-05-17T23:00:00Z' + - '2023-05-18T00:00:00Z' + - '2023-05-18T01:00:00Z' + - '2023-05-18T02:00:00Z' + - '2023-05-18T03:00:00Z' + - '2023-05-18T04:00:00Z' + - '2023-05-18T05:00:00Z' + - '2023-05-18T06:00:00Z' + - '2023-05-18T07:00:00Z' + - '2023-05-18T08:00:00Z' + - '2023-05-18T09:00:00Z' + - '2023-05-18T10:00:00Z' + - '2023-05-18T11:00:00Z' + - '2023-05-18T12:00:00Z' + - '2023-05-18T13:00:00Z' + - '2023-05-18T14:00:00Z' + - '2023-05-18T15:00:00Z' + - '2023-05-18T16:00:00Z' + - '2023-05-18T17:00:00Z' + - '2023-05-18T18:00:00Z' + - '2023-05-18T19:00:00Z' + - '2023-05-18T20:00:00Z' + - '2023-05-18T21:00:00Z' + - '2023-05-18T22:00:00Z' + - '2023-05-18T23:00:00Z' + - '2023-05-19T00:00:00Z' + - '2023-05-19T01:00:00Z' + - '2023-05-19T02:00:00Z' + - '2023-05-19T03:00:00Z' + - '2023-05-19T04:00:00Z' + - '2023-05-19T05:00:00Z' + - '2023-05-19T06:00:00Z' + - '2023-05-19T07:00:00Z' + - '2023-05-19T08:00:00Z' + - '2023-05-19T09:00:00Z' + - '2023-05-19T10:00:00Z' + - '2023-05-19T11:00:00Z' + - '2023-05-19T12:00:00Z' + - '2023-05-19T13:00:00Z' + - '2023-05-19T14:00:00Z' + - '2023-05-19T15:00:00Z' + - '2023-05-19T16:00:00Z' + - '2023-05-19T17:00:00Z' + - '2023-05-19T18:00:00Z' + - '2023-05-19T19:00:00Z' + - '2023-05-19T20:00:00Z' + - '2023-05-19T21:00:00Z' + - '2023-05-19T22:00:00Z' + - '2023-05-19T23:00:00Z' + - '2023-05-20T00:00:00Z' + - '2023-05-20T01:00:00Z' + - '2023-05-20T02:00:00Z' + - '2023-05-20T03:00:00Z' + - '2023-05-20T04:00:00Z' + - '2023-05-20T05:00:00Z' + - '2023-05-20T06:00:00Z' + - '2023-05-20T07:00:00Z' + - '2023-05-20T08:00:00Z' + - '2023-05-20T09:00:00Z' + - '2023-05-20T10:00:00Z' + - '2023-05-20T11:00:00Z' + - '2023-05-20T12:00:00Z' + - '2023-05-20T13:00:00Z' + - '2023-05-20T14:00:00Z' + - '2023-05-20T15:00:00Z' + - '2023-05-20T16:00:00Z' + - '2023-05-20T17:00:00Z' + - '2023-05-20T18:00:00Z' + - '2023-05-20T19:00:00Z' + - '2023-05-20T20:00:00Z' + - '2023-05-20T21:00:00Z' + - '2023-05-20T22:00:00Z' + - '2023-05-20T23:00:00Z' + - '2023-05-21T00:00:00Z' + - '2023-05-21T01:00:00Z' + - '2023-05-21T02:00:00Z' + - '2023-05-21T03:00:00Z' + - '2023-05-21T04:00:00Z' + - '2023-05-21T05:00:00Z' + - '2023-05-21T06:00:00Z' + - '2023-05-21T07:00:00Z' + - '2023-05-21T08:00:00Z' + - '2023-05-21T09:00:00Z' + - '2023-05-21T10:00:00Z' + - '2023-05-21T11:00:00Z' + - '2023-05-21T12:00:00Z' + - '2023-05-21T13:00:00Z' + - '2023-05-21T14:00:00Z' + - '2023-05-21T15:00:00Z' + - '2023-05-21T16:00:00Z' + - '2023-05-21T17:00:00Z' + - '2023-05-21T18:00:00Z' + - '2023-05-21T19:00:00Z' + - '2023-05-21T20:00:00Z' + - '2023-05-21T21:00:00Z' + - '2023-05-21T22:00:00Z' + - '2023-05-21T23:00:00Z' + - '2023-05-22T00:00:00Z' + - '2023-05-22T01:00:00Z' + - '2023-05-22T02:00:00Z' + - '2023-05-22T03:00:00Z' + - '2023-05-22T04:00:00Z' + - '2023-05-22T05:00:00Z' + - '2023-05-22T06:00:00Z' + - '2023-05-22T07:00:00Z' + - '2023-05-22T08:00:00Z' + - '2023-05-22T09:00:00Z' + - '2023-05-22T10:00:00Z' + - '2023-05-22T11:00:00Z' + - '2023-05-22T12:00:00Z' + - '2023-05-22T13:00:00Z' + - '2023-05-22T14:00:00Z' + - '2023-05-22T15:00:00Z' + - '2023-05-22T16:00:00Z' + - '2023-05-22T17:00:00Z' + - '2023-05-22T18:00:00Z' + - '2023-05-22T19:00:00Z' + - '2023-05-22T20:00:00Z' + - '2023-05-22T21:00:00Z' + - '2023-05-22T22:00:00Z' + - '2023-05-22T23:00:00Z' + - '2023-05-23T00:00:00Z' + - '2023-05-23T01:00:00Z' + - '2023-05-23T02:00:00Z' + - '2023-05-23T03:00:00Z' + - '2023-05-23T04:00:00Z' + - '2023-05-23T05:00:00Z' + - '2023-05-23T06:00:00Z' + - '2023-05-23T07:00:00Z' + - '2023-05-23T08:00:00Z' + - '2023-05-23T09:00:00Z' + - '2023-05-23T10:00:00Z' + - '2023-05-23T11:00:00Z' + - '2023-05-23T12:00:00Z' + - '2023-05-23T13:00:00Z' + - '2023-05-23T14:00:00Z' + - '2023-05-23T15:00:00Z' + - '2023-05-23T16:00:00Z' + - '2023-05-23T17:00:00Z' + - '2023-05-23T18:00:00Z' + - '2023-05-23T19:00:00Z' + - '2023-05-23T20:00:00Z' + - '2023-05-23T21:00:00Z' + - '2023-05-23T22:00:00Z' + - '2023-05-23T23:00:00Z' + - '2023-05-24T00:00:00Z' + - '2023-05-24T01:00:00Z' + - '2023-05-24T02:00:00Z' + - '2023-05-24T03:00:00Z' + - '2023-05-24T04:00:00Z' + - '2023-05-24T05:00:00Z' + - '2023-05-24T06:00:00Z' + - '2023-05-24T07:00:00Z' + - '2023-05-24T08:00:00Z' + - '2023-05-24T09:00:00Z' + - '2023-05-24T10:00:00Z' + - '2023-05-24T11:00:00Z' + - '2023-05-24T12:00:00Z' + - '2023-05-24T13:00:00Z' + - '2023-05-24T14:00:00Z' + - '2023-05-24T15:00:00Z' + - '2023-05-24T16:00:00Z' + - '2023-05-24T17:00:00Z' + - '2023-05-24T18:00:00Z' + - '2023-05-24T19:00:00Z' + - '2023-05-24T20:00:00Z' + - '2023-05-24T21:00:00Z' + - '2023-05-24T22:00:00Z' + - '2023-05-24T23:00:00Z' + - '2023-05-25T00:00:00Z' + - '2023-05-25T01:00:00Z' + - '2023-05-25T02:00:00Z' + - '2023-05-25T03:00:00Z' + - '2023-05-25T04:00:00Z' + - '2023-05-25T05:00:00Z' + - '2023-05-25T06:00:00Z' + - '2023-05-25T07:00:00Z' + - '2023-05-25T08:00:00Z' + - '2023-05-25T09:00:00Z' + - '2023-05-25T10:00:00Z' + - '2023-05-25T11:00:00Z' + - '2023-05-25T12:00:00Z' + - '2023-05-25T13:00:00Z' + - '2023-05-25T14:00:00Z' + - '2023-05-25T15:00:00Z' + - '2023-05-25T16:00:00Z' + - '2023-05-25T17:00:00Z' + - '2023-05-25T18:00:00Z' + - '2023-05-25T19:00:00Z' + - '2023-05-25T20:00:00Z' + - '2023-05-25T21:00:00Z' + - '2023-05-25T22:00:00Z' + - '2023-05-25T23:00:00Z' + - '2023-05-26T00:00:00Z' + - '2023-05-26T01:00:00Z' + - '2023-05-26T02:00:00Z' + - '2023-05-26T03:00:00Z' + - '2023-05-26T04:00:00Z' + - '2023-05-26T05:00:00Z' + - '2023-05-26T06:00:00Z' + - '2023-05-26T07:00:00Z' + - '2023-05-26T08:00:00Z' + - '2023-05-26T09:00:00Z' + - '2023-05-26T10:00:00Z' + - '2023-05-26T11:00:00Z' + - '2023-05-26T12:00:00Z' + - '2023-05-26T13:00:00Z' + - '2023-05-26T14:00:00Z' + - '2023-05-26T15:00:00Z' + - '2023-05-26T16:00:00Z' + - '2023-05-26T17:00:00Z' + - '2023-05-26T18:00:00Z' + - '2023-05-26T19:00:00Z' + - '2023-05-26T20:00:00Z' + - '2023-05-26T21:00:00Z' + - '2023-05-26T22:00:00Z' + - '2023-05-26T23:00:00Z' + - '2023-05-27T00:00:00Z' + - '2023-05-27T01:00:00Z' + - '2023-05-27T02:00:00Z' + - '2023-05-27T03:00:00Z' + - '2023-05-27T04:00:00Z' + - '2023-05-27T05:00:00Z' + - '2023-05-27T06:00:00Z' + - '2023-05-27T07:00:00Z' + - '2023-05-27T08:00:00Z' + - '2023-05-27T09:00:00Z' + - '2023-05-27T10:00:00Z' + - '2023-05-27T11:00:00Z' + - '2023-05-27T12:00:00Z' + - '2023-05-27T13:00:00Z' + - '2023-05-27T14:00:00Z' + - '2023-05-27T15:00:00Z' + - '2023-05-27T16:00:00Z' + - '2023-05-27T17:00:00Z' + - '2023-05-27T18:00:00Z' + - '2023-05-27T19:00:00Z' + - '2023-05-27T20:00:00Z' + - '2023-05-27T21:00:00Z' + - '2023-05-27T22:00:00Z' + - '2023-05-27T23:00:00Z' + - '2023-05-28T00:00:00Z' + - '2023-05-28T01:00:00Z' + - '2023-05-28T02:00:00Z' + - '2023-05-28T03:00:00Z' + - '2023-05-28T04:00:00Z' + - '2023-05-28T05:00:00Z' + - '2023-05-28T06:00:00Z' + - '2023-05-28T07:00:00Z' + - '2023-05-28T08:00:00Z' + - '2023-05-28T09:00:00Z' + - '2023-05-28T10:00:00Z' + - '2023-05-28T11:00:00Z' + - '2023-05-28T12:00:00Z' + - '2023-05-28T13:00:00Z' + - '2023-05-28T14:00:00Z' + - '2023-05-28T15:00:00Z' + - '2023-05-28T16:00:00Z' + - '2023-05-28T17:00:00Z' + - '2023-05-28T18:00:00Z' + - '2023-05-28T19:00:00Z' + - '2023-05-28T20:00:00Z' + - '2023-05-28T21:00:00Z' + - '2023-05-28T22:00:00Z' + - '2023-05-28T23:00:00Z' + - '2023-05-29T00:00:00Z' + - '2023-05-29T01:00:00Z' + - '2023-05-29T02:00:00Z' + - '2023-05-29T03:00:00Z' + - '2023-05-29T04:00:00Z' + - '2023-05-29T05:00:00Z' + - '2023-05-29T06:00:00Z' + - '2023-05-29T07:00:00Z' + - '2023-05-29T08:00:00Z' + - '2023-05-29T09:00:00Z' + - '2023-05-29T10:00:00Z' + - '2023-05-29T11:00:00Z' + - '2023-05-29T12:00:00Z' + - '2023-05-29T13:00:00Z' + - '2023-05-29T14:00:00Z' + - '2023-05-29T15:00:00Z' + - '2023-05-29T16:00:00Z' + - '2023-05-29T17:00:00Z' + - '2023-05-29T18:00:00Z' + - '2023-05-29T19:00:00Z' + - '2023-05-29T20:00:00Z' + - '2023-05-29T21:00:00Z' + - '2023-05-29T22:00:00Z' + - '2023-05-29T23:00:00Z' + - '2023-05-30T00:00:00Z' + - '2023-05-30T01:00:00Z' + - '2023-05-30T02:00:00Z' + - '2023-05-30T03:00:00Z' + - '2023-05-30T04:00:00Z' + - '2023-05-30T05:00:00Z' + - '2023-05-30T06:00:00Z' + - '2023-05-30T07:00:00Z' + - '2023-05-30T08:00:00Z' + - '2023-05-30T09:00:00Z' + - '2023-05-30T10:00:00Z' + - '2023-05-30T11:00:00Z' + - '2023-05-30T12:00:00Z' + - '2023-05-30T13:00:00Z' + - '2023-05-30T14:00:00Z' + - '2023-05-30T15:00:00Z' + - '2023-05-30T16:00:00Z' + - '2023-05-30T17:00:00Z' + - '2023-05-30T18:00:00Z' + - '2023-05-30T19:00:00Z' + - '2023-05-30T20:00:00Z' + - '2023-05-30T21:00:00Z' + - '2023-05-30T22:00:00Z' + - '2023-05-30T23:00:00Z' + - '2023-05-31T00:00:00Z' + - '2023-05-31T01:00:00Z' + - '2023-05-31T02:00:00Z' + - '2023-05-31T03:00:00Z' + - '2023-05-31T04:00:00Z' + - '2023-05-31T05:00:00Z' + - '2023-05-31T06:00:00Z' + - '2023-05-31T07:00:00Z' + - '2023-05-31T08:00:00Z' + - '2023-05-31T09:00:00Z' + - '2023-05-31T10:00:00Z' + - '2023-05-31T11:00:00Z' + - '2023-05-31T12:00:00Z' + - '2023-05-31T13:00:00Z' + - '2023-05-31T14:00:00Z' + - '2023-05-31T15:00:00Z' + - '2023-05-31T16:00:00Z' + - '2023-05-31T17:00:00Z' + - '2023-05-31T18:00:00Z' + - '2023-05-31T19:00:00Z' + - '2023-05-31T20:00:00Z' + - '2023-05-31T21:00:00Z' + - '2023-05-31T22:00:00Z' + - '2023-05-31T23:00:00Z' + - '2023-06-01T00:00:00Z' + - '2023-06-01T01:00:00Z' + - '2023-06-01T02:00:00Z' + - '2023-06-01T03:00:00Z' + - '2023-06-01T04:00:00Z' + - '2023-06-01T05:00:00Z' + - '2023-06-01T06:00:00Z' + - '2023-06-01T07:00:00Z' + - '2023-06-01T08:00:00Z' + - '2023-06-01T09:00:00Z' + - '2023-06-01T10:00:00Z' + - '2023-06-01T11:00:00Z' + - '2023-06-01T12:00:00Z' + - '2023-06-01T13:00:00Z' + - '2023-06-01T14:00:00Z' + - '2023-06-01T15:00:00Z' + - '2023-06-01T16:00:00Z' + - '2023-06-01T17:00:00Z' + - '2023-06-01T18:00:00Z' + - '2023-06-01T19:00:00Z' + - '2023-06-01T20:00:00Z' + - '2023-06-01T21:00:00Z' + - '2023-06-01T22:00:00Z' + - '2023-06-01T23:00:00Z' + - '2023-06-02T00:00:00Z' + - '2023-06-02T01:00:00Z' + - '2023-06-02T02:00:00Z' + - '2023-06-02T03:00:00Z' + - '2023-06-02T04:00:00Z' + - '2023-06-02T05:00:00Z' + - '2023-06-02T06:00:00Z' + - '2023-06-02T07:00:00Z' + - '2023-06-02T08:00:00Z' + - '2023-06-02T09:00:00Z' + - '2023-06-02T10:00:00Z' + - '2023-06-02T11:00:00Z' + - '2023-06-02T12:00:00Z' + - '2023-06-02T13:00:00Z' + - '2023-06-02T14:00:00Z' + - '2023-06-02T15:00:00Z' + - '2023-06-02T16:00:00Z' + - '2023-06-02T17:00:00Z' + - '2023-06-02T18:00:00Z' + - '2023-06-02T19:00:00Z' + - '2023-06-02T20:00:00Z' + - '2023-06-02T21:00:00Z' + - '2023-06-02T22:00:00Z' + - '2023-06-02T23:00:00Z' + - '2023-06-03T00:00:00Z' + - '2023-06-03T01:00:00Z' + - '2023-06-03T02:00:00Z' + - '2023-06-03T03:00:00Z' + - '2023-06-03T04:00:00Z' + - '2023-06-03T05:00:00Z' + - '2023-06-03T06:00:00Z' + - '2023-06-03T07:00:00Z' + - '2023-06-03T08:00:00Z' + - '2023-06-03T09:00:00Z' + - '2023-06-03T10:00:00Z' + - '2023-06-03T11:00:00Z' + - '2023-06-03T12:00:00Z' + - '2023-06-03T13:00:00Z' + - '2023-06-03T14:00:00Z' + - '2023-06-03T15:00:00Z' + - '2023-06-03T16:00:00Z' + - '2023-06-03T17:00:00Z' + - '2023-06-03T18:00:00Z' + - '2023-06-03T19:00:00Z' + - '2023-06-03T20:00:00Z' + - '2023-06-03T21:00:00Z' + - '2023-06-03T22:00:00Z' + - '2023-06-03T23:00:00Z' + - '2023-06-04T00:00:00Z' + - '2023-06-04T01:00:00Z' + - '2023-06-04T02:00:00Z' + - '2023-06-04T03:00:00Z' + - '2023-06-04T04:00:00Z' + - '2023-06-04T05:00:00Z' + - '2023-06-04T06:00:00Z' + - '2023-06-04T07:00:00Z' + - '2023-06-04T08:00:00Z' + - '2023-06-04T09:00:00Z' + - '2023-06-04T10:00:00Z' + - '2023-06-04T11:00:00Z' + - '2023-06-04T12:00:00Z' + - '2023-06-04T13:00:00Z' + - '2023-06-04T14:00:00Z' + - '2023-06-04T15:00:00Z' + - '2023-06-04T16:00:00Z' + - '2023-06-04T17:00:00Z' + - '2023-06-04T18:00:00Z' + - '2023-06-04T19:00:00Z' + - '2023-06-04T20:00:00Z' + - '2023-06-04T21:00:00Z' + - '2023-06-04T22:00:00Z' + - '2023-06-04T23:00:00Z' + - '2023-06-05T00:00:00Z' + - '2023-06-05T01:00:00Z' + - '2023-06-05T02:00:00Z' + - '2023-06-05T03:00:00Z' + - '2023-06-05T04:00:00Z' + - '2023-06-05T05:00:00Z' + - '2023-06-05T06:00:00Z' + - '2023-06-05T07:00:00Z' + - '2023-06-05T08:00:00Z' + - '2023-06-05T09:00:00Z' + - '2023-06-05T10:00:00Z' + - '2023-06-05T11:00:00Z' + - '2023-06-05T12:00:00Z' + - '2023-06-05T13:00:00Z' + - '2023-06-05T14:00:00Z' + - '2023-06-05T15:00:00Z' + - '2023-06-05T16:00:00Z' + - '2023-06-05T17:00:00Z' + - '2023-06-05T18:00:00Z' + - '2023-06-05T19:00:00Z' + - '2023-06-05T20:00:00Z' + - '2023-06-05T21:00:00Z' + - '2023-06-05T22:00:00Z' + - '2023-06-05T23:00:00Z' + - '2023-06-06T00:00:00Z' + - '2023-06-06T01:00:00Z' + - '2023-06-06T02:00:00Z' + - '2023-06-06T03:00:00Z' + - '2023-06-06T04:00:00Z' + - '2023-06-06T05:00:00Z' + - '2023-06-06T06:00:00Z' + - '2023-06-06T07:00:00Z' + - '2023-06-06T08:00:00Z' + - '2023-06-06T09:00:00Z' + - '2023-06-06T10:00:00Z' + - '2023-06-06T11:00:00Z' + - '2023-06-06T12:00:00Z' + - '2023-06-06T13:00:00Z' + - '2023-06-06T14:00:00Z' + - '2023-06-06T15:00:00Z' + - '2023-06-06T16:00:00Z' + - '2023-06-06T17:00:00Z' + - '2023-06-06T18:00:00Z' + - '2023-06-06T19:00:00Z' + - '2023-06-06T20:00:00Z' + - '2023-06-06T21:00:00Z' + - '2023-06-06T22:00:00Z' + - '2023-06-06T23:00:00Z' + - '2023-06-07T00:00:00Z' + - '2023-06-07T01:00:00Z' + - '2023-06-07T02:00:00Z' + - '2023-06-07T03:00:00Z' + - '2023-06-07T04:00:00Z' + - '2023-06-07T05:00:00Z' + - '2023-06-07T06:00:00Z' + - '2023-06-07T07:00:00Z' + - '2023-06-07T08:00:00Z' + - '2023-06-07T09:00:00Z' + - '2023-06-07T10:00:00Z' + - '2023-06-07T11:00:00Z' + - '2023-06-07T12:00:00Z' + - '2023-06-07T13:00:00Z' + - '2023-06-07T14:00:00Z' + - '2023-06-07T15:00:00Z' + - '2023-06-07T16:00:00Z' + - '2023-06-07T17:00:00Z' + - '2023-06-07T18:00:00Z' + - '2023-06-07T19:00:00Z' + - '2023-06-07T20:00:00Z' + - '2023-06-07T21:00:00Z' + - '2023-06-07T22:00:00Z' + - '2023-06-07T23:00:00Z' + - '2023-06-08T00:00:00Z' + - '2023-06-08T01:00:00Z' + - '2023-06-08T02:00:00Z' + - '2023-06-08T03:00:00Z' + - '2023-06-08T04:00:00Z' + - '2023-06-08T05:00:00Z' + - '2023-06-08T06:00:00Z' + - '2023-06-08T07:00:00Z' + - '2023-06-08T08:00:00Z' + - '2023-06-08T09:00:00Z' + - '2023-06-08T10:00:00Z' + - '2023-06-08T11:00:00Z' + - '2023-06-08T12:00:00Z' + - '2023-06-08T13:00:00Z' + - '2023-06-08T14:00:00Z' + - '2023-06-08T15:00:00Z' + - '2023-06-08T16:00:00Z' + - '2023-06-08T17:00:00Z' + - '2023-06-08T18:00:00Z' + - '2023-06-08T19:00:00Z' + - '2023-06-08T20:00:00Z' + - '2023-06-08T21:00:00Z' + - '2023-06-08T22:00:00Z' + - '2023-06-08T23:00:00Z' + - '2023-06-09T00:00:00Z' + - '2023-06-09T01:00:00Z' + - '2023-06-09T02:00:00Z' + - '2023-06-09T03:00:00Z' + - '2023-06-09T04:00:00Z' + - '2023-06-09T05:00:00Z' + - '2023-06-09T06:00:00Z' + - '2023-06-09T07:00:00Z' + - '2023-06-09T08:00:00Z' + - '2023-06-09T09:00:00Z' + - '2023-06-09T10:00:00Z' + - '2023-06-09T11:00:00Z' + - '2023-06-09T12:00:00Z' + - '2023-06-09T13:00:00Z' + - '2023-06-09T14:00:00Z' + - '2023-06-09T15:00:00Z' + - '2023-06-09T16:00:00Z' + - '2023-06-09T17:00:00Z' + - '2023-06-09T18:00:00Z' + - '2023-06-09T19:00:00Z' + - '2023-06-09T20:00:00Z' + - '2023-06-09T21:00:00Z' + - '2023-06-09T22:00:00Z' + - '2023-06-09T23:00:00Z' + - '2023-06-10T00:00:00Z' + - '2023-06-10T01:00:00Z' + - '2023-06-10T02:00:00Z' + - '2023-06-10T03:00:00Z' + - '2023-06-10T04:00:00Z' + - '2023-06-10T05:00:00Z' + - '2023-06-10T06:00:00Z' + - '2023-06-10T07:00:00Z' + - '2023-06-10T08:00:00Z' + - '2023-06-10T09:00:00Z' + - '2023-06-10T10:00:00Z' + - '2023-06-10T11:00:00Z' + - '2023-06-10T12:00:00Z' + - '2023-06-10T13:00:00Z' + - '2023-06-10T14:00:00Z' + - '2023-06-10T15:00:00Z' + - '2023-06-10T16:00:00Z' + - '2023-06-10T17:00:00Z' + - '2023-06-10T18:00:00Z' + - '2023-06-10T19:00:00Z' + - '2023-06-10T20:00:00Z' + - '2023-06-10T21:00:00Z' + - '2023-06-10T22:00:00Z' + - '2023-06-10T23:00:00Z' + - '2023-06-11T00:00:00Z' + - '2023-06-11T01:00:00Z' + - '2023-06-11T02:00:00Z' + - '2023-06-11T03:00:00Z' + - '2023-06-11T04:00:00Z' + - '2023-06-11T05:00:00Z' + - '2023-06-11T06:00:00Z' + - '2023-06-11T07:00:00Z' + - '2023-06-11T08:00:00Z' + - '2023-06-11T09:00:00Z' + - '2023-06-11T10:00:00Z' + - '2023-06-11T11:00:00Z' + - '2023-06-11T12:00:00Z' + - '2023-06-11T13:00:00Z' + - '2023-06-11T14:00:00Z' + - '2023-06-11T15:00:00Z' + - '2023-06-11T16:00:00Z' + - '2023-06-11T17:00:00Z' + - '2023-06-11T18:00:00Z' + - '2023-06-11T19:00:00Z' + - '2023-06-11T20:00:00Z' + - '2023-06-11T21:00:00Z' + - '2023-06-11T22:00:00Z' + - '2023-06-11T23:00:00Z' + - '2023-06-12T00:00:00Z' + - '2023-06-12T01:00:00Z' + - '2023-06-12T02:00:00Z' + - '2023-06-12T03:00:00Z' + - '2023-06-12T04:00:00Z' + - '2023-06-12T05:00:00Z' + - '2023-06-12T06:00:00Z' + - '2023-06-12T07:00:00Z' + - '2023-06-12T08:00:00Z' + - '2023-06-12T09:00:00Z' + - '2023-06-12T10:00:00Z' + - '2023-06-12T11:00:00Z' + - '2023-06-12T12:00:00Z' + - '2023-06-12T13:00:00Z' + - '2023-06-12T14:00:00Z' + - '2023-06-12T15:00:00Z' + - '2023-06-12T16:00:00Z' + - '2023-06-12T17:00:00Z' + - '2023-06-12T18:00:00Z' + - '2023-06-12T19:00:00Z' + - '2023-06-12T20:00:00Z' + - '2023-06-12T21:00:00Z' + - '2023-06-12T22:00:00Z' + - '2023-06-12T23:00:00Z' + - '2023-06-13T00:00:00Z' + - '2023-06-13T01:00:00Z' + - '2023-06-13T02:00:00Z' + - '2023-06-13T03:00:00Z' + - '2023-06-13T04:00:00Z' + - '2023-06-13T05:00:00Z' + - '2023-06-13T06:00:00Z' + - '2023-06-13T07:00:00Z' + - '2023-06-13T08:00:00Z' + - '2023-06-13T09:00:00Z' + - '2023-06-13T10:00:00Z' + - '2023-06-13T11:00:00Z' + - '2023-06-13T12:00:00Z' + - '2023-06-13T13:00:00Z' + - '2023-06-13T14:00:00Z' + - '2023-06-13T15:00:00Z' + - '2023-06-13T16:00:00Z' + - '2023-06-13T17:00:00Z' + - '2023-06-13T18:00:00Z' + - '2023-06-13T19:00:00Z' + - '2023-06-13T20:00:00Z' + - '2023-06-13T21:00:00Z' + - '2023-06-13T22:00:00Z' + - '2023-06-13T23:00:00Z' + - '2023-06-14T00:00:00Z' + - '2023-06-14T01:00:00Z' + - '2023-06-14T02:00:00Z' + - '2023-06-14T03:00:00Z' + - '2023-06-14T04:00:00Z' + - '2023-06-14T05:00:00Z' + - '2023-06-14T06:00:00Z' + - '2023-06-14T07:00:00Z' + - '2023-06-14T08:00:00Z' + - '2023-06-14T09:00:00Z' + - '2023-06-14T10:00:00Z' + - '2023-06-14T11:00:00Z' + - '2023-06-14T12:00:00Z' + - '2023-06-14T13:00:00Z' + - '2023-06-14T14:00:00Z' + - '2023-06-14T15:00:00Z' + - '2023-06-14T16:00:00Z' + - '2023-06-14T17:00:00Z' + - '2023-06-14T18:00:00Z' + - '2023-06-14T19:00:00Z' + - '2023-06-14T20:00:00Z' + - '2023-06-14T21:00:00Z' + - '2023-06-14T22:00:00Z' + - '2023-06-14T23:00:00Z' + - '2023-06-15T00:00:00Z' + - '2023-06-15T01:00:00Z' + - '2023-06-15T02:00:00Z' + - '2023-06-15T03:00:00Z' + - '2023-06-15T04:00:00Z' + - '2023-06-15T05:00:00Z' + - '2023-06-15T06:00:00Z' + - '2023-06-15T07:00:00Z' + - '2023-06-15T08:00:00Z' + - '2023-06-15T09:00:00Z' + - '2023-06-15T10:00:00Z' + - '2023-06-15T11:00:00Z' + - '2023-06-15T12:00:00Z' + - '2023-06-15T13:00:00Z' + - '2023-06-15T14:00:00Z' + - '2023-06-15T15:00:00Z' + - '2023-06-15T16:00:00Z' + - '2023-06-15T17:00:00Z' + - '2023-06-15T18:00:00Z' + - '2023-06-15T19:00:00Z' + - '2023-06-15T20:00:00Z' + - '2023-06-15T21:00:00Z' + - '2023-06-15T22:00:00Z' + - '2023-06-15T23:00:00Z' + - '2023-06-16T00:00:00Z' + - '2023-06-16T01:00:00Z' + - '2023-06-16T02:00:00Z' + - '2023-06-16T03:00:00Z' + - '2023-06-16T04:00:00Z' + - '2023-06-16T05:00:00Z' + - '2023-06-16T06:00:00Z' + - '2023-06-16T07:00:00Z' + - '2023-06-16T08:00:00Z' + - '2023-06-16T09:00:00Z' + - '2023-06-16T10:00:00Z' + - '2023-06-16T11:00:00Z' + - '2023-06-16T12:00:00Z' + - '2023-06-16T13:00:00Z' + - '2023-06-16T14:00:00Z' + - '2023-06-16T15:00:00Z' + - '2023-06-16T16:00:00Z' + - '2023-06-16T17:00:00Z' + - '2023-06-16T18:00:00Z' + - '2023-06-16T19:00:00Z' + - '2023-06-16T20:00:00Z' + - '2023-06-16T21:00:00Z' + - '2023-06-16T22:00:00Z' + - '2023-06-16T23:00:00Z' + - '2023-06-17T00:00:00Z' + - '2023-06-17T01:00:00Z' + - '2023-06-17T02:00:00Z' + - '2023-06-17T03:00:00Z' + - '2023-06-17T04:00:00Z' + - '2023-06-17T05:00:00Z' + - '2023-06-17T06:00:00Z' + - '2023-06-17T07:00:00Z' + - '2023-06-17T08:00:00Z' + - '2023-06-17T09:00:00Z' + - '2023-06-17T10:00:00Z' + - '2023-06-17T11:00:00Z' + - '2023-06-17T12:00:00Z' + - '2023-06-17T13:00:00Z' + - '2023-06-17T14:00:00Z' + - '2023-06-17T15:00:00Z' + - '2023-06-17T16:00:00Z' + - '2023-06-17T17:00:00Z' + - '2023-06-17T18:00:00Z' + - '2023-06-17T19:00:00Z' + - '2023-06-17T20:00:00Z' + - '2023-06-17T21:00:00Z' + - '2023-06-17T22:00:00Z' + - '2023-06-17T23:00:00Z' + - '2023-06-18T00:00:00Z' + - '2023-06-18T01:00:00Z' + - '2023-06-18T02:00:00Z' + - '2023-06-18T03:00:00Z' + - '2023-06-18T04:00:00Z' + - '2023-06-18T05:00:00Z' + - '2023-06-18T06:00:00Z' + - '2023-06-18T07:00:00Z' + - '2023-06-18T08:00:00Z' + - '2023-06-18T09:00:00Z' + - '2023-06-18T10:00:00Z' + - '2023-06-18T11:00:00Z' + - '2023-06-18T12:00:00Z' + - '2023-06-18T13:00:00Z' + - '2023-06-18T14:00:00Z' + - '2023-06-18T15:00:00Z' + - '2023-06-18T16:00:00Z' + - '2023-06-18T17:00:00Z' + - '2023-06-18T18:00:00Z' + - '2023-06-18T19:00:00Z' + - '2023-06-18T20:00:00Z' + - '2023-06-18T21:00:00Z' + - '2023-06-18T22:00:00Z' + - '2023-06-18T23:00:00Z' + - '2023-06-19T00:00:00Z' + - '2023-06-19T01:00:00Z' + - '2023-06-19T02:00:00Z' + - '2023-06-19T03:00:00Z' + - '2023-06-19T04:00:00Z' + - '2023-06-19T05:00:00Z' + - '2023-06-19T06:00:00Z' + - '2023-06-19T07:00:00Z' + - '2023-06-19T08:00:00Z' + - '2023-06-19T09:00:00Z' + - '2023-06-19T10:00:00Z' + - '2023-06-19T11:00:00Z' + - '2023-06-19T12:00:00Z' + - '2023-06-19T13:00:00Z' + - '2023-06-19T14:00:00Z' + - '2023-06-19T15:00:00Z' + - '2023-06-19T16:00:00Z' + - '2023-06-19T17:00:00Z' + - '2023-06-19T18:00:00Z' + - '2023-06-19T19:00:00Z' + - '2023-06-19T20:00:00Z' + - '2023-06-19T21:00:00Z' + - '2023-06-19T22:00:00Z' + - '2023-06-19T23:00:00Z' + - '2023-06-20T00:00:00Z' + - '2023-06-20T01:00:00Z' + - '2023-06-20T02:00:00Z' + - '2023-06-20T03:00:00Z' + - '2023-06-20T04:00:00Z' + - '2023-06-20T05:00:00Z' + - '2023-06-20T06:00:00Z' + - '2023-06-20T07:00:00Z' + - '2023-06-20T08:00:00Z' + - '2023-06-20T09:00:00Z' + - '2023-06-20T10:00:00Z' + - '2023-06-20T11:00:00Z' + - '2023-06-20T12:00:00Z' + - '2023-06-20T13:00:00Z' + - '2023-06-20T14:00:00Z' + - '2023-06-20T15:00:00Z' + - '2023-06-20T16:00:00Z' + - '2023-06-20T17:00:00Z' + - '2023-06-20T18:00:00Z' + - '2023-06-20T19:00:00Z' + - '2023-06-20T20:00:00Z' + - '2023-06-20T21:00:00Z' + - '2023-06-20T22:00:00Z' + - '2023-06-20T23:00:00Z' + - '2023-06-21T00:00:00Z' + - '2023-06-21T01:00:00Z' + - '2023-06-21T02:00:00Z' + - '2023-06-21T03:00:00Z' + - '2023-06-21T04:00:00Z' + - '2023-06-21T05:00:00Z' + - '2023-06-21T06:00:00Z' + - '2023-06-21T07:00:00Z' + - '2023-06-21T08:00:00Z' + - '2023-06-21T09:00:00Z' + - '2023-06-21T10:00:00Z' + - '2023-06-21T11:00:00Z' + - '2023-06-21T12:00:00Z' + - '2023-06-21T13:00:00Z' + - '2023-06-21T14:00:00Z' + - '2023-06-21T15:00:00Z' + - '2023-06-21T16:00:00Z' + - '2023-06-21T17:00:00Z' + - '2023-06-21T18:00:00Z' + - '2023-06-21T19:00:00Z' + - '2023-06-21T20:00:00Z' + - '2023-06-21T21:00:00Z' + - '2023-06-21T22:00:00Z' + - '2023-06-21T23:00:00Z' + - '2023-06-22T00:00:00Z' + - '2023-06-22T01:00:00Z' + - '2023-06-22T02:00:00Z' + - '2023-06-22T03:00:00Z' + - '2023-06-22T04:00:00Z' + - '2023-06-22T05:00:00Z' + - '2023-06-22T06:00:00Z' + - '2023-06-22T07:00:00Z' + - '2023-06-22T08:00:00Z' + - '2023-06-22T09:00:00Z' + - '2023-06-22T10:00:00Z' + - '2023-06-22T11:00:00Z' + - '2023-06-22T12:00:00Z' + - '2023-06-22T13:00:00Z' + - '2023-06-22T14:00:00Z' + - '2023-06-22T15:00:00Z' + - '2023-06-22T16:00:00Z' + - '2023-06-22T17:00:00Z' + - '2023-06-22T18:00:00Z' + - '2023-06-22T19:00:00Z' + - '2023-06-22T20:00:00Z' + - '2023-06-22T21:00:00Z' + - '2023-06-22T22:00:00Z' + - '2023-06-22T23:00:00Z' + - '2023-06-23T00:00:00Z' + - '2023-06-23T01:00:00Z' + - '2023-06-23T02:00:00Z' + - '2023-06-23T03:00:00Z' + - '2023-06-23T04:00:00Z' + - '2023-06-23T05:00:00Z' + - '2023-06-23T06:00:00Z' + - '2023-06-23T07:00:00Z' + - '2023-06-23T08:00:00Z' + - '2023-06-23T09:00:00Z' + - '2023-06-23T10:00:00Z' + - '2023-06-23T11:00:00Z' + - '2023-06-23T12:00:00Z' + - '2023-06-23T13:00:00Z' + - '2023-06-23T14:00:00Z' + - '2023-06-23T15:00:00Z' + - '2023-06-23T16:00:00Z' + - '2023-06-23T17:00:00Z' + - '2023-06-23T18:00:00Z' + - '2023-06-23T19:00:00Z' + - '2023-06-23T20:00:00Z' + - '2023-06-23T21:00:00Z' + - '2023-06-23T22:00:00Z' + - '2023-06-23T23:00:00Z' + - '2023-06-24T00:00:00Z' + - '2023-06-24T01:00:00Z' + - '2023-06-24T02:00:00Z' + - '2023-06-24T03:00:00Z' + - '2023-06-24T04:00:00Z' + - '2023-06-24T05:00:00Z' + - '2023-06-24T06:00:00Z' + - '2023-06-24T07:00:00Z' + - '2023-06-24T08:00:00Z' + - '2023-06-24T09:00:00Z' + - '2023-06-24T10:00:00Z' + - '2023-06-24T11:00:00Z' + - '2023-06-24T12:00:00Z' + - '2023-06-24T13:00:00Z' + - '2023-06-24T14:00:00Z' + - '2023-06-24T15:00:00Z' + - '2023-06-24T16:00:00Z' + - '2023-06-24T17:00:00Z' + - '2023-06-24T18:00:00Z' + - '2023-06-24T19:00:00Z' + - '2023-06-24T20:00:00Z' + - '2023-06-24T21:00:00Z' + - '2023-06-24T22:00:00Z' + - '2023-06-24T23:00:00Z' + - '2023-06-25T00:00:00Z' + - '2023-06-25T01:00:00Z' + - '2023-06-25T02:00:00Z' + - '2023-06-25T03:00:00Z' + - '2023-06-25T04:00:00Z' + - '2023-06-25T05:00:00Z' + - '2023-06-25T06:00:00Z' + - '2023-06-25T07:00:00Z' + - '2023-06-25T08:00:00Z' + - '2023-06-25T09:00:00Z' + - '2023-06-25T10:00:00Z' + - '2023-06-25T11:00:00Z' + - '2023-06-25T12:00:00Z' + - '2023-06-25T13:00:00Z' + - '2023-06-25T14:00:00Z' + - '2023-06-25T15:00:00Z' + - '2023-06-25T16:00:00Z' + - '2023-06-25T17:00:00Z' + - '2023-06-25T18:00:00Z' + - '2023-06-25T19:00:00Z' + - '2023-06-25T20:00:00Z' + - '2023-06-25T21:00:00Z' + - '2023-06-25T22:00:00Z' + - '2023-06-25T23:00:00Z' + - '2023-06-26T00:00:00Z' + - '2023-06-26T01:00:00Z' + - '2023-06-26T02:00:00Z' + - '2023-06-26T03:00:00Z' + - '2023-06-26T04:00:00Z' + - '2023-06-26T05:00:00Z' + - '2023-06-26T06:00:00Z' + - '2023-06-26T07:00:00Z' + - '2023-06-26T08:00:00Z' + - '2023-06-26T09:00:00Z' + - '2023-06-26T10:00:00Z' + - '2023-06-26T11:00:00Z' + - '2023-06-26T12:00:00Z' + - '2023-06-26T13:00:00Z' + - '2023-06-26T14:00:00Z' + - '2023-06-26T15:00:00Z' + - '2023-06-26T16:00:00Z' + - '2023-06-26T17:00:00Z' + - '2023-06-26T18:00:00Z' + - '2023-06-26T19:00:00Z' + - '2023-06-26T20:00:00Z' + - '2023-06-26T21:00:00Z' + - '2023-06-26T22:00:00Z' + - '2023-06-26T23:00:00Z' + - '2023-06-27T00:00:00Z' + - '2023-06-27T01:00:00Z' + - '2023-06-27T02:00:00Z' + - '2023-06-27T03:00:00Z' + - '2023-06-27T04:00:00Z' + - '2023-06-27T05:00:00Z' + - '2023-06-27T06:00:00Z' + - '2023-06-27T07:00:00Z' + - '2023-06-27T08:00:00Z' + - '2023-06-27T09:00:00Z' + - '2023-06-27T10:00:00Z' + - '2023-06-27T11:00:00Z' + - '2023-06-27T12:00:00Z' + - '2023-06-27T13:00:00Z' + - '2023-06-27T14:00:00Z' + - '2023-06-27T15:00:00Z' + - '2023-06-27T16:00:00Z' + - '2023-06-27T17:00:00Z' + - '2023-06-27T18:00:00Z' + - '2023-06-27T19:00:00Z' + - '2023-06-27T20:00:00Z' + - '2023-06-27T21:00:00Z' + - '2023-06-27T22:00:00Z' + - '2023-06-27T23:00:00Z' + - '2023-06-28T00:00:00Z' + - '2023-06-28T01:00:00Z' + - '2023-06-28T02:00:00Z' + - '2023-06-28T03:00:00Z' + - '2023-06-28T04:00:00Z' + - '2023-06-28T05:00:00Z' + - '2023-06-28T06:00:00Z' + - '2023-06-28T07:00:00Z' + - '2023-06-28T08:00:00Z' + - '2023-06-28T09:00:00Z' + - '2023-06-28T10:00:00Z' + - '2023-06-28T11:00:00Z' + - '2023-06-28T12:00:00Z' + - '2023-06-28T13:00:00Z' + - '2023-06-28T14:00:00Z' + - '2023-06-28T15:00:00Z' + - '2023-06-28T16:00:00Z' + - '2023-06-28T17:00:00Z' + - '2023-06-28T18:00:00Z' + - '2023-06-28T19:00:00Z' + - '2023-06-28T20:00:00Z' + - '2023-06-28T21:00:00Z' + - '2023-06-28T22:00:00Z' + - '2023-06-28T23:00:00Z' + - '2023-06-29T00:00:00Z' + - '2023-06-29T01:00:00Z' + - '2023-06-29T02:00:00Z' + - '2023-06-29T03:00:00Z' + - '2023-06-29T04:00:00Z' + - '2023-06-29T05:00:00Z' + - '2023-06-29T06:00:00Z' + - '2023-06-29T07:00:00Z' + - '2023-06-29T08:00:00Z' + - '2023-06-29T09:00:00Z' + - '2023-06-29T10:00:00Z' + - '2023-06-29T11:00:00Z' + - '2023-06-29T12:00:00Z' + - '2023-06-29T13:00:00Z' + - '2023-06-29T14:00:00Z' + - '2023-06-29T15:00:00Z' + - '2023-06-29T16:00:00Z' + - '2023-06-29T17:00:00Z' + - '2023-06-29T18:00:00Z' + - '2023-06-29T19:00:00Z' + - '2023-06-29T20:00:00Z' + - '2023-06-29T21:00:00Z' + - '2023-06-29T22:00:00Z' + - '2023-06-29T23:00:00Z' + - '2023-06-30T00:00:00Z' + - '2023-06-30T01:00:00Z' + - '2023-06-30T02:00:00Z' + - '2023-06-30T03:00:00Z' + - '2023-06-30T04:00:00Z' + - '2023-06-30T05:00:00Z' + - '2023-06-30T06:00:00Z' + - '2023-06-30T07:00:00Z' + - '2023-06-30T08:00:00Z' + - '2023-06-30T09:00:00Z' + - '2023-06-30T10:00:00Z' + - '2023-06-30T11:00:00Z' + - '2023-06-30T12:00:00Z' + - '2023-06-30T13:00:00Z' + - '2023-06-30T14:00:00Z' + - '2023-06-30T15:00:00Z' + - '2023-06-30T16:00:00Z' + - '2023-06-30T17:00:00Z' + - '2023-06-30T18:00:00Z' + - '2023-06-30T19:00:00Z' + - '2023-06-30T20:00:00Z' + - '2023-06-30T21:00:00Z' + - '2023-06-30T22:00:00Z' + - '2023-06-30T23:00:00Z' + - '2023-07-01T00:00:00Z' + - '2023-07-01T01:00:00Z' + - '2023-07-01T02:00:00Z' + - '2023-07-01T03:00:00Z' + - '2023-07-01T04:00:00Z' + - '2023-07-01T05:00:00Z' + - '2023-07-01T06:00:00Z' + - '2023-07-01T07:00:00Z' + - '2023-07-01T08:00:00Z' + - '2023-07-01T09:00:00Z' + - '2023-07-01T10:00:00Z' + - '2023-07-01T11:00:00Z' + - '2023-07-01T12:00:00Z' + - '2023-07-01T13:00:00Z' + - '2023-07-01T14:00:00Z' + - '2023-07-01T15:00:00Z' + - '2023-07-01T16:00:00Z' + - '2023-07-01T17:00:00Z' + - '2023-07-01T18:00:00Z' + - '2023-07-01T19:00:00Z' + - '2023-07-01T20:00:00Z' + - '2023-07-01T21:00:00Z' + - '2023-07-01T22:00:00Z' + - '2023-07-01T23:00:00Z' + - '2023-07-02T00:00:00Z' + - '2023-07-02T01:00:00Z' + - '2023-07-02T02:00:00Z' + - '2023-07-02T03:00:00Z' + - '2023-07-02T04:00:00Z' + - '2023-07-02T05:00:00Z' + - '2023-07-02T06:00:00Z' + - '2023-07-02T07:00:00Z' + - '2023-07-02T08:00:00Z' + - '2023-07-02T09:00:00Z' + - '2023-07-02T10:00:00Z' + - '2023-07-02T11:00:00Z' + - '2023-07-02T12:00:00Z' + - '2023-07-02T13:00:00Z' + - '2023-07-02T14:00:00Z' + - '2023-07-02T15:00:00Z' + - '2023-07-02T16:00:00Z' + - '2023-07-02T17:00:00Z' + - '2023-07-02T18:00:00Z' + - '2023-07-02T19:00:00Z' + - '2023-07-02T20:00:00Z' + - '2023-07-02T21:00:00Z' + - '2023-07-02T22:00:00Z' + - '2023-07-02T23:00:00Z' + - '2023-07-03T00:00:00Z' + - '2023-07-03T01:00:00Z' + - '2023-07-03T02:00:00Z' + - '2023-07-03T03:00:00Z' + - '2023-07-03T04:00:00Z' + - '2023-07-03T05:00:00Z' + - '2023-07-03T06:00:00Z' + - '2023-07-03T07:00:00Z' + - '2023-07-03T08:00:00Z' + - '2023-07-03T09:00:00Z' + - '2023-07-03T10:00:00Z' + - '2023-07-03T11:00:00Z' + - '2023-07-03T12:00:00Z' + - '2023-07-03T13:00:00Z' + - '2023-07-03T14:00:00Z' + - '2023-07-03T15:00:00Z' + - '2023-07-03T16:00:00Z' + - '2023-07-03T17:00:00Z' + - '2023-07-03T18:00:00Z' + - '2023-07-03T19:00:00Z' + - '2023-07-03T20:00:00Z' + - '2023-07-03T21:00:00Z' + - '2023-07-03T22:00:00Z' + - '2023-07-03T23:00:00Z' + - '2023-07-04T00:00:00Z' + - '2023-07-04T01:00:00Z' + - '2023-07-04T02:00:00Z' + - '2023-07-04T03:00:00Z' + - '2023-07-04T04:00:00Z' + - '2023-07-04T05:00:00Z' + - '2023-07-04T06:00:00Z' + - '2023-07-04T07:00:00Z' + - '2023-07-04T08:00:00Z' + - '2023-07-04T09:00:00Z' + - '2023-07-04T10:00:00Z' + - '2023-07-04T11:00:00Z' + - '2023-07-04T12:00:00Z' + - '2023-07-04T13:00:00Z' + - '2023-07-04T14:00:00Z' + - '2023-07-04T15:00:00Z' + - '2023-07-04T16:00:00Z' + - '2023-07-04T17:00:00Z' + - '2023-07-04T18:00:00Z' + - '2023-07-04T19:00:00Z' + - '2023-07-04T20:00:00Z' + - '2023-07-04T21:00:00Z' + - '2023-07-04T22:00:00Z' + - '2023-07-04T23:00:00Z' + - '2023-07-05T00:00:00Z' + - '2023-07-05T01:00:00Z' + - '2023-07-05T02:00:00Z' + - '2023-07-05T03:00:00Z' + - '2023-07-05T04:00:00Z' + - '2023-07-05T05:00:00Z' + - '2023-07-05T06:00:00Z' + - '2023-07-05T07:00:00Z' + - '2023-07-05T08:00:00Z' + - '2023-07-05T09:00:00Z' + - '2023-07-05T10:00:00Z' + - '2023-07-05T11:00:00Z' + - '2023-07-05T12:00:00Z' + - '2023-07-05T13:00:00Z' + - '2023-07-05T14:00:00Z' + - '2023-07-05T15:00:00Z' + - '2023-07-05T16:00:00Z' + - '2023-07-05T17:00:00Z' + - '2023-07-05T18:00:00Z' + - '2023-07-05T19:00:00Z' + - '2023-07-05T20:00:00Z' + - '2023-07-05T21:00:00Z' + - '2023-07-05T22:00:00Z' + - '2023-07-05T23:00:00Z' + - '2023-07-06T00:00:00Z' + - '2023-07-06T01:00:00Z' + - '2023-07-06T02:00:00Z' + - '2023-07-06T03:00:00Z' + - '2023-07-06T04:00:00Z' + - '2023-07-06T05:00:00Z' + - '2023-07-06T06:00:00Z' + - '2023-07-06T07:00:00Z' + - '2023-07-06T08:00:00Z' + - '2023-07-06T09:00:00Z' + - '2023-07-06T10:00:00Z' + - '2023-07-06T11:00:00Z' + - '2023-07-06T12:00:00Z' + - '2023-07-06T13:00:00Z' + - '2023-07-06T14:00:00Z' + - '2023-07-06T15:00:00Z' + - '2023-07-06T16:00:00Z' + - '2023-07-06T17:00:00Z' + - '2023-07-06T18:00:00Z' + - '2023-07-06T19:00:00Z' + - '2023-07-06T20:00:00Z' + - '2023-07-06T21:00:00Z' + - '2023-07-06T22:00:00Z' + - '2023-07-06T23:00:00Z' + - '2023-07-07T00:00:00Z' + - '2023-07-07T01:00:00Z' + - '2023-07-07T02:00:00Z' + - '2023-07-07T03:00:00Z' + - '2023-07-07T04:00:00Z' + - '2023-07-07T05:00:00Z' + - '2023-07-07T06:00:00Z' + - '2023-07-07T07:00:00Z' + - '2023-07-07T08:00:00Z' + - '2023-07-07T09:00:00Z' + - '2023-07-07T10:00:00Z' + - '2023-07-07T11:00:00Z' + - '2023-07-07T12:00:00Z' + - '2023-07-07T13:00:00Z' + - '2023-07-07T14:00:00Z' + - '2023-07-07T15:00:00Z' + - '2023-07-07T16:00:00Z' + - '2023-07-07T17:00:00Z' + - '2023-07-07T18:00:00Z' + - '2023-07-07T19:00:00Z' + - '2023-07-07T20:00:00Z' + - '2023-07-07T21:00:00Z' + - '2023-07-07T22:00:00Z' + - '2023-07-07T23:00:00Z' + - '2023-07-08T00:00:00Z' + - '2023-07-08T01:00:00Z' + - '2023-07-08T02:00:00Z' + - '2023-07-08T03:00:00Z' + - '2023-07-08T04:00:00Z' + - '2023-07-08T05:00:00Z' + - '2023-07-08T06:00:00Z' + - '2023-07-08T07:00:00Z' + - '2023-07-08T08:00:00Z' + - '2023-07-08T09:00:00Z' + - '2023-07-08T10:00:00Z' + - '2023-07-08T11:00:00Z' + - '2023-07-08T12:00:00Z' + - '2023-07-08T13:00:00Z' + - '2023-07-08T14:00:00Z' + - '2023-07-08T15:00:00Z' + - '2023-07-08T16:00:00Z' + - '2023-07-08T17:00:00Z' + - '2023-07-08T18:00:00Z' + - '2023-07-08T19:00:00Z' + - '2023-07-08T20:00:00Z' + - '2023-07-08T21:00:00Z' + - '2023-07-08T22:00:00Z' + - '2023-07-08T23:00:00Z' + - '2023-07-09T00:00:00Z' + - '2023-07-09T01:00:00Z' + - '2023-07-09T02:00:00Z' + - '2023-07-09T03:00:00Z' + - '2023-07-09T04:00:00Z' + - '2023-07-09T05:00:00Z' + - '2023-07-09T06:00:00Z' + - '2023-07-09T07:00:00Z' + - '2023-07-09T08:00:00Z' + - '2023-07-09T09:00:00Z' + - '2023-07-09T10:00:00Z' + - '2023-07-09T11:00:00Z' + - '2023-07-09T12:00:00Z' + - '2023-07-09T13:00:00Z' + - '2023-07-09T14:00:00Z' + - '2023-07-09T15:00:00Z' + - '2023-07-09T16:00:00Z' + - '2023-07-09T17:00:00Z' + - '2023-07-09T18:00:00Z' + - '2023-07-09T19:00:00Z' + - '2023-07-09T20:00:00Z' + - '2023-07-09T21:00:00Z' + - '2023-07-09T22:00:00Z' + - '2023-07-09T23:00:00Z' + - '2023-07-10T00:00:00Z' + - '2023-07-10T01:00:00Z' + - '2023-07-10T02:00:00Z' + - '2023-07-10T03:00:00Z' + - '2023-07-10T04:00:00Z' + - '2023-07-10T05:00:00Z' + - '2023-07-10T06:00:00Z' + - '2023-07-10T07:00:00Z' + - '2023-07-10T08:00:00Z' + - '2023-07-10T09:00:00Z' + - '2023-07-10T10:00:00Z' + - '2023-07-10T11:00:00Z' + - '2023-07-10T12:00:00Z' + - '2023-07-10T13:00:00Z' + - '2023-07-10T14:00:00Z' + - '2023-07-10T15:00:00Z' + - '2023-07-10T16:00:00Z' + - '2023-07-10T17:00:00Z' + - '2023-07-10T18:00:00Z' + - '2023-07-10T19:00:00Z' + - '2023-07-10T20:00:00Z' + - '2023-07-10T21:00:00Z' + - '2023-07-10T22:00:00Z' + - '2023-07-10T23:00:00Z' + - '2023-07-11T00:00:00Z' + - '2023-07-11T01:00:00Z' + - '2023-07-11T02:00:00Z' + - '2023-07-11T03:00:00Z' + - '2023-07-11T04:00:00Z' + - '2023-07-11T05:00:00Z' + - '2023-07-11T06:00:00Z' + - '2023-07-11T07:00:00Z' + - '2023-07-11T08:00:00Z' + - '2023-07-11T09:00:00Z' + - '2023-07-11T10:00:00Z' + - '2023-07-11T11:00:00Z' + - '2023-07-11T12:00:00Z' + - '2023-07-11T13:00:00Z' + - '2023-07-11T14:00:00Z' + - '2023-07-11T15:00:00Z' + - '2023-07-11T16:00:00Z' + - '2023-07-11T17:00:00Z' + - '2023-07-11T18:00:00Z' + - '2023-07-11T19:00:00Z' + - '2023-07-11T20:00:00Z' + - '2023-07-11T21:00:00Z' + - '2023-07-11T22:00:00Z' + - '2023-07-11T23:00:00Z' + - '2023-07-12T00:00:00Z' + - '2023-07-12T01:00:00Z' + - '2023-07-12T02:00:00Z' + - '2023-07-12T03:00:00Z' + - '2023-07-12T04:00:00Z' + - '2023-07-12T05:00:00Z' + - '2023-07-12T06:00:00Z' + - '2023-07-12T07:00:00Z' + - '2023-07-12T08:00:00Z' + - '2023-07-12T09:00:00Z' + - '2023-07-12T10:00:00Z' + - '2023-07-12T11:00:00Z' + - '2023-07-12T12:00:00Z' + - '2023-07-12T13:00:00Z' + - '2023-07-12T14:00:00Z' + - '2023-07-12T15:00:00Z' + - '2023-07-12T16:00:00Z' + - '2023-07-12T17:00:00Z' + - '2023-07-12T18:00:00Z' + - '2023-07-12T19:00:00Z' + - '2023-07-12T20:00:00Z' + - '2023-07-12T21:00:00Z' + - '2023-07-12T22:00:00Z' + - '2023-07-12T23:00:00Z' + - '2023-07-13T00:00:00Z' + - '2023-07-13T01:00:00Z' + - '2023-07-13T02:00:00Z' + - '2023-07-13T03:00:00Z' + - '2023-07-13T04:00:00Z' + - '2023-07-13T05:00:00Z' + - '2023-07-13T06:00:00Z' + - '2023-07-13T07:00:00Z' + - '2023-07-13T08:00:00Z' + - '2023-07-13T09:00:00Z' + - '2023-07-13T10:00:00Z' + - '2023-07-13T11:00:00Z' + - '2023-07-13T12:00:00Z' + - '2023-07-13T13:00:00Z' + - '2023-07-13T14:00:00Z' + - '2023-07-13T15:00:00Z' + - '2023-07-13T16:00:00Z' + - '2023-07-13T17:00:00Z' + - '2023-07-13T18:00:00Z' + - '2023-07-13T19:00:00Z' + - '2023-07-13T20:00:00Z' + - '2023-07-13T21:00:00Z' + - '2023-07-13T22:00:00Z' + - '2023-07-13T23:00:00Z' + - '2023-07-14T00:00:00Z' + - '2023-07-14T01:00:00Z' + - '2023-07-14T02:00:00Z' + - '2023-07-14T03:00:00Z' + - '2023-07-14T04:00:00Z' + - '2023-07-14T05:00:00Z' + - '2023-07-14T06:00:00Z' + - '2023-07-14T07:00:00Z' + - '2023-07-14T08:00:00Z' + - '2023-07-14T09:00:00Z' + - '2023-07-14T10:00:00Z' + - '2023-07-14T11:00:00Z' + - '2023-07-14T12:00:00Z' + - '2023-07-14T13:00:00Z' + - '2023-07-14T14:00:00Z' + - '2023-07-14T15:00:00Z' + - '2023-07-14T16:00:00Z' + - '2023-07-14T17:00:00Z' + - '2023-07-14T18:00:00Z' + - '2023-07-14T19:00:00Z' + - '2023-07-14T20:00:00Z' + - '2023-07-14T21:00:00Z' + - '2023-07-14T22:00:00Z' + - '2023-07-14T23:00:00Z' + - '2023-07-15T00:00:00Z' + - '2023-07-15T01:00:00Z' + - '2023-07-15T02:00:00Z' + - '2023-07-15T03:00:00Z' + - '2023-07-15T04:00:00Z' + - '2023-07-15T05:00:00Z' + - '2023-07-15T06:00:00Z' + - '2023-07-15T07:00:00Z' + - '2023-07-15T08:00:00Z' + - '2023-07-15T09:00:00Z' + - '2023-07-15T10:00:00Z' + - '2023-07-15T11:00:00Z' + - '2023-07-15T12:00:00Z' + - '2023-07-15T13:00:00Z' + - '2023-07-15T14:00:00Z' + - '2023-07-15T15:00:00Z' + - '2023-07-15T16:00:00Z' + - '2023-07-15T17:00:00Z' + - '2023-07-15T18:00:00Z' + - '2023-07-15T19:00:00Z' + - '2023-07-15T20:00:00Z' + - '2023-07-15T21:00:00Z' + - '2023-07-15T22:00:00Z' + - '2023-07-15T23:00:00Z' + - '2023-07-16T00:00:00Z' + - '2023-07-16T01:00:00Z' + - '2023-07-16T02:00:00Z' + - '2023-07-16T03:00:00Z' + - '2023-07-16T04:00:00Z' + - '2023-07-16T05:00:00Z' + - '2023-07-16T06:00:00Z' + - '2023-07-16T07:00:00Z' + - '2023-07-16T08:00:00Z' + - '2023-07-16T09:00:00Z' + - '2023-07-16T10:00:00Z' + - '2023-07-16T11:00:00Z' + - '2023-07-16T12:00:00Z' + - '2023-07-16T13:00:00Z' + - '2023-07-16T14:00:00Z' + - '2023-07-16T15:00:00Z' + - '2023-07-16T16:00:00Z' + - '2023-07-16T17:00:00Z' + - '2023-07-16T18:00:00Z' + - '2023-07-16T19:00:00Z' + - '2023-07-16T20:00:00Z' + - '2023-07-16T21:00:00Z' + - '2023-07-16T22:00:00Z' + - '2023-07-16T23:00:00Z' + - '2023-07-17T00:00:00Z' + - '2023-07-17T01:00:00Z' + - '2023-07-17T02:00:00Z' + - '2023-07-17T03:00:00Z' + - '2023-07-17T04:00:00Z' + - '2023-07-17T05:00:00Z' + - '2023-07-17T06:00:00Z' + - '2023-07-17T07:00:00Z' + - '2023-07-17T08:00:00Z' + - '2023-07-17T09:00:00Z' + - '2023-07-17T10:00:00Z' + - '2023-07-17T11:00:00Z' + - '2023-07-17T12:00:00Z' + - '2023-07-17T13:00:00Z' + - '2023-07-17T14:00:00Z' + - '2023-07-17T15:00:00Z' + - '2023-07-17T16:00:00Z' + - '2023-07-17T17:00:00Z' + - '2023-07-17T18:00:00Z' + - '2023-07-17T19:00:00Z' + - '2023-07-17T20:00:00Z' + - '2023-07-17T21:00:00Z' + - '2023-07-17T22:00:00Z' + - '2023-07-17T23:00:00Z' + - '2023-07-18T00:00:00Z' + - '2023-07-18T01:00:00Z' + - '2023-07-18T02:00:00Z' + - '2023-07-18T03:00:00Z' + - '2023-07-18T04:00:00Z' + - '2023-07-18T05:00:00Z' + - '2023-07-18T06:00:00Z' + - '2023-07-18T07:00:00Z' + - '2023-07-18T08:00:00Z' + - '2023-07-18T09:00:00Z' + - '2023-07-18T10:00:00Z' + - '2023-07-18T11:00:00Z' + - '2023-07-18T12:00:00Z' + - '2023-07-18T13:00:00Z' + - '2023-07-18T14:00:00Z' + - '2023-07-18T15:00:00Z' + - '2023-07-18T16:00:00Z' + - '2023-07-18T17:00:00Z' + - '2023-07-18T18:00:00Z' + - '2023-07-18T19:00:00Z' + - '2023-07-18T20:00:00Z' + - '2023-07-18T21:00:00Z' + - '2023-07-18T22:00:00Z' + - '2023-07-18T23:00:00Z' + - '2023-07-19T00:00:00Z' + - '2023-07-19T01:00:00Z' + - '2023-07-19T02:00:00Z' + - '2023-07-19T03:00:00Z' + - '2023-07-19T04:00:00Z' + - '2023-07-19T05:00:00Z' + - '2023-07-19T06:00:00Z' + - '2023-07-19T07:00:00Z' + - '2023-07-19T08:00:00Z' + - '2023-07-19T09:00:00Z' + - '2023-07-19T10:00:00Z' + - '2023-07-19T11:00:00Z' + - '2023-07-19T12:00:00Z' + - '2023-07-19T13:00:00Z' + - '2023-07-19T14:00:00Z' + - '2023-07-19T15:00:00Z' + - '2023-07-19T16:00:00Z' + - '2023-07-19T17:00:00Z' + - '2023-07-19T18:00:00Z' + - '2023-07-19T19:00:00Z' + - '2023-07-19T20:00:00Z' + - '2023-07-19T21:00:00Z' + - '2023-07-19T22:00:00Z' + - '2023-07-19T23:00:00Z' + - '2023-07-20T00:00:00Z' + - '2023-07-20T01:00:00Z' + - '2023-07-20T02:00:00Z' + - '2023-07-20T03:00:00Z' + - '2023-07-20T04:00:00Z' + - '2023-07-20T05:00:00Z' + - '2023-07-20T06:00:00Z' + - '2023-07-20T07:00:00Z' + - '2023-07-20T08:00:00Z' + - '2023-07-20T09:00:00Z' + - '2023-07-20T10:00:00Z' + - '2023-07-20T11:00:00Z' + - '2023-07-20T12:00:00Z' + - '2023-07-20T13:00:00Z' + - '2023-07-20T14:00:00Z' + - '2023-07-20T15:00:00Z' + - '2023-07-20T16:00:00Z' + - '2023-07-20T17:00:00Z' + - '2023-07-20T18:00:00Z' + - '2023-07-20T19:00:00Z' + - '2023-07-20T20:00:00Z' + - '2023-07-20T21:00:00Z' + - '2023-07-20T22:00:00Z' + - '2023-07-20T23:00:00Z' + - '2023-07-21T00:00:00Z' + - '2023-07-21T01:00:00Z' + - '2023-07-21T02:00:00Z' + - '2023-07-21T03:00:00Z' + - '2023-07-21T04:00:00Z' + - '2023-07-21T05:00:00Z' + - '2023-07-21T06:00:00Z' + - '2023-07-21T07:00:00Z' + - '2023-07-21T08:00:00Z' + - '2023-07-21T09:00:00Z' + - '2023-07-21T10:00:00Z' + - '2023-07-21T11:00:00Z' + - '2023-07-21T12:00:00Z' + - '2023-07-21T13:00:00Z' + - '2023-07-21T14:00:00Z' + - '2023-07-21T15:00:00Z' + - '2023-07-21T16:00:00Z' + - '2023-07-21T17:00:00Z' + - '2023-07-21T18:00:00Z' + - '2023-07-21T19:00:00Z' + - '2023-07-21T20:00:00Z' + - '2023-07-21T21:00:00Z' + - '2023-07-21T22:00:00Z' + - '2023-07-21T23:00:00Z' + - '2023-07-22T00:00:00Z' + - '2023-07-22T01:00:00Z' + - '2023-07-22T02:00:00Z' + - '2023-07-22T03:00:00Z' + - '2023-07-22T04:00:00Z' + - '2023-07-22T05:00:00Z' + - '2023-07-22T06:00:00Z' + - '2023-07-22T07:00:00Z' + - '2023-07-22T08:00:00Z' + - '2023-07-22T09:00:00Z' + - '2023-07-22T10:00:00Z' + - '2023-07-22T11:00:00Z' + - '2023-07-22T12:00:00Z' + - '2023-07-22T13:00:00Z' + - '2023-07-22T14:00:00Z' + - '2023-07-22T15:00:00Z' + - '2023-07-22T16:00:00Z' + - '2023-07-22T17:00:00Z' + - '2023-07-22T18:00:00Z' + - '2023-07-22T19:00:00Z' + - '2023-07-22T20:00:00Z' + - '2023-07-22T21:00:00Z' + - '2023-07-22T22:00:00Z' + - '2023-07-22T23:00:00Z' + - '2023-07-23T00:00:00Z' + - '2023-07-23T01:00:00Z' + - '2023-07-23T02:00:00Z' + - '2023-07-23T03:00:00Z' + - '2023-07-23T04:00:00Z' + - '2023-07-23T05:00:00Z' + - '2023-07-23T06:00:00Z' + - '2023-07-23T07:00:00Z' + - '2023-07-23T08:00:00Z' + - '2023-07-23T09:00:00Z' + - '2023-07-23T10:00:00Z' + - '2023-07-23T11:00:00Z' + - '2023-07-23T12:00:00Z' + - '2023-07-23T13:00:00Z' + - '2023-07-23T14:00:00Z' + - '2023-07-23T15:00:00Z' + - '2023-07-23T16:00:00Z' + - '2023-07-23T17:00:00Z' + - '2023-07-23T18:00:00Z' + - '2023-07-23T19:00:00Z' + - '2023-07-23T20:00:00Z' + - '2023-07-23T21:00:00Z' + - '2023-07-23T22:00:00Z' + - '2023-07-23T23:00:00Z' + - '2023-07-24T00:00:00Z' + - '2023-07-24T01:00:00Z' + - '2023-07-24T02:00:00Z' + - '2023-07-24T03:00:00Z' + - '2023-07-24T04:00:00Z' + - '2023-07-24T05:00:00Z' + - '2023-07-24T06:00:00Z' + - '2023-07-24T07:00:00Z' + - '2023-07-24T08:00:00Z' + - '2023-07-24T09:00:00Z' + - '2023-07-24T10:00:00Z' + - '2023-07-24T11:00:00Z' + - '2023-07-24T12:00:00Z' + - '2023-07-24T13:00:00Z' + - '2023-07-24T14:00:00Z' + - '2023-07-24T15:00:00Z' + - '2023-07-24T16:00:00Z' + - '2023-07-24T17:00:00Z' + - '2023-07-24T18:00:00Z' + - '2023-07-24T19:00:00Z' + - '2023-07-24T20:00:00Z' + - '2023-07-24T21:00:00Z' + - '2023-07-24T22:00:00Z' + - '2023-07-24T23:00:00Z' + - '2023-07-25T00:00:00Z' + - '2023-07-25T01:00:00Z' + - '2023-07-25T02:00:00Z' + - '2023-07-25T03:00:00Z' + - '2023-07-25T04:00:00Z' + - '2023-07-25T05:00:00Z' + - '2023-07-25T06:00:00Z' + - '2023-07-25T07:00:00Z' + - '2023-07-25T08:00:00Z' + - '2023-07-25T09:00:00Z' + - '2023-07-25T10:00:00Z' + - '2023-07-25T11:00:00Z' + - '2023-07-25T12:00:00Z' + - '2023-07-25T13:00:00Z' + - '2023-07-25T14:00:00Z' + - '2023-07-25T15:00:00Z' + - '2023-07-25T16:00:00Z' + - '2023-07-25T17:00:00Z' + - '2023-07-25T18:00:00Z' + - '2023-07-25T19:00:00Z' + - '2023-07-25T20:00:00Z' + - '2023-07-25T21:00:00Z' + - '2023-07-25T22:00:00Z' + - '2023-07-25T23:00:00Z' + - '2023-07-26T00:00:00Z' + - '2023-07-26T01:00:00Z' + - '2023-07-26T02:00:00Z' + - '2023-07-26T03:00:00Z' + - '2023-07-26T04:00:00Z' + - '2023-07-26T05:00:00Z' + - '2023-07-26T06:00:00Z' + - '2023-07-26T07:00:00Z' + - '2023-07-26T08:00:00Z' + - '2023-07-26T09:00:00Z' + - '2023-07-26T10:00:00Z' + - '2023-07-26T11:00:00Z' + - '2023-07-26T12:00:00Z' + - '2023-07-26T13:00:00Z' + - '2023-07-26T14:00:00Z' + - '2023-07-26T15:00:00Z' + - '2023-07-26T16:00:00Z' + - '2023-07-26T17:00:00Z' + - '2023-07-26T18:00:00Z' + - '2023-07-26T19:00:00Z' + - '2023-07-26T20:00:00Z' + - '2023-07-26T21:00:00Z' + - '2023-07-26T22:00:00Z' + - '2023-07-26T23:00:00Z' + - '2023-07-27T00:00:00Z' + - '2023-07-27T01:00:00Z' + - '2023-07-27T02:00:00Z' + - '2023-07-27T03:00:00Z' + - '2023-07-27T04:00:00Z' + - '2023-07-27T05:00:00Z' + - '2023-07-27T06:00:00Z' + - '2023-07-27T07:00:00Z' + - '2023-07-27T08:00:00Z' + - '2023-07-27T09:00:00Z' + - '2023-07-27T10:00:00Z' + - '2023-07-27T11:00:00Z' + - '2023-07-27T12:00:00Z' + - '2023-07-27T13:00:00Z' + - '2023-07-27T14:00:00Z' + - '2023-07-27T15:00:00Z' + - '2023-07-27T16:00:00Z' + - '2023-07-27T17:00:00Z' + - '2023-07-27T18:00:00Z' + - '2023-07-27T19:00:00Z' + - '2023-07-27T20:00:00Z' + - '2023-07-27T21:00:00Z' + - '2023-07-27T22:00:00Z' + - '2023-07-27T23:00:00Z' + - '2023-07-28T00:00:00Z' + - '2023-07-28T01:00:00Z' + - '2023-07-28T02:00:00Z' + - '2023-07-28T03:00:00Z' + - '2023-07-28T04:00:00Z' + - '2023-07-28T05:00:00Z' + - '2023-07-28T06:00:00Z' + - '2023-07-28T07:00:00Z' + - '2023-07-28T08:00:00Z' + - '2023-07-28T09:00:00Z' + - '2023-07-28T10:00:00Z' + - '2023-07-28T11:00:00Z' + - '2023-07-28T12:00:00Z' + - '2023-07-28T13:00:00Z' + - '2023-07-28T14:00:00Z' + - '2023-07-28T15:00:00Z' + - '2023-07-28T16:00:00Z' + - '2023-07-28T17:00:00Z' + - '2023-07-28T18:00:00Z' + - '2023-07-28T19:00:00Z' + - '2023-07-28T20:00:00Z' + - '2023-07-28T21:00:00Z' + - '2023-07-28T22:00:00Z' + - '2023-07-28T23:00:00Z' + - '2023-07-29T00:00:00Z' + - '2023-07-29T01:00:00Z' + - '2023-07-29T02:00:00Z' + - '2023-07-29T03:00:00Z' + - '2023-07-29T04:00:00Z' + - '2023-07-29T05:00:00Z' + - '2023-07-29T06:00:00Z' + - '2023-07-29T07:00:00Z' + - '2023-07-29T08:00:00Z' + - '2023-07-29T09:00:00Z' + - '2023-07-29T10:00:00Z' + - '2023-07-29T11:00:00Z' + - '2023-07-29T12:00:00Z' + - '2023-07-29T13:00:00Z' + - '2023-07-29T14:00:00Z' + - '2023-07-29T15:00:00Z' + - '2023-07-29T16:00:00Z' + - '2023-07-29T17:00:00Z' + - '2023-07-29T18:00:00Z' + - '2023-07-29T19:00:00Z' + - '2023-07-29T20:00:00Z' + - '2023-07-29T21:00:00Z' + - '2023-07-29T22:00:00Z' + - '2023-07-29T23:00:00Z' + - '2023-07-30T00:00:00Z' + - '2023-07-30T01:00:00Z' + - '2023-07-30T02:00:00Z' + - '2023-07-30T03:00:00Z' + - '2023-07-30T04:00:00Z' + - '2023-07-30T05:00:00Z' + - '2023-07-30T06:00:00Z' + - '2023-07-30T07:00:00Z' + - '2023-07-30T08:00:00Z' + - '2023-07-30T09:00:00Z' + - '2023-07-30T10:00:00Z' + - '2023-07-30T11:00:00Z' + - '2023-07-30T12:00:00Z' + - '2023-07-30T13:00:00Z' + - '2023-07-30T14:00:00Z' + - '2023-07-30T15:00:00Z' + - '2023-07-30T16:00:00Z' + - '2023-07-30T17:00:00Z' + - '2023-07-30T18:00:00Z' + - '2023-07-30T19:00:00Z' + - '2023-07-30T20:00:00Z' + - '2023-07-30T21:00:00Z' + - '2023-07-30T22:00:00Z' + - '2023-07-30T23:00:00Z' + - '2023-07-31T00:00:00Z' + - '2023-07-31T01:00:00Z' + - '2023-07-31T02:00:00Z' + - '2023-07-31T03:00:00Z' + - '2023-07-31T04:00:00Z' + - '2023-07-31T05:00:00Z' + - '2023-07-31T06:00:00Z' + - '2023-07-31T07:00:00Z' + - '2023-07-31T08:00:00Z' + - '2023-07-31T09:00:00Z' + - '2023-07-31T10:00:00Z' + - '2023-07-31T11:00:00Z' + - '2023-07-31T12:00:00Z' + - '2023-07-31T13:00:00Z' + - '2023-07-31T14:00:00Z' + - '2023-07-31T15:00:00Z' + - '2023-07-31T16:00:00Z' + - '2023-07-31T17:00:00Z' + - '2023-07-31T18:00:00Z' + - '2023-07-31T19:00:00Z' + - '2023-07-31T20:00:00Z' + - '2023-07-31T21:00:00Z' + - '2023-07-31T22:00:00Z' + - '2023-07-31T23:00:00Z' + - '2023-08-01T00:00:00Z' + - '2023-08-01T01:00:00Z' + - '2023-08-01T02:00:00Z' + - '2023-08-01T03:00:00Z' + - '2023-08-01T04:00:00Z' + - '2023-08-01T05:00:00Z' + - '2023-08-01T06:00:00Z' + - '2023-08-01T07:00:00Z' + - '2023-08-01T08:00:00Z' + - '2023-08-01T09:00:00Z' + - '2023-08-01T10:00:00Z' + - '2023-08-01T11:00:00Z' + - '2023-08-01T12:00:00Z' + - '2023-08-01T13:00:00Z' + - '2023-08-01T14:00:00Z' + - '2023-08-01T15:00:00Z' + - '2023-08-01T16:00:00Z' + - '2023-08-01T17:00:00Z' + - '2023-08-01T18:00:00Z' + - '2023-08-01T19:00:00Z' + - '2023-08-01T20:00:00Z' + - '2023-08-01T21:00:00Z' + - '2023-08-01T22:00:00Z' + - '2023-08-01T23:00:00Z' + - '2023-08-02T00:00:00Z' + - '2023-08-02T01:00:00Z' + - '2023-08-02T02:00:00Z' + - '2023-08-02T03:00:00Z' + - '2023-08-02T04:00:00Z' + - '2023-08-02T05:00:00Z' + - '2023-08-02T06:00:00Z' + - '2023-08-02T07:00:00Z' + - '2023-08-02T08:00:00Z' + - '2023-08-02T09:00:00Z' + - '2023-08-02T10:00:00Z' + - '2023-08-02T11:00:00Z' + - '2023-08-02T12:00:00Z' + - '2023-08-02T13:00:00Z' + - '2023-08-02T14:00:00Z' + - '2023-08-02T15:00:00Z' + - '2023-08-02T16:00:00Z' + - '2023-08-02T17:00:00Z' + - '2023-08-02T18:00:00Z' + - '2023-08-02T19:00:00Z' + - '2023-08-02T20:00:00Z' + - '2023-08-02T21:00:00Z' + - '2023-08-02T22:00:00Z' + - '2023-08-02T23:00:00Z' + - '2023-08-03T00:00:00Z' + - '2023-08-03T01:00:00Z' + - '2023-08-03T02:00:00Z' + - '2023-08-03T03:00:00Z' + - '2023-08-03T04:00:00Z' + - '2023-08-03T05:00:00Z' + - '2023-08-03T06:00:00Z' + - '2023-08-03T07:00:00Z' + - '2023-08-03T08:00:00Z' + - '2023-08-03T09:00:00Z' + - '2023-08-03T10:00:00Z' + - '2023-08-03T11:00:00Z' + - '2023-08-03T12:00:00Z' + - '2023-08-03T13:00:00Z' + - '2023-08-03T14:00:00Z' + - '2023-08-03T15:00:00Z' + - '2023-08-03T16:00:00Z' + - '2023-08-03T17:00:00Z' + - '2023-08-03T18:00:00Z' + - '2023-08-03T19:00:00Z' + - '2023-08-03T20:00:00Z' + - '2023-08-03T21:00:00Z' + - '2023-08-03T22:00:00Z' + - '2023-08-03T23:00:00Z' + - '2023-08-04T00:00:00Z' + - '2023-08-04T01:00:00Z' + - '2023-08-04T02:00:00Z' + - '2023-08-04T03:00:00Z' + - '2023-08-04T04:00:00Z' + - '2023-08-04T05:00:00Z' + - '2023-08-04T06:00:00Z' + - '2023-08-04T07:00:00Z' + - '2023-08-04T08:00:00Z' + - '2023-08-04T09:00:00Z' + - '2023-08-04T10:00:00Z' + - '2023-08-04T11:00:00Z' + - '2023-08-04T12:00:00Z' + - '2023-08-04T13:00:00Z' + - '2023-08-04T14:00:00Z' + - '2023-08-04T15:00:00Z' + - '2023-08-04T16:00:00Z' + - '2023-08-04T17:00:00Z' + - '2023-08-04T18:00:00Z' + - '2023-08-04T19:00:00Z' + - '2023-08-04T20:00:00Z' + - '2023-08-04T21:00:00Z' + - '2023-08-04T22:00:00Z' + - '2023-08-04T23:00:00Z' + - '2023-08-05T00:00:00Z' + - '2023-08-05T01:00:00Z' + - '2023-08-05T02:00:00Z' + - '2023-08-05T03:00:00Z' + - '2023-08-05T04:00:00Z' + - '2023-08-05T05:00:00Z' + - '2023-08-05T06:00:00Z' + - '2023-08-05T07:00:00Z' + - '2023-08-05T08:00:00Z' + - '2023-08-05T09:00:00Z' + - '2023-08-05T10:00:00Z' + - '2023-08-05T11:00:00Z' + - '2023-08-05T12:00:00Z' + - '2023-08-05T13:00:00Z' + - '2023-08-05T14:00:00Z' + - '2023-08-05T15:00:00Z' + - '2023-08-05T16:00:00Z' + - '2023-08-05T17:00:00Z' + - '2023-08-05T18:00:00Z' + - '2023-08-05T19:00:00Z' + - '2023-08-05T20:00:00Z' + - '2023-08-05T21:00:00Z' + - '2023-08-05T22:00:00Z' + - '2023-08-05T23:00:00Z' + - '2023-08-06T00:00:00Z' + - '2023-08-06T01:00:00Z' + - '2023-08-06T02:00:00Z' + - '2023-08-06T03:00:00Z' + - '2023-08-06T04:00:00Z' + - '2023-08-06T05:00:00Z' + - '2023-08-06T06:00:00Z' + - '2023-08-06T07:00:00Z' + - '2023-08-06T08:00:00Z' + - '2023-08-06T09:00:00Z' + - '2023-08-06T10:00:00Z' + - '2023-08-06T11:00:00Z' + - '2023-08-06T12:00:00Z' + - '2023-08-06T13:00:00Z' + - '2023-08-06T14:00:00Z' + - '2023-08-06T15:00:00Z' + - '2023-08-06T16:00:00Z' + - '2023-08-06T17:00:00Z' + - '2023-08-06T18:00:00Z' + - '2023-08-06T19:00:00Z' + - '2023-08-06T20:00:00Z' + - '2023-08-06T21:00:00Z' + - '2023-08-06T22:00:00Z' + - '2023-08-06T23:00:00Z' + - '2023-08-07T00:00:00Z' + - '2023-08-07T01:00:00Z' + - '2023-08-07T02:00:00Z' + - '2023-08-07T03:00:00Z' + - '2023-08-07T04:00:00Z' + - '2023-08-07T05:00:00Z' + - '2023-08-07T06:00:00Z' + - '2023-08-07T07:00:00Z' + - '2023-08-07T08:00:00Z' + - '2023-08-07T09:00:00Z' + - '2023-08-07T10:00:00Z' + - '2023-08-07T11:00:00Z' + - '2023-08-07T12:00:00Z' + - '2023-08-07T13:00:00Z' + - '2023-08-07T14:00:00Z' + - '2023-08-07T15:00:00Z' + - '2023-08-07T16:00:00Z' + - '2023-08-07T17:00:00Z' + - '2023-08-07T18:00:00Z' + - '2023-08-07T19:00:00Z' + - '2023-08-07T20:00:00Z' + - '2023-08-07T21:00:00Z' + - '2023-08-07T22:00:00Z' + - '2023-08-07T23:00:00Z' + - '2023-08-08T00:00:00Z' + - '2023-08-08T01:00:00Z' + - '2023-08-08T02:00:00Z' + - '2023-08-08T03:00:00Z' + - '2023-08-08T04:00:00Z' + - '2023-08-08T05:00:00Z' + - '2023-08-08T06:00:00Z' + - '2023-08-08T07:00:00Z' + - '2023-08-08T08:00:00Z' + - '2023-08-08T09:00:00Z' + - '2023-08-08T10:00:00Z' + - '2023-08-08T11:00:00Z' + - '2023-08-08T12:00:00Z' + - '2023-08-08T13:00:00Z' + - '2023-08-08T14:00:00Z' + - '2023-08-08T15:00:00Z' + - '2023-08-08T16:00:00Z' + - '2023-08-08T17:00:00Z' + - '2023-08-08T18:00:00Z' + - '2023-08-08T19:00:00Z' + - '2023-08-08T20:00:00Z' + - '2023-08-08T21:00:00Z' + - '2023-08-08T22:00:00Z' + - '2023-08-08T23:00:00Z' + - '2023-08-09T00:00:00Z' + - '2023-08-09T01:00:00Z' + - '2023-08-09T02:00:00Z' + - '2023-08-09T03:00:00Z' + - '2023-08-09T04:00:00Z' + - '2023-08-09T05:00:00Z' + - '2023-08-09T06:00:00Z' + - '2023-08-09T07:00:00Z' + - '2023-08-09T08:00:00Z' + - '2023-08-09T09:00:00Z' + - '2023-08-09T10:00:00Z' + - '2023-08-09T11:00:00Z' + - '2023-08-09T12:00:00Z' + - '2023-08-09T13:00:00Z' + - '2023-08-09T14:00:00Z' + - '2023-08-09T15:00:00Z' + - '2023-08-09T16:00:00Z' + - '2023-08-09T17:00:00Z' + - '2023-08-09T18:00:00Z' + - '2023-08-09T19:00:00Z' + - '2023-08-09T20:00:00Z' + - '2023-08-09T21:00:00Z' + - '2023-08-09T22:00:00Z' + - '2023-08-09T23:00:00Z' + - '2023-08-10T00:00:00Z' + - '2023-08-10T01:00:00Z' + - '2023-08-10T02:00:00Z' + - '2023-08-10T03:00:00Z' + - '2023-08-10T04:00:00Z' + - '2023-08-10T05:00:00Z' + - '2023-08-10T06:00:00Z' + - '2023-08-10T07:00:00Z' + - '2023-08-10T08:00:00Z' + - '2023-08-10T09:00:00Z' + - '2023-08-10T10:00:00Z' + - '2023-08-10T11:00:00Z' + - '2023-08-10T12:00:00Z' + - '2023-08-10T13:00:00Z' + - '2023-08-10T14:00:00Z' + - '2023-08-10T15:00:00Z' + - '2023-08-10T16:00:00Z' + - '2023-08-10T17:00:00Z' + - '2023-08-10T18:00:00Z' + - '2023-08-10T19:00:00Z' + - '2023-08-10T20:00:00Z' + - '2023-08-10T21:00:00Z' + - '2023-08-10T22:00:00Z' + - '2023-08-10T23:00:00Z' + - '2023-08-11T00:00:00Z' + - '2023-08-11T01:00:00Z' + - '2023-08-11T02:00:00Z' + - '2023-08-11T03:00:00Z' + - '2023-08-11T04:00:00Z' + - '2023-08-11T05:00:00Z' + - '2023-08-11T06:00:00Z' + - '2023-08-11T07:00:00Z' + - '2023-08-11T08:00:00Z' + - '2023-08-11T09:00:00Z' + - '2023-08-11T10:00:00Z' + - '2023-08-11T11:00:00Z' + - '2023-08-11T12:00:00Z' + - '2023-08-11T13:00:00Z' + - '2023-08-11T14:00:00Z' + - '2023-08-11T15:00:00Z' + - '2023-08-11T16:00:00Z' + - '2023-08-11T17:00:00Z' + - '2023-08-11T18:00:00Z' + - '2023-08-11T19:00:00Z' + - '2023-08-11T20:00:00Z' + - '2023-08-11T21:00:00Z' + - '2023-08-11T22:00:00Z' + - '2023-08-11T23:00:00Z' + - '2023-08-12T00:00:00Z' + - '2023-08-12T01:00:00Z' + - '2023-08-12T02:00:00Z' + - '2023-08-12T03:00:00Z' + - '2023-08-12T04:00:00Z' + - '2023-08-12T05:00:00Z' + - '2023-08-12T06:00:00Z' + - '2023-08-12T07:00:00Z' + - '2023-08-12T08:00:00Z' + - '2023-08-12T09:00:00Z' + - '2023-08-12T10:00:00Z' + - '2023-08-12T11:00:00Z' + - '2023-08-12T12:00:00Z' + - '2023-08-12T13:00:00Z' + - '2023-08-12T14:00:00Z' + - '2023-08-12T15:00:00Z' + - '2023-08-12T16:00:00Z' + - '2023-08-12T17:00:00Z' + - '2023-08-12T18:00:00Z' + - '2023-08-12T19:00:00Z' + - '2023-08-12T20:00:00Z' + - '2023-08-12T21:00:00Z' + - '2023-08-12T22:00:00Z' + - '2023-08-12T23:00:00Z' + - '2023-08-13T00:00:00Z' + - '2023-08-13T01:00:00Z' + - '2023-08-13T02:00:00Z' + - '2023-08-13T03:00:00Z' + - '2023-08-13T04:00:00Z' + - '2023-08-13T05:00:00Z' + - '2023-08-13T06:00:00Z' + - '2023-08-13T07:00:00Z' + - '2023-08-13T08:00:00Z' + - '2023-08-13T09:00:00Z' + - '2023-08-13T10:00:00Z' + - '2023-08-13T11:00:00Z' + - '2023-08-13T12:00:00Z' + - '2023-08-13T13:00:00Z' + - '2023-08-13T14:00:00Z' + - '2023-08-13T15:00:00Z' + - '2023-08-13T16:00:00Z' + - '2023-08-13T17:00:00Z' + - '2023-08-13T18:00:00Z' + - '2023-08-13T19:00:00Z' + - '2023-08-13T20:00:00Z' + - '2023-08-13T21:00:00Z' + - '2023-08-13T22:00:00Z' + - '2023-08-13T23:00:00Z' + - '2023-08-14T00:00:00Z' + - '2023-08-14T01:00:00Z' + - '2023-08-14T02:00:00Z' + - '2023-08-14T03:00:00Z' + - '2023-08-14T04:00:00Z' + - '2023-08-14T05:00:00Z' + - '2023-08-14T06:00:00Z' + - '2023-08-14T07:00:00Z' + - '2023-08-14T08:00:00Z' + - '2023-08-14T09:00:00Z' + - '2023-08-14T10:00:00Z' + - '2023-08-14T11:00:00Z' + - '2023-08-14T12:00:00Z' + - '2023-08-14T13:00:00Z' + - '2023-08-14T14:00:00Z' + - '2023-08-14T15:00:00Z' + - '2023-08-14T16:00:00Z' + - '2023-08-14T17:00:00Z' + - '2023-08-14T18:00:00Z' + - '2023-08-14T19:00:00Z' + - '2023-08-14T20:00:00Z' + - '2023-08-14T21:00:00Z' + - '2023-08-14T22:00:00Z' + - '2023-08-14T23:00:00Z' + - '2023-08-15T00:00:00Z' + - '2023-08-15T01:00:00Z' + - '2023-08-15T02:00:00Z' + - '2023-08-15T03:00:00Z' + - '2023-08-15T04:00:00Z' + - '2023-08-15T05:00:00Z' + - '2023-08-15T06:00:00Z' + - '2023-08-15T07:00:00Z' + - '2023-08-15T08:00:00Z' + - '2023-08-15T09:00:00Z' + - '2023-08-15T10:00:00Z' + - '2023-08-15T11:00:00Z' + - '2023-08-15T12:00:00Z' + - '2023-08-15T13:00:00Z' + - '2023-08-15T14:00:00Z' + - '2023-08-15T15:00:00Z' + - '2023-08-15T16:00:00Z' + - '2023-08-15T17:00:00Z' + - '2023-08-15T18:00:00Z' + - '2023-08-15T19:00:00Z' + - '2023-08-15T20:00:00Z' + - '2023-08-15T21:00:00Z' + - '2023-08-15T22:00:00Z' + - '2023-08-15T23:00:00Z' + - '2023-08-16T00:00:00Z' + - '2023-08-16T01:00:00Z' + - '2023-08-16T02:00:00Z' + - '2023-08-16T03:00:00Z' + - '2023-08-16T04:00:00Z' + - '2023-08-16T05:00:00Z' + - '2023-08-16T06:00:00Z' + - '2023-08-16T07:00:00Z' + - '2023-08-16T08:00:00Z' + - '2023-08-16T09:00:00Z' + - '2023-08-16T10:00:00Z' + - '2023-08-16T11:00:00Z' + - '2023-08-16T12:00:00Z' + - '2023-08-16T13:00:00Z' + - '2023-08-16T14:00:00Z' + - '2023-08-16T15:00:00Z' + - '2023-08-16T16:00:00Z' + - '2023-08-16T17:00:00Z' + - '2023-08-16T18:00:00Z' + - '2023-08-16T19:00:00Z' + - '2023-08-16T20:00:00Z' + - '2023-08-16T21:00:00Z' + - '2023-08-16T22:00:00Z' + - '2023-08-16T23:00:00Z' + - '2023-08-17T00:00:00Z' + - '2023-08-17T01:00:00Z' + - '2023-08-17T02:00:00Z' + - '2023-08-17T03:00:00Z' + - '2023-08-17T04:00:00Z' + - '2023-08-17T05:00:00Z' + - '2023-08-17T06:00:00Z' + - '2023-08-17T07:00:00Z' + - '2023-08-17T08:00:00Z' + - '2023-08-17T09:00:00Z' + - '2023-08-17T10:00:00Z' + - '2023-08-17T11:00:00Z' + - '2023-08-17T12:00:00Z' + - '2023-08-17T13:00:00Z' + - '2023-08-17T14:00:00Z' + - '2023-08-17T15:00:00Z' + - '2023-08-17T16:00:00Z' + - '2023-08-17T17:00:00Z' + - '2023-08-17T18:00:00Z' + - '2023-08-17T19:00:00Z' + - '2023-08-17T20:00:00Z' + - '2023-08-17T21:00:00Z' + - '2023-08-17T22:00:00Z' + - '2023-08-17T23:00:00Z' + - '2023-08-18T00:00:00Z' + - '2023-08-18T01:00:00Z' + - '2023-08-18T02:00:00Z' + - '2023-08-18T03:00:00Z' + - '2023-08-18T04:00:00Z' + - '2023-08-18T05:00:00Z' + - '2023-08-18T06:00:00Z' + - '2023-08-18T07:00:00Z' + - '2023-08-18T08:00:00Z' + - '2023-08-18T09:00:00Z' + - '2023-08-18T10:00:00Z' + - '2023-08-18T11:00:00Z' + - '2023-08-18T12:00:00Z' + - '2023-08-18T13:00:00Z' + - '2023-08-18T14:00:00Z' + - '2023-08-18T15:00:00Z' + - '2023-08-18T16:00:00Z' + - '2023-08-18T17:00:00Z' + - '2023-08-18T18:00:00Z' + - '2023-08-18T19:00:00Z' + - '2023-08-18T20:00:00Z' + - '2023-08-18T21:00:00Z' + - '2023-08-18T22:00:00Z' + - '2023-08-18T23:00:00Z' + - '2023-08-19T00:00:00Z' + - '2023-08-19T01:00:00Z' + - '2023-08-19T02:00:00Z' + - '2023-08-19T03:00:00Z' + - '2023-08-19T04:00:00Z' + - '2023-08-19T05:00:00Z' + - '2023-08-19T06:00:00Z' + - '2023-08-19T07:00:00Z' + - '2023-08-19T08:00:00Z' + - '2023-08-19T09:00:00Z' + - '2023-08-19T10:00:00Z' + - '2023-08-19T11:00:00Z' + - '2023-08-19T12:00:00Z' + - '2023-08-19T13:00:00Z' + - '2023-08-19T14:00:00Z' + - '2023-08-19T15:00:00Z' + - '2023-08-19T16:00:00Z' + - '2023-08-19T17:00:00Z' + - '2023-08-19T18:00:00Z' + - '2023-08-19T19:00:00Z' + - '2023-08-19T20:00:00Z' + - '2023-08-19T21:00:00Z' + - '2023-08-19T22:00:00Z' + - '2023-08-19T23:00:00Z' + - '2023-08-20T00:00:00Z' + - '2023-08-20T01:00:00Z' + - '2023-08-20T02:00:00Z' + - '2023-08-20T03:00:00Z' + - '2023-08-20T04:00:00Z' + - '2023-08-20T05:00:00Z' + - '2023-08-20T06:00:00Z' + - '2023-08-20T07:00:00Z' + - '2023-08-20T08:00:00Z' + - '2023-08-20T09:00:00Z' + - '2023-08-20T10:00:00Z' + - '2023-08-20T11:00:00Z' + - '2023-08-20T12:00:00Z' + - '2023-08-20T13:00:00Z' + - '2023-08-20T14:00:00Z' + - '2023-08-20T15:00:00Z' + - '2023-08-20T16:00:00Z' + - '2023-08-20T17:00:00Z' + - '2023-08-20T18:00:00Z' + - '2023-08-20T19:00:00Z' + - '2023-08-20T20:00:00Z' + - '2023-08-20T21:00:00Z' + - '2023-08-20T22:00:00Z' + - '2023-08-20T23:00:00Z' + - '2023-08-21T00:00:00Z' + - '2023-08-21T01:00:00Z' + - '2023-08-21T02:00:00Z' + - '2023-08-21T03:00:00Z' + - '2023-08-21T04:00:00Z' + - '2023-08-21T05:00:00Z' + - '2023-08-21T06:00:00Z' + - '2023-08-21T07:00:00Z' + - '2023-08-21T08:00:00Z' + - '2023-08-21T09:00:00Z' + - '2023-08-21T10:00:00Z' + - '2023-08-21T11:00:00Z' + - '2023-08-21T12:00:00Z' + - '2023-08-21T13:00:00Z' + - '2023-08-21T14:00:00Z' + - '2023-08-21T15:00:00Z' + - '2023-08-21T16:00:00Z' + - '2023-08-21T17:00:00Z' + - '2023-08-21T18:00:00Z' + - '2023-08-21T19:00:00Z' + - '2023-08-21T20:00:00Z' + - '2023-08-21T21:00:00Z' + - '2023-08-21T22:00:00Z' + - '2023-08-21T23:00:00Z' + - '2023-08-22T00:00:00Z' + - '2023-08-22T01:00:00Z' + - '2023-08-22T02:00:00Z' + - '2023-08-22T03:00:00Z' + - '2023-08-22T04:00:00Z' + - '2023-08-22T05:00:00Z' + - '2023-08-22T06:00:00Z' + - '2023-08-22T07:00:00Z' + - '2023-08-22T08:00:00Z' + - '2023-08-22T09:00:00Z' + - '2023-08-22T10:00:00Z' + - '2023-08-22T11:00:00Z' + - '2023-08-22T12:00:00Z' + - '2023-08-22T13:00:00Z' + - '2023-08-22T14:00:00Z' + - '2023-08-22T15:00:00Z' + - '2023-08-22T16:00:00Z' + - '2023-08-22T17:00:00Z' + - '2023-08-22T18:00:00Z' + - '2023-08-22T19:00:00Z' + - '2023-08-22T20:00:00Z' + - '2023-08-22T21:00:00Z' + - '2023-08-22T22:00:00Z' + - '2023-08-22T23:00:00Z' + - '2023-08-23T00:00:00Z' + - '2023-08-23T01:00:00Z' + - '2023-08-23T02:00:00Z' + - '2023-08-23T03:00:00Z' + - '2023-08-23T04:00:00Z' + - '2023-08-23T05:00:00Z' + - '2023-08-23T06:00:00Z' + - '2023-08-23T07:00:00Z' + - '2023-08-23T08:00:00Z' + - '2023-08-23T09:00:00Z' + - '2023-08-23T10:00:00Z' + - '2023-08-23T11:00:00Z' + - '2023-08-23T12:00:00Z' + - '2023-08-23T13:00:00Z' + - '2023-08-23T14:00:00Z' + - '2023-08-23T15:00:00Z' + - '2023-08-23T16:00:00Z' + - '2023-08-23T17:00:00Z' + - '2023-08-23T18:00:00Z' + - '2023-08-23T19:00:00Z' + - '2023-08-23T20:00:00Z' + - '2023-08-23T21:00:00Z' + - '2023-08-23T22:00:00Z' + - '2023-08-23T23:00:00Z' + - '2023-08-24T00:00:00Z' + - '2023-08-24T01:00:00Z' + - '2023-08-24T02:00:00Z' + - '2023-08-24T03:00:00Z' + - '2023-08-24T04:00:00Z' + - '2023-08-24T05:00:00Z' + - '2023-08-24T06:00:00Z' + - '2023-08-24T07:00:00Z' + - '2023-08-24T08:00:00Z' + - '2023-08-24T09:00:00Z' + - '2023-08-24T10:00:00Z' + - '2023-08-24T11:00:00Z' + - '2023-08-24T12:00:00Z' + - '2023-08-24T13:00:00Z' + - '2023-08-24T14:00:00Z' + - '2023-08-24T15:00:00Z' + - '2023-08-24T16:00:00Z' + - '2023-08-24T17:00:00Z' + - '2023-08-24T18:00:00Z' + - '2023-08-24T19:00:00Z' + - '2023-08-24T20:00:00Z' + - '2023-08-24T21:00:00Z' + - '2023-08-24T22:00:00Z' + - '2023-08-24T23:00:00Z' + - '2023-08-25T00:00:00Z' + - '2023-08-25T01:00:00Z' + - '2023-08-25T02:00:00Z' + - '2023-08-25T03:00:00Z' + - '2023-08-25T04:00:00Z' + - '2023-08-25T05:00:00Z' + - '2023-08-25T06:00:00Z' + - '2023-08-25T07:00:00Z' + - '2023-08-25T08:00:00Z' + - '2023-08-25T09:00:00Z' + - '2023-08-25T10:00:00Z' + - '2023-08-25T11:00:00Z' + - '2023-08-25T12:00:00Z' + - '2023-08-25T13:00:00Z' + - '2023-08-25T14:00:00Z' + - '2023-08-25T15:00:00Z' + - '2023-08-25T16:00:00Z' + - '2023-08-25T17:00:00Z' + - '2023-08-25T18:00:00Z' + - '2023-08-25T19:00:00Z' + - '2023-08-25T20:00:00Z' + - '2023-08-25T21:00:00Z' + - '2023-08-25T22:00:00Z' + - '2023-08-25T23:00:00Z' + - '2023-08-26T00:00:00Z' + - '2023-08-26T01:00:00Z' + - '2023-08-26T02:00:00Z' + - '2023-08-26T03:00:00Z' + - '2023-08-26T04:00:00Z' + - '2023-08-26T05:00:00Z' + - '2023-08-26T06:00:00Z' + - '2023-08-26T07:00:00Z' + - '2023-08-26T08:00:00Z' + - '2023-08-26T09:00:00Z' + - '2023-08-26T10:00:00Z' + - '2023-08-26T11:00:00Z' + - '2023-08-26T12:00:00Z' + - '2023-08-26T13:00:00Z' + - '2023-08-26T14:00:00Z' + - '2023-08-26T15:00:00Z' + - '2023-08-26T16:00:00Z' + - '2023-08-26T17:00:00Z' + - '2023-08-26T18:00:00Z' + - '2023-08-26T19:00:00Z' + - '2023-08-26T20:00:00Z' + - '2023-08-26T21:00:00Z' + - '2023-08-26T22:00:00Z' + - '2023-08-26T23:00:00Z' + - '2023-08-27T00:00:00Z' + - '2023-08-27T01:00:00Z' + - '2023-08-27T02:00:00Z' + - '2023-08-27T03:00:00Z' + - '2023-08-27T04:00:00Z' + - '2023-08-27T05:00:00Z' + - '2023-08-27T06:00:00Z' + - '2023-08-27T07:00:00Z' + - '2023-08-27T08:00:00Z' + - '2023-08-27T09:00:00Z' + - '2023-08-27T10:00:00Z' + - '2023-08-27T11:00:00Z' + - '2023-08-27T12:00:00Z' + - '2023-08-27T13:00:00Z' + - '2023-08-27T14:00:00Z' + - '2023-08-27T15:00:00Z' + - '2023-08-27T16:00:00Z' + - '2023-08-27T17:00:00Z' + - '2023-08-27T18:00:00Z' + - '2023-08-27T19:00:00Z' + - '2023-08-27T20:00:00Z' + - '2023-08-27T21:00:00Z' + - '2023-08-27T22:00:00Z' + - '2023-08-27T23:00:00Z' + - '2023-08-28T00:00:00Z' + - '2023-08-28T01:00:00Z' + - '2023-08-28T02:00:00Z' + - '2023-08-28T03:00:00Z' + - '2023-08-28T04:00:00Z' + - '2023-08-28T05:00:00Z' + - '2023-08-28T06:00:00Z' + - '2023-08-28T07:00:00Z' + - '2023-08-28T08:00:00Z' + - '2023-08-28T09:00:00Z' + - '2023-08-28T10:00:00Z' + - '2023-08-28T11:00:00Z' + - '2023-08-28T12:00:00Z' + - '2023-08-28T13:00:00Z' + - '2023-08-28T14:00:00Z' + - '2023-08-28T15:00:00Z' + - '2023-08-28T16:00:00Z' + - '2023-08-28T17:00:00Z' + - '2023-08-28T18:00:00Z' + - '2023-08-28T19:00:00Z' + - '2023-08-28T20:00:00Z' + - '2023-08-28T21:00:00Z' + - '2023-08-28T22:00:00Z' + - '2023-08-28T23:00:00Z' + - '2023-08-29T00:00:00Z' + - '2023-08-29T01:00:00Z' + - '2023-08-29T02:00:00Z' + - '2023-08-29T03:00:00Z' + - '2023-08-29T04:00:00Z' + - '2023-08-29T05:00:00Z' + - '2023-08-29T06:00:00Z' + - '2023-08-29T07:00:00Z' + - '2023-08-29T08:00:00Z' + - '2023-08-29T09:00:00Z' + - '2023-08-29T10:00:00Z' + - '2023-08-29T11:00:00Z' + - '2023-08-29T12:00:00Z' + - '2023-08-29T13:00:00Z' + - '2023-08-29T14:00:00Z' + - '2023-08-29T15:00:00Z' + - '2023-08-29T16:00:00Z' + - '2023-08-29T17:00:00Z' + - '2023-08-29T18:00:00Z' + - '2023-08-29T19:00:00Z' + - '2023-08-29T20:00:00Z' + - '2023-08-29T21:00:00Z' + - '2023-08-29T22:00:00Z' + - '2023-08-29T23:00:00Z' + - '2023-08-30T00:00:00Z' + - '2023-08-30T01:00:00Z' + - '2023-08-30T02:00:00Z' + - '2023-08-30T03:00:00Z' + - '2023-08-30T04:00:00Z' + - '2023-08-30T05:00:00Z' + - '2023-08-30T06:00:00Z' + - '2023-08-30T07:00:00Z' + - '2023-08-30T08:00:00Z' + - '2023-08-30T09:00:00Z' + - '2023-08-30T10:00:00Z' + - '2023-08-30T11:00:00Z' + - '2023-08-30T12:00:00Z' + - '2023-08-30T13:00:00Z' + - '2023-08-30T14:00:00Z' + - '2023-08-30T15:00:00Z' + - '2023-08-30T16:00:00Z' + - '2023-08-30T17:00:00Z' + - '2023-08-30T18:00:00Z' + - '2023-08-30T19:00:00Z' + - '2023-08-30T20:00:00Z' + - '2023-08-30T21:00:00Z' + - '2023-08-30T22:00:00Z' + - '2023-08-30T23:00:00Z' + - '2023-08-31T00:00:00Z' + - '2023-08-31T01:00:00Z' + - '2023-08-31T02:00:00Z' + - '2023-08-31T03:00:00Z' + - '2023-08-31T04:00:00Z' + - '2023-08-31T05:00:00Z' + - '2023-08-31T06:00:00Z' + - '2023-08-31T07:00:00Z' + - '2023-08-31T08:00:00Z' + - '2023-08-31T09:00:00Z' + - '2023-08-31T10:00:00Z' + - '2023-08-31T11:00:00Z' + - '2023-08-31T12:00:00Z' + - '2023-08-31T13:00:00Z' + - '2023-08-31T14:00:00Z' + - '2023-08-31T15:00:00Z' + - '2023-08-31T16:00:00Z' + - '2023-08-31T17:00:00Z' + - '2023-08-31T18:00:00Z' + - '2023-08-31T19:00:00Z' + - '2023-08-31T20:00:00Z' + - '2023-08-31T21:00:00Z' + - '2023-08-31T22:00:00Z' + - '2023-08-31T23:00:00Z' + - '2023-09-01T00:00:00Z' + - '2023-09-01T01:00:00Z' + - '2023-09-01T02:00:00Z' + - '2023-09-01T03:00:00Z' + - '2023-09-01T04:00:00Z' + - '2023-09-01T05:00:00Z' + - '2023-09-01T06:00:00Z' + - '2023-09-01T07:00:00Z' + - '2023-09-01T08:00:00Z' + - '2023-09-01T09:00:00Z' + - '2023-09-01T10:00:00Z' + - '2023-09-01T11:00:00Z' + - '2023-09-01T12:00:00Z' + - '2023-09-01T13:00:00Z' + - '2023-09-01T14:00:00Z' + - '2023-09-01T15:00:00Z' + - '2023-09-01T16:00:00Z' + - '2023-09-01T17:00:00Z' + - '2023-09-01T18:00:00Z' + - '2023-09-01T19:00:00Z' + - '2023-09-01T20:00:00Z' + - '2023-09-01T21:00:00Z' + - '2023-09-01T22:00:00Z' + - '2023-09-01T23:00:00Z' + - '2023-09-02T00:00:00Z' + - '2023-09-02T01:00:00Z' + - '2023-09-02T02:00:00Z' + - '2023-09-02T03:00:00Z' + - '2023-09-02T04:00:00Z' + - '2023-09-02T05:00:00Z' + - '2023-09-02T06:00:00Z' + - '2023-09-02T07:00:00Z' + - '2023-09-02T08:00:00Z' + - '2023-09-02T09:00:00Z' + - '2023-09-02T10:00:00Z' + - '2023-09-02T11:00:00Z' + - '2023-09-02T12:00:00Z' + - '2023-09-02T13:00:00Z' + - '2023-09-02T14:00:00Z' + - '2023-09-02T15:00:00Z' + - '2023-09-02T16:00:00Z' + - '2023-09-02T17:00:00Z' + - '2023-09-02T18:00:00Z' + - '2023-09-02T19:00:00Z' + - '2023-09-02T20:00:00Z' + - '2023-09-02T21:00:00Z' + - '2023-09-02T22:00:00Z' + - '2023-09-02T23:00:00Z' + - '2023-09-03T00:00:00Z' + - '2023-09-03T01:00:00Z' + - '2023-09-03T02:00:00Z' + - '2023-09-03T03:00:00Z' + - '2023-09-03T04:00:00Z' + - '2023-09-03T05:00:00Z' + - '2023-09-03T06:00:00Z' + - '2023-09-03T07:00:00Z' + - '2023-09-03T08:00:00Z' + - '2023-09-03T09:00:00Z' + - '2023-09-03T10:00:00Z' + - '2023-09-03T11:00:00Z' + - '2023-09-03T12:00:00Z' + - '2023-09-03T13:00:00Z' + - '2023-09-03T14:00:00Z' + - '2023-09-03T15:00:00Z' + - '2023-09-03T16:00:00Z' + - '2023-09-03T17:00:00Z' + - '2023-09-03T18:00:00Z' + - '2023-09-03T19:00:00Z' + - '2023-09-03T20:00:00Z' + - '2023-09-03T21:00:00Z' + - '2023-09-03T22:00:00Z' + - '2023-09-03T23:00:00Z' + - '2023-09-04T00:00:00Z' + - '2023-09-04T01:00:00Z' + - '2023-09-04T02:00:00Z' + - '2023-09-04T03:00:00Z' + - '2023-09-04T04:00:00Z' + - '2023-09-04T05:00:00Z' + - '2023-09-04T06:00:00Z' + - '2023-09-04T07:00:00Z' + - '2023-09-04T08:00:00Z' + - '2023-09-04T09:00:00Z' + - '2023-09-04T10:00:00Z' + - '2023-09-04T11:00:00Z' + - '2023-09-04T12:00:00Z' + - '2023-09-04T13:00:00Z' + - '2023-09-04T14:00:00Z' + - '2023-09-04T15:00:00Z' + - '2023-09-04T16:00:00Z' + - '2023-09-04T17:00:00Z' + - '2023-09-04T18:00:00Z' + - '2023-09-04T19:00:00Z' + - '2023-09-04T20:00:00Z' + - '2023-09-04T21:00:00Z' + - '2023-09-04T22:00:00Z' + - '2023-09-04T23:00:00Z' + - '2023-09-05T00:00:00Z' + - '2023-09-05T01:00:00Z' + - '2023-09-05T02:00:00Z' + - '2023-09-05T03:00:00Z' + - '2023-09-05T04:00:00Z' + - '2023-09-05T05:00:00Z' + - '2023-09-05T06:00:00Z' + - '2023-09-05T07:00:00Z' + - '2023-09-05T08:00:00Z' + - '2023-09-05T09:00:00Z' + - '2023-09-05T10:00:00Z' + - '2023-09-05T11:00:00Z' + - '2023-09-05T12:00:00Z' + - '2023-09-05T13:00:00Z' + - '2023-09-05T14:00:00Z' + - '2023-09-05T15:00:00Z' + - '2023-09-05T16:00:00Z' + - '2023-09-05T17:00:00Z' + - '2023-09-05T18:00:00Z' + - '2023-09-05T19:00:00Z' + - '2023-09-05T20:00:00Z' + - '2023-09-05T21:00:00Z' + - '2023-09-05T22:00:00Z' + - '2023-09-05T23:00:00Z' + - '2023-09-06T00:00:00Z' + - '2023-09-06T01:00:00Z' + - '2023-09-06T02:00:00Z' + - '2023-09-06T03:00:00Z' + - '2023-09-06T04:00:00Z' + - '2023-09-06T05:00:00Z' + - '2023-09-06T06:00:00Z' + - '2023-09-06T07:00:00Z' + - '2023-09-06T08:00:00Z' + - '2023-09-06T09:00:00Z' + - '2023-09-06T10:00:00Z' + - '2023-09-06T11:00:00Z' + - '2023-09-06T12:00:00Z' + - '2023-09-06T13:00:00Z' + - '2023-09-06T14:00:00Z' + - '2023-09-06T15:00:00Z' + - '2023-09-06T16:00:00Z' + - '2023-09-06T17:00:00Z' + - '2023-09-06T18:00:00Z' + - '2023-09-06T19:00:00Z' + - '2023-09-06T20:00:00Z' + - '2023-09-06T21:00:00Z' + - '2023-09-06T22:00:00Z' + - '2023-09-06T23:00:00Z' + - '2023-09-07T00:00:00Z' + - '2023-09-07T01:00:00Z' + - '2023-09-07T02:00:00Z' + - '2023-09-07T03:00:00Z' + - '2023-09-07T04:00:00Z' + - '2023-09-07T05:00:00Z' + - '2023-09-07T06:00:00Z' + - '2023-09-07T07:00:00Z' + - '2023-09-07T08:00:00Z' + - '2023-09-07T09:00:00Z' + - '2023-09-07T10:00:00Z' + - '2023-09-07T11:00:00Z' + - '2023-09-07T12:00:00Z' + - '2023-09-07T13:00:00Z' + - '2023-09-07T14:00:00Z' + - '2023-09-07T15:00:00Z' + - '2023-09-07T16:00:00Z' + - '2023-09-07T17:00:00Z' + - '2023-09-07T18:00:00Z' + - '2023-09-07T19:00:00Z' + - '2023-09-07T20:00:00Z' + - '2023-09-07T21:00:00Z' + - '2023-09-07T22:00:00Z' + - '2023-09-07T23:00:00Z' + - '2023-09-08T00:00:00Z' + - '2023-09-08T01:00:00Z' + - '2023-09-08T02:00:00Z' + - '2023-09-08T03:00:00Z' + - '2023-09-08T04:00:00Z' + - '2023-09-08T05:00:00Z' + - '2023-09-08T06:00:00Z' + - '2023-09-08T07:00:00Z' + - '2023-09-08T08:00:00Z' + - '2023-09-08T09:00:00Z' + - '2023-09-08T10:00:00Z' + - '2023-09-08T11:00:00Z' + - '2023-09-08T12:00:00Z' + - '2023-09-08T13:00:00Z' + - '2023-09-08T14:00:00Z' + - '2023-09-08T15:00:00Z' + - '2023-09-08T16:00:00Z' + - '2023-09-08T17:00:00Z' + - '2023-09-08T18:00:00Z' + - '2023-09-08T19:00:00Z' + - '2023-09-08T20:00:00Z' + - '2023-09-08T21:00:00Z' + - '2023-09-08T22:00:00Z' + - '2023-09-08T23:00:00Z' + - '2023-09-09T00:00:00Z' + - '2023-09-09T01:00:00Z' + - '2023-09-09T02:00:00Z' + - '2023-09-09T03:00:00Z' + - '2023-09-09T04:00:00Z' + - '2023-09-09T05:00:00Z' + - '2023-09-09T06:00:00Z' + - '2023-09-09T07:00:00Z' + - '2023-09-09T08:00:00Z' + - '2023-09-09T09:00:00Z' + - '2023-09-09T10:00:00Z' + - '2023-09-09T11:00:00Z' + - '2023-09-09T12:00:00Z' + - '2023-09-09T13:00:00Z' + - '2023-09-09T14:00:00Z' + - '2023-09-09T15:00:00Z' + - '2023-09-09T16:00:00Z' + - '2023-09-09T17:00:00Z' + - '2023-09-09T18:00:00Z' + - '2023-09-09T19:00:00Z' + - '2023-09-09T20:00:00Z' + - '2023-09-09T21:00:00Z' + - '2023-09-09T22:00:00Z' + - '2023-09-09T23:00:00Z' + - '2023-09-10T00:00:00Z' + - '2023-09-10T01:00:00Z' + - '2023-09-10T02:00:00Z' + - '2023-09-10T03:00:00Z' + - '2023-09-10T04:00:00Z' + - '2023-09-10T05:00:00Z' + - '2023-09-10T06:00:00Z' + - '2023-09-10T07:00:00Z' + - '2023-09-10T08:00:00Z' + - '2023-09-10T09:00:00Z' + - '2023-09-10T10:00:00Z' + - '2023-09-10T11:00:00Z' + - '2023-09-10T12:00:00Z' + - '2023-09-10T13:00:00Z' + - '2023-09-10T14:00:00Z' + - '2023-09-10T15:00:00Z' + - '2023-09-10T16:00:00Z' + - '2023-09-10T17:00:00Z' + - '2023-09-10T18:00:00Z' + - '2023-09-10T19:00:00Z' + - '2023-09-10T20:00:00Z' + - '2023-09-10T21:00:00Z' + - '2023-09-10T22:00:00Z' + - '2023-09-10T23:00:00Z' + - '2023-09-11T00:00:00Z' + - '2023-09-11T01:00:00Z' + - '2023-09-11T02:00:00Z' + - '2023-09-11T03:00:00Z' + - '2023-09-11T04:00:00Z' + - '2023-09-11T05:00:00Z' + - '2023-09-11T06:00:00Z' + - '2023-09-11T07:00:00Z' + - '2023-09-11T08:00:00Z' + - '2023-09-11T09:00:00Z' + - '2023-09-11T10:00:00Z' + - '2023-09-11T11:00:00Z' + - '2023-09-11T12:00:00Z' + - '2023-09-11T13:00:00Z' + - '2023-09-11T14:00:00Z' + - '2023-09-11T15:00:00Z' + - '2023-09-11T16:00:00Z' + - '2023-09-11T17:00:00Z' + - '2023-09-11T18:00:00Z' + - '2023-09-11T19:00:00Z' + - '2023-09-11T20:00:00Z' + - '2023-09-11T21:00:00Z' + - '2023-09-11T22:00:00Z' + - '2023-09-11T23:00:00Z' + - '2023-09-12T00:00:00Z' + - '2023-09-12T01:00:00Z' + - '2023-09-12T02:00:00Z' + - '2023-09-12T03:00:00Z' + - '2023-09-12T04:00:00Z' + - '2023-09-12T05:00:00Z' + - '2023-09-12T06:00:00Z' + - '2023-09-12T07:00:00Z' + - '2023-09-12T08:00:00Z' + - '2023-09-12T09:00:00Z' + - '2023-09-12T10:00:00Z' + - '2023-09-12T11:00:00Z' + - '2023-09-12T12:00:00Z' + - '2023-09-12T13:00:00Z' + - '2023-09-12T14:00:00Z' + - '2023-09-12T15:00:00Z' + - '2023-09-12T16:00:00Z' + - '2023-09-12T17:00:00Z' + - '2023-09-12T18:00:00Z' + - '2023-09-12T19:00:00Z' + - '2023-09-12T20:00:00Z' + - '2023-09-12T21:00:00Z' + - '2023-09-12T22:00:00Z' + - '2023-09-12T23:00:00Z' + - '2023-09-13T00:00:00Z' + - '2023-09-13T01:00:00Z' + - '2023-09-13T02:00:00Z' + - '2023-09-13T03:00:00Z' + - '2023-09-13T04:00:00Z' + - '2023-09-13T05:00:00Z' + - '2023-09-13T06:00:00Z' + - '2023-09-13T07:00:00Z' + - '2023-09-13T08:00:00Z' + - '2023-09-13T09:00:00Z' + - '2023-09-13T10:00:00Z' + - '2023-09-13T11:00:00Z' + - '2023-09-13T12:00:00Z' + - '2023-09-13T13:00:00Z' + - '2023-09-13T14:00:00Z' + - '2023-09-13T15:00:00Z' + - '2023-09-13T16:00:00Z' + - '2023-09-13T17:00:00Z' + - '2023-09-13T18:00:00Z' + - '2023-09-13T19:00:00Z' + - '2023-09-13T20:00:00Z' + - '2023-09-13T21:00:00Z' + - '2023-09-13T22:00:00Z' + - '2023-09-13T23:00:00Z' + - '2023-09-14T00:00:00Z' + - '2023-09-14T01:00:00Z' + - '2023-09-14T02:00:00Z' + - '2023-09-14T03:00:00Z' + - '2023-09-14T04:00:00Z' + - '2023-09-14T05:00:00Z' + - '2023-09-14T06:00:00Z' + - '2023-09-14T07:00:00Z' + - '2023-09-14T08:00:00Z' + - '2023-09-14T09:00:00Z' + - '2023-09-14T10:00:00Z' + - '2023-09-14T11:00:00Z' + - '2023-09-14T12:00:00Z' + - '2023-09-14T13:00:00Z' + - '2023-09-14T14:00:00Z' + - '2023-09-14T15:00:00Z' + - '2023-09-14T16:00:00Z' + - '2023-09-14T17:00:00Z' + - '2023-09-14T18:00:00Z' + - '2023-09-14T19:00:00Z' + - '2023-09-14T20:00:00Z' + - '2023-09-14T21:00:00Z' + - '2023-09-14T22:00:00Z' + - '2023-09-14T23:00:00Z' + - '2023-09-15T00:00:00Z' + - '2023-09-15T01:00:00Z' + - '2023-09-15T02:00:00Z' + - '2023-09-15T03:00:00Z' + - '2023-09-15T04:00:00Z' + - '2023-09-15T05:00:00Z' + - '2023-09-15T06:00:00Z' + - '2023-09-15T07:00:00Z' + - '2023-09-15T08:00:00Z' + - '2023-09-15T09:00:00Z' + - '2023-09-15T10:00:00Z' + - '2023-09-15T11:00:00Z' + - '2023-09-15T12:00:00Z' + - '2023-09-15T13:00:00Z' + - '2023-09-15T14:00:00Z' + - '2023-09-15T15:00:00Z' + - '2023-09-15T16:00:00Z' + - '2023-09-15T17:00:00Z' + - '2023-09-15T18:00:00Z' + - '2023-09-15T19:00:00Z' + - '2023-09-15T20:00:00Z' + - '2023-09-15T21:00:00Z' + - '2023-09-15T22:00:00Z' + - '2023-09-15T23:00:00Z' + - '2023-09-16T00:00:00Z' + - '2023-09-16T01:00:00Z' + - '2023-09-16T02:00:00Z' + - '2023-09-16T03:00:00Z' + - '2023-09-16T04:00:00Z' + - '2023-09-16T05:00:00Z' + - '2023-09-16T06:00:00Z' + - '2023-09-16T07:00:00Z' + - '2023-09-16T08:00:00Z' + - '2023-09-16T09:00:00Z' + - '2023-09-16T10:00:00Z' + - '2023-09-16T11:00:00Z' + - '2023-09-16T12:00:00Z' + - '2023-09-16T13:00:00Z' + - '2023-09-16T14:00:00Z' + - '2023-09-16T15:00:00Z' + - '2023-09-16T16:00:00Z' + - '2023-09-16T17:00:00Z' + - '2023-09-16T18:00:00Z' + - '2023-09-16T19:00:00Z' + - '2023-09-16T20:00:00Z' + - '2023-09-16T21:00:00Z' + - '2023-09-16T22:00:00Z' + - '2023-09-16T23:00:00Z' + - '2023-09-17T00:00:00Z' + - '2023-09-17T01:00:00Z' + - '2023-09-17T02:00:00Z' + - '2023-09-17T03:00:00Z' + - '2023-09-17T04:00:00Z' + - '2023-09-17T05:00:00Z' + - '2023-09-17T06:00:00Z' + - '2023-09-17T07:00:00Z' + - '2023-09-17T08:00:00Z' + - '2023-09-17T09:00:00Z' + - '2023-09-17T10:00:00Z' + - '2023-09-17T11:00:00Z' + - '2023-09-17T12:00:00Z' + - '2023-09-17T13:00:00Z' + - '2023-09-17T14:00:00Z' + - '2023-09-17T15:00:00Z' + - '2023-09-17T16:00:00Z' + - '2023-09-17T17:00:00Z' + - '2023-09-17T18:00:00Z' + - '2023-09-17T19:00:00Z' + - '2023-09-17T20:00:00Z' + - '2023-09-17T21:00:00Z' + - '2023-09-17T22:00:00Z' + - '2023-09-17T23:00:00Z' + - '2023-09-18T00:00:00Z' + - '2023-09-18T01:00:00Z' + - '2023-09-18T02:00:00Z' + - '2023-09-18T03:00:00Z' + - '2023-09-18T04:00:00Z' + - '2023-09-18T05:00:00Z' + - '2023-09-18T06:00:00Z' + - '2023-09-18T07:00:00Z' + - '2023-09-18T08:00:00Z' + - '2023-09-18T09:00:00Z' + - '2023-09-18T10:00:00Z' + - '2023-09-18T11:00:00Z' + - '2023-09-18T12:00:00Z' + - '2023-09-18T13:00:00Z' + - '2023-09-18T14:00:00Z' + - '2023-09-18T15:00:00Z' + - '2023-09-18T16:00:00Z' + - '2023-09-18T17:00:00Z' + - '2023-09-18T18:00:00Z' + - '2023-09-18T19:00:00Z' + - '2023-09-18T20:00:00Z' + - '2023-09-18T21:00:00Z' + - '2023-09-18T22:00:00Z' + - '2023-09-18T23:00:00Z' + - '2023-09-19T00:00:00Z' + - '2023-09-19T01:00:00Z' + - '2023-09-19T02:00:00Z' + - '2023-09-19T03:00:00Z' + - '2023-09-19T04:00:00Z' + - '2023-09-19T05:00:00Z' + - '2023-09-19T06:00:00Z' + - '2023-09-19T07:00:00Z' + - '2023-09-19T08:00:00Z' + - '2023-09-19T09:00:00Z' + - '2023-09-19T10:00:00Z' + - '2023-09-19T11:00:00Z' + - '2023-09-19T12:00:00Z' + - '2023-09-19T13:00:00Z' + - '2023-09-19T14:00:00Z' + - '2023-09-19T15:00:00Z' + - '2023-09-19T16:00:00Z' + - '2023-09-19T17:00:00Z' + - '2023-09-19T18:00:00Z' + - '2023-09-19T19:00:00Z' + - '2023-09-19T20:00:00Z' + - '2023-09-19T21:00:00Z' + - '2023-09-19T22:00:00Z' + - '2023-09-19T23:00:00Z' + - '2023-09-20T00:00:00Z' + - '2023-09-20T01:00:00Z' + - '2023-09-20T02:00:00Z' + - '2023-09-20T03:00:00Z' + - '2023-09-20T04:00:00Z' + - '2023-09-20T05:00:00Z' + - '2023-09-20T06:00:00Z' + - '2023-09-20T07:00:00Z' + - '2023-09-20T08:00:00Z' + - '2023-09-20T09:00:00Z' + - '2023-09-20T10:00:00Z' + - '2023-09-20T11:00:00Z' + - '2023-09-20T12:00:00Z' + - '2023-09-20T13:00:00Z' + - '2023-09-20T14:00:00Z' + - '2023-09-20T15:00:00Z' + - '2023-09-20T16:00:00Z' + - '2023-09-20T17:00:00Z' + - '2023-09-20T18:00:00Z' + - '2023-09-20T19:00:00Z' + - '2023-09-20T20:00:00Z' + - '2023-09-20T21:00:00Z' + - '2023-09-20T22:00:00Z' + - '2023-09-20T23:00:00Z' + - '2023-09-21T00:00:00Z' + - '2023-09-21T01:00:00Z' + - '2023-09-21T02:00:00Z' + - '2023-09-21T03:00:00Z' + - '2023-09-21T04:00:00Z' + - '2023-09-21T05:00:00Z' + - '2023-09-21T06:00:00Z' + - '2023-09-21T07:00:00Z' + - '2023-09-21T08:00:00Z' + - '2023-09-21T09:00:00Z' + - '2023-09-21T10:00:00Z' + - '2023-09-21T11:00:00Z' + - '2023-09-21T12:00:00Z' + - '2023-09-21T13:00:00Z' + - '2023-09-21T14:00:00Z' + - '2023-09-21T15:00:00Z' + - '2023-09-21T16:00:00Z' + - '2023-09-21T17:00:00Z' + - '2023-09-21T18:00:00Z' + - '2023-09-21T19:00:00Z' + - '2023-09-21T20:00:00Z' + - '2023-09-21T21:00:00Z' + - '2023-09-21T22:00:00Z' + - '2023-09-21T23:00:00Z' + - '2023-09-22T00:00:00Z' + - '2023-09-22T01:00:00Z' + - '2023-09-22T02:00:00Z' + - '2023-09-22T03:00:00Z' + - '2023-09-22T04:00:00Z' + - '2023-09-22T05:00:00Z' + - '2023-09-22T06:00:00Z' + - '2023-09-22T07:00:00Z' + - '2023-09-22T08:00:00Z' + - '2023-09-22T09:00:00Z' + - '2023-09-22T10:00:00Z' + - '2023-09-22T11:00:00Z' + - '2023-09-22T12:00:00Z' + - '2023-09-22T13:00:00Z' + - '2023-09-22T14:00:00Z' + - '2023-09-22T15:00:00Z' + - '2023-09-22T16:00:00Z' + - '2023-09-22T17:00:00Z' + - '2023-09-22T18:00:00Z' + - '2023-09-22T19:00:00Z' + - '2023-09-22T20:00:00Z' + - '2023-09-22T21:00:00Z' + - '2023-09-22T22:00:00Z' + - '2023-09-22T23:00:00Z' + - '2023-09-23T00:00:00Z' + - '2023-09-23T01:00:00Z' + - '2023-09-23T02:00:00Z' + - '2023-09-23T03:00:00Z' + - '2023-09-23T04:00:00Z' + - '2023-09-23T05:00:00Z' + - '2023-09-23T06:00:00Z' + - '2023-09-23T07:00:00Z' + - '2023-09-23T08:00:00Z' + - '2023-09-23T09:00:00Z' + - '2023-09-23T10:00:00Z' + - '2023-09-23T11:00:00Z' + - '2023-09-23T12:00:00Z' + - '2023-09-23T13:00:00Z' + - '2023-09-23T14:00:00Z' + - '2023-09-23T15:00:00Z' + - '2023-09-23T16:00:00Z' + - '2023-09-23T17:00:00Z' + - '2023-09-23T18:00:00Z' + - '2023-09-23T19:00:00Z' + - '2023-09-23T20:00:00Z' + - '2023-09-23T21:00:00Z' + - '2023-09-23T22:00:00Z' + - '2023-09-23T23:00:00Z' + - '2023-09-24T00:00:00Z' + - '2023-09-24T01:00:00Z' + - '2023-09-24T02:00:00Z' + - '2023-09-24T03:00:00Z' + - '2023-09-24T04:00:00Z' + - '2023-09-24T05:00:00Z' + - '2023-09-24T06:00:00Z' + - '2023-09-24T07:00:00Z' + - '2023-09-24T08:00:00Z' + - '2023-09-24T09:00:00Z' + - '2023-09-24T10:00:00Z' + - '2023-09-24T11:00:00Z' + - '2023-09-24T12:00:00Z' + - '2023-09-24T13:00:00Z' + - '2023-09-24T14:00:00Z' + - '2023-09-24T15:00:00Z' + - '2023-09-24T16:00:00Z' + - '2023-09-24T17:00:00Z' + - '2023-09-24T18:00:00Z' + - '2023-09-24T19:00:00Z' + - '2023-09-24T20:00:00Z' + - '2023-09-24T21:00:00Z' + - '2023-09-24T22:00:00Z' + - '2023-09-24T23:00:00Z' + - '2023-09-25T00:00:00Z' + - '2023-09-25T01:00:00Z' + - '2023-09-25T02:00:00Z' + - '2023-09-25T03:00:00Z' + - '2023-09-25T04:00:00Z' + - '2023-09-25T05:00:00Z' + - '2023-09-25T06:00:00Z' + - '2023-09-25T07:00:00Z' + - '2023-09-25T08:00:00Z' + - '2023-09-25T09:00:00Z' + - '2023-09-25T10:00:00Z' + - '2023-09-25T11:00:00Z' + - '2023-09-25T12:00:00Z' + - '2023-09-25T13:00:00Z' + - '2023-09-25T14:00:00Z' + - '2023-09-25T15:00:00Z' + - '2023-09-25T16:00:00Z' + - '2023-09-25T17:00:00Z' + - '2023-09-25T18:00:00Z' + - '2023-09-25T19:00:00Z' + - '2023-09-25T20:00:00Z' + - '2023-09-25T21:00:00Z' + - '2023-09-25T22:00:00Z' + - '2023-09-25T23:00:00Z' + - '2023-09-26T00:00:00Z' + - '2023-09-26T01:00:00Z' + - '2023-09-26T02:00:00Z' + - '2023-09-26T03:00:00Z' + - '2023-09-26T04:00:00Z' + - '2023-09-26T05:00:00Z' + - '2023-09-26T06:00:00Z' + - '2023-09-26T07:00:00Z' + - '2023-09-26T08:00:00Z' + - '2023-09-26T09:00:00Z' + - '2023-09-26T10:00:00Z' + - '2023-09-26T11:00:00Z' + - '2023-09-26T12:00:00Z' + - '2023-09-26T13:00:00Z' + - '2023-09-26T14:00:00Z' + - '2023-09-26T15:00:00Z' + - '2023-09-26T16:00:00Z' + - '2023-09-26T17:00:00Z' + - '2023-09-26T18:00:00Z' + - '2023-09-26T19:00:00Z' + - '2023-09-26T20:00:00Z' + - '2023-09-26T21:00:00Z' + - '2023-09-26T22:00:00Z' + - '2023-09-26T23:00:00Z' + - '2023-09-27T00:00:00Z' + - '2023-09-27T01:00:00Z' + - '2023-09-27T02:00:00Z' + - '2023-09-27T03:00:00Z' + - '2023-09-27T04:00:00Z' + - '2023-09-27T05:00:00Z' + - '2023-09-27T06:00:00Z' + - '2023-09-27T07:00:00Z' + - '2023-09-27T08:00:00Z' + - '2023-09-27T09:00:00Z' + - '2023-09-27T10:00:00Z' + - '2023-09-27T11:00:00Z' + - '2023-09-27T12:00:00Z' + - '2023-09-27T13:00:00Z' + - '2023-09-27T14:00:00Z' + - '2023-09-27T15:00:00Z' + - '2023-09-27T16:00:00Z' + - '2023-09-27T17:00:00Z' + - '2023-09-27T18:00:00Z' + - '2023-09-27T19:00:00Z' + - '2023-09-27T20:00:00Z' + - '2023-09-27T21:00:00Z' + - '2023-09-27T22:00:00Z' + - '2023-09-27T23:00:00Z' + - '2023-09-28T00:00:00Z' + - '2023-09-28T01:00:00Z' + - '2023-09-28T02:00:00Z' + - '2023-09-28T03:00:00Z' + - '2023-09-28T04:00:00Z' + - '2023-09-28T05:00:00Z' + - '2023-09-28T06:00:00Z' + - '2023-09-28T07:00:00Z' + - '2023-09-28T08:00:00Z' + - '2023-09-28T09:00:00Z' + - '2023-09-28T10:00:00Z' + - '2023-09-28T11:00:00Z' + - '2023-09-28T12:00:00Z' + - '2023-09-28T13:00:00Z' + - '2023-09-28T14:00:00Z' + - '2023-09-28T15:00:00Z' + - '2023-09-28T16:00:00Z' + - '2023-09-28T17:00:00Z' + - '2023-09-28T18:00:00Z' + - '2023-09-28T19:00:00Z' + - '2023-09-28T20:00:00Z' + - '2023-09-28T21:00:00Z' + - '2023-09-28T22:00:00Z' + - '2023-09-28T23:00:00Z' + - '2023-09-29T00:00:00Z' + - '2023-09-29T01:00:00Z' + - '2023-09-29T02:00:00Z' + - '2023-09-29T03:00:00Z' + - '2023-09-29T04:00:00Z' + - '2023-09-29T05:00:00Z' + - '2023-09-29T06:00:00Z' + - '2023-09-29T07:00:00Z' + - '2023-09-29T08:00:00Z' + - '2023-09-29T09:00:00Z' + - '2023-09-29T10:00:00Z' + - '2023-09-29T11:00:00Z' + - '2023-09-29T12:00:00Z' + - '2023-09-29T13:00:00Z' + - '2023-09-29T14:00:00Z' + - '2023-09-29T15:00:00Z' + - '2023-09-29T16:00:00Z' + - '2023-09-29T17:00:00Z' + - '2023-09-29T18:00:00Z' + - '2023-09-29T19:00:00Z' + - '2023-09-29T20:00:00Z' + - '2023-09-29T21:00:00Z' + - '2023-09-29T22:00:00Z' + - '2023-09-29T23:00:00Z' + - '2023-09-30T00:00:00Z' + - '2023-09-30T01:00:00Z' + - '2023-09-30T02:00:00Z' + - '2023-09-30T03:00:00Z' + - '2023-09-30T04:00:00Z' + - '2023-09-30T05:00:00Z' + - '2023-09-30T06:00:00Z' + - '2023-09-30T07:00:00Z' + - '2023-09-30T08:00:00Z' + - '2023-09-30T09:00:00Z' + - '2023-09-30T10:00:00Z' + - '2023-09-30T11:00:00Z' + - '2023-09-30T12:00:00Z' + - '2023-09-30T13:00:00Z' + - '2023-09-30T14:00:00Z' + - '2023-09-30T15:00:00Z' + - '2023-09-30T16:00:00Z' + - '2023-09-30T17:00:00Z' + - '2023-09-30T18:00:00Z' + - '2023-09-30T19:00:00Z' + - '2023-09-30T20:00:00Z' + - '2023-09-30T21:00:00Z' + - '2023-09-30T22:00:00Z' + - '2023-09-30T23:00:00Z' + - '2023-10-01T00:00:00Z' + - '2023-10-01T01:00:00Z' + - '2023-10-01T02:00:00Z' + - '2023-10-01T03:00:00Z' + - '2023-10-01T04:00:00Z' + - '2023-10-01T05:00:00Z' + - '2023-10-01T06:00:00Z' + - '2023-10-01T07:00:00Z' + - '2023-10-01T08:00:00Z' + - '2023-10-01T09:00:00Z' + - '2023-10-01T10:00:00Z' + - '2023-10-01T11:00:00Z' + - '2023-10-01T12:00:00Z' + - '2023-10-01T13:00:00Z' + - '2023-10-01T14:00:00Z' + - '2023-10-01T15:00:00Z' + - '2023-10-01T16:00:00Z' + - '2023-10-01T17:00:00Z' + - '2023-10-01T18:00:00Z' + - '2023-10-01T19:00:00Z' + - '2023-10-01T20:00:00Z' + - '2023-10-01T21:00:00Z' + - '2023-10-01T22:00:00Z' + - '2023-10-01T23:00:00Z' + - '2023-10-02T00:00:00Z' + - '2023-10-02T01:00:00Z' + - '2023-10-02T02:00:00Z' + - '2023-10-02T03:00:00Z' + - '2023-10-02T04:00:00Z' + - '2023-10-02T05:00:00Z' + - '2023-10-02T06:00:00Z' + - '2023-10-02T07:00:00Z' + - '2023-10-02T08:00:00Z' + - '2023-10-02T09:00:00Z' + - '2023-10-02T10:00:00Z' + - '2023-10-02T11:00:00Z' + - '2023-10-02T12:00:00Z' + - '2023-10-02T13:00:00Z' + - '2023-10-02T14:00:00Z' + - '2023-10-02T15:00:00Z' + - '2023-10-02T16:00:00Z' + - '2023-10-02T17:00:00Z' + - '2023-10-02T18:00:00Z' + - '2023-10-02T19:00:00Z' + - '2023-10-02T20:00:00Z' + - '2023-10-02T21:00:00Z' + - '2023-10-02T22:00:00Z' + - '2023-10-02T23:00:00Z' + - '2023-10-03T00:00:00Z' + - '2023-10-03T01:00:00Z' + - '2023-10-03T02:00:00Z' + - '2023-10-03T03:00:00Z' + - '2023-10-03T04:00:00Z' + - '2023-10-03T05:00:00Z' + - '2023-10-03T06:00:00Z' + - '2023-10-03T07:00:00Z' + - '2023-10-03T08:00:00Z' + - '2023-10-03T09:00:00Z' + - '2023-10-03T10:00:00Z' + - '2023-10-03T11:00:00Z' + - '2023-10-03T12:00:00Z' + - '2023-10-03T13:00:00Z' + - '2023-10-03T14:00:00Z' + - '2023-10-03T15:00:00Z' + - '2023-10-03T16:00:00Z' + - '2023-10-03T17:00:00Z' + - '2023-10-03T18:00:00Z' + - '2023-10-03T19:00:00Z' + - '2023-10-03T20:00:00Z' + - '2023-10-03T21:00:00Z' + - '2023-10-03T22:00:00Z' + - '2023-10-03T23:00:00Z' + - '2023-10-04T00:00:00Z' + - '2023-10-04T01:00:00Z' + - '2023-10-04T02:00:00Z' + - '2023-10-04T03:00:00Z' + - '2023-10-04T04:00:00Z' + - '2023-10-04T05:00:00Z' + - '2023-10-04T06:00:00Z' + - '2023-10-04T07:00:00Z' + - '2023-10-04T08:00:00Z' + - '2023-10-04T09:00:00Z' + - '2023-10-04T10:00:00Z' + - '2023-10-04T11:00:00Z' + - '2023-10-04T12:00:00Z' + - '2023-10-04T13:00:00Z' + - '2023-10-04T14:00:00Z' + - '2023-10-04T15:00:00Z' + - '2023-10-04T16:00:00Z' + - '2023-10-04T17:00:00Z' + - '2023-10-04T18:00:00Z' + - '2023-10-04T19:00:00Z' + - '2023-10-04T20:00:00Z' + - '2023-10-04T21:00:00Z' + - '2023-10-04T22:00:00Z' + - '2023-10-04T23:00:00Z' + - '2023-10-05T00:00:00Z' + - '2023-10-05T01:00:00Z' + - '2023-10-05T02:00:00Z' + - '2023-10-05T03:00:00Z' + - '2023-10-05T04:00:00Z' + - '2023-10-05T05:00:00Z' + - '2023-10-05T06:00:00Z' + - '2023-10-05T07:00:00Z' + - '2023-10-05T08:00:00Z' + - '2023-10-05T09:00:00Z' + - '2023-10-05T10:00:00Z' + - '2023-10-05T11:00:00Z' + - '2023-10-05T12:00:00Z' + - '2023-10-05T13:00:00Z' + - '2023-10-05T14:00:00Z' + - '2023-10-05T15:00:00Z' + - '2023-10-05T16:00:00Z' + - '2023-10-05T17:00:00Z' + - '2023-10-05T18:00:00Z' + - '2023-10-05T19:00:00Z' + - '2023-10-05T20:00:00Z' + - '2023-10-05T21:00:00Z' + - '2023-10-05T22:00:00Z' + - '2023-10-05T23:00:00Z' + - '2023-10-06T00:00:00Z' + - '2023-10-06T01:00:00Z' + - '2023-10-06T02:00:00Z' + - '2023-10-06T03:00:00Z' + - '2023-10-06T04:00:00Z' + - '2023-10-06T05:00:00Z' + - '2023-10-06T06:00:00Z' + - '2023-10-06T07:00:00Z' + - '2023-10-06T08:00:00Z' + - '2023-10-06T09:00:00Z' + - '2023-10-06T10:00:00Z' + - '2023-10-06T11:00:00Z' + - '2023-10-06T12:00:00Z' + - '2023-10-06T13:00:00Z' + - '2023-10-06T14:00:00Z' + - '2023-10-06T15:00:00Z' + - '2023-10-06T16:00:00Z' + - '2023-10-06T17:00:00Z' + - '2023-10-06T18:00:00Z' + - '2023-10-06T19:00:00Z' + - '2023-10-06T20:00:00Z' + - '2023-10-06T21:00:00Z' + - '2023-10-06T22:00:00Z' + - '2023-10-06T23:00:00Z' + - '2023-10-07T00:00:00Z' + - '2023-10-07T01:00:00Z' + - '2023-10-07T02:00:00Z' + - '2023-10-07T03:00:00Z' + - '2023-10-07T04:00:00Z' + - '2023-10-07T05:00:00Z' + - '2023-10-07T06:00:00Z' + - '2023-10-07T07:00:00Z' + - '2023-10-07T08:00:00Z' + - '2023-10-07T09:00:00Z' + - '2023-10-07T10:00:00Z' + - '2023-10-07T11:00:00Z' + - '2023-10-07T12:00:00Z' + - '2023-10-07T13:00:00Z' + - '2023-10-07T14:00:00Z' + - '2023-10-07T15:00:00Z' + - '2023-10-07T16:00:00Z' + - '2023-10-07T17:00:00Z' + - '2023-10-07T18:00:00Z' + - '2023-10-07T19:00:00Z' + - '2023-10-07T20:00:00Z' + - '2023-10-07T21:00:00Z' + - '2023-10-07T22:00:00Z' + - '2023-10-07T23:00:00Z' + - '2023-10-08T00:00:00Z' + - '2023-10-08T01:00:00Z' + - '2023-10-08T02:00:00Z' + - '2023-10-08T03:00:00Z' + - '2023-10-08T04:00:00Z' + - '2023-10-08T05:00:00Z' + - '2023-10-08T06:00:00Z' + - '2023-10-08T07:00:00Z' + - '2023-10-08T08:00:00Z' + - '2023-10-08T09:00:00Z' + - '2023-10-08T10:00:00Z' + - '2023-10-08T11:00:00Z' + - '2023-10-08T12:00:00Z' + - '2023-10-08T13:00:00Z' + - '2023-10-08T14:00:00Z' + - '2023-10-08T15:00:00Z' + - '2023-10-08T16:00:00Z' + - '2023-10-08T17:00:00Z' + - '2023-10-08T18:00:00Z' + - '2023-10-08T19:00:00Z' + - '2023-10-08T20:00:00Z' + - '2023-10-08T21:00:00Z' + - '2023-10-08T22:00:00Z' + - '2023-10-08T23:00:00Z' + - '2023-10-09T00:00:00Z' + - '2023-10-09T01:00:00Z' + - '2023-10-09T02:00:00Z' + - '2023-10-09T03:00:00Z' + - '2023-10-09T04:00:00Z' + - '2023-10-09T05:00:00Z' + - '2023-10-09T06:00:00Z' + - '2023-10-09T07:00:00Z' + - '2023-10-09T08:00:00Z' + - '2023-10-09T09:00:00Z' + - '2023-10-09T10:00:00Z' + - '2023-10-09T11:00:00Z' + - '2023-10-09T12:00:00Z' + - '2023-10-09T13:00:00Z' + - '2023-10-09T14:00:00Z' + - '2023-10-09T15:00:00Z' + - '2023-10-09T16:00:00Z' + - '2023-10-09T17:00:00Z' + - '2023-10-09T18:00:00Z' + - '2023-10-09T19:00:00Z' + - '2023-10-09T20:00:00Z' + - '2023-10-09T21:00:00Z' + - '2023-10-09T22:00:00Z' + - '2023-10-09T23:00:00Z' + - '2023-10-10T00:00:00Z' + - '2023-10-10T01:00:00Z' + - '2023-10-10T02:00:00Z' + - '2023-10-10T03:00:00Z' + - '2023-10-10T04:00:00Z' + - '2023-10-10T05:00:00Z' + - '2023-10-10T06:00:00Z' + - '2023-10-10T07:00:00Z' + - '2023-10-10T08:00:00Z' + - '2023-10-10T09:00:00Z' + - '2023-10-10T10:00:00Z' + - '2023-10-10T11:00:00Z' + - '2023-10-10T12:00:00Z' + - '2023-10-10T13:00:00Z' + - '2023-10-10T14:00:00Z' + - '2023-10-10T15:00:00Z' + - '2023-10-10T16:00:00Z' + - '2023-10-10T17:00:00Z' + - '2023-10-10T18:00:00Z' + - '2023-10-10T19:00:00Z' + - '2023-10-10T20:00:00Z' + - '2023-10-10T21:00:00Z' + - '2023-10-10T22:00:00Z' + - '2023-10-10T23:00:00Z' + - '2023-10-11T00:00:00Z' + - '2023-10-11T01:00:00Z' + - '2023-10-11T02:00:00Z' + - '2023-10-11T03:00:00Z' + - '2023-10-11T04:00:00Z' + - '2023-10-11T05:00:00Z' + - '2023-10-11T06:00:00Z' + - '2023-10-11T07:00:00Z' + - '2023-10-11T08:00:00Z' + - '2023-10-11T09:00:00Z' + - '2023-10-11T10:00:00Z' + - '2023-10-11T11:00:00Z' + - '2023-10-11T12:00:00Z' + - '2023-10-11T13:00:00Z' + - '2023-10-11T14:00:00Z' + - '2023-10-11T15:00:00Z' + - '2023-10-11T16:00:00Z' + - '2023-10-11T17:00:00Z' + - '2023-10-11T18:00:00Z' + - '2023-10-11T19:00:00Z' + - '2023-10-11T20:00:00Z' + - '2023-10-11T21:00:00Z' + - '2023-10-11T22:00:00Z' + - '2023-10-11T23:00:00Z' + - '2023-10-12T00:00:00Z' + - '2023-10-12T01:00:00Z' + - '2023-10-12T02:00:00Z' + - '2023-10-12T03:00:00Z' + - '2023-10-12T04:00:00Z' + - '2023-10-12T05:00:00Z' + - '2023-10-12T06:00:00Z' + - '2023-10-12T07:00:00Z' + - '2023-10-12T08:00:00Z' + - '2023-10-12T09:00:00Z' + - '2023-10-12T10:00:00Z' + - '2023-10-12T11:00:00Z' + - '2023-10-12T12:00:00Z' + - '2023-10-12T13:00:00Z' + - '2023-10-12T14:00:00Z' + - '2023-10-12T15:00:00Z' + - '2023-10-12T16:00:00Z' + - '2023-10-12T17:00:00Z' + - '2023-10-12T18:00:00Z' + - '2023-10-12T19:00:00Z' + - '2023-10-12T20:00:00Z' + - '2023-10-12T21:00:00Z' + - '2023-10-12T22:00:00Z' + - '2023-10-12T23:00:00Z' + - '2023-10-13T00:00:00Z' + - '2023-10-13T01:00:00Z' + - '2023-10-13T02:00:00Z' + - '2023-10-13T03:00:00Z' + - '2023-10-13T04:00:00Z' + - '2023-10-13T05:00:00Z' + - '2023-10-13T06:00:00Z' + - '2023-10-13T07:00:00Z' + - '2023-10-13T08:00:00Z' + - '2023-10-13T09:00:00Z' + - '2023-10-13T10:00:00Z' + - '2023-10-13T11:00:00Z' + - '2023-10-13T12:00:00Z' + - '2023-10-13T13:00:00Z' + - '2023-10-13T14:00:00Z' + - '2023-10-13T15:00:00Z' + - '2023-10-13T16:00:00Z' + - '2023-10-13T17:00:00Z' + - '2023-10-13T18:00:00Z' + - '2023-10-13T19:00:00Z' + - '2023-10-13T20:00:00Z' + - '2023-10-13T21:00:00Z' + - '2023-10-13T22:00:00Z' + - '2023-10-13T23:00:00Z' + - '2023-10-14T00:00:00Z' + - '2023-10-14T01:00:00Z' + - '2023-10-14T02:00:00Z' + - '2023-10-14T03:00:00Z' + - '2023-10-14T04:00:00Z' + - '2023-10-14T05:00:00Z' + - '2023-10-14T06:00:00Z' + - '2023-10-14T07:00:00Z' + - '2023-10-14T08:00:00Z' + - '2023-10-14T09:00:00Z' + - '2023-10-14T10:00:00Z' + - '2023-10-14T11:00:00Z' + - '2023-10-14T12:00:00Z' + - '2023-10-14T13:00:00Z' + - '2023-10-14T14:00:00Z' + - '2023-10-14T15:00:00Z' + - '2023-10-14T16:00:00Z' + - '2023-10-14T17:00:00Z' + - '2023-10-14T18:00:00Z' + - '2023-10-14T19:00:00Z' + - '2023-10-14T20:00:00Z' + - '2023-10-14T21:00:00Z' + - '2023-10-14T22:00:00Z' + - '2023-10-14T23:00:00Z' + - '2023-10-15T00:00:00Z' + - '2023-10-15T01:00:00Z' + - '2023-10-15T02:00:00Z' + - '2023-10-15T03:00:00Z' + - '2023-10-15T04:00:00Z' + - '2023-10-15T05:00:00Z' + - '2023-10-15T06:00:00Z' + - '2023-10-15T07:00:00Z' + - '2023-10-15T08:00:00Z' + - '2023-10-15T09:00:00Z' + - '2023-10-15T10:00:00Z' + - '2023-10-15T11:00:00Z' + - '2023-10-15T12:00:00Z' + - '2023-10-15T13:00:00Z' + - '2023-10-15T14:00:00Z' + - '2023-10-15T15:00:00Z' + - '2023-10-15T16:00:00Z' + - '2023-10-15T17:00:00Z' + - '2023-10-15T18:00:00Z' + - '2023-10-15T19:00:00Z' + - '2023-10-15T20:00:00Z' + - '2023-10-15T21:00:00Z' + - '2023-10-15T22:00:00Z' + - '2023-10-15T23:00:00Z' + - '2023-10-16T00:00:00Z' + - '2023-10-16T01:00:00Z' + - '2023-10-16T02:00:00Z' + - '2023-10-16T03:00:00Z' + - '2023-10-16T04:00:00Z' + - '2023-10-16T05:00:00Z' + - '2023-10-16T06:00:00Z' + - '2023-10-16T07:00:00Z' + - '2023-10-16T08:00:00Z' + - '2023-10-16T09:00:00Z' + - '2023-10-16T10:00:00Z' + - '2023-10-16T11:00:00Z' + - '2023-10-16T12:00:00Z' + - '2023-10-16T13:00:00Z' + - '2023-10-16T14:00:00Z' + - '2023-10-16T15:00:00Z' + - '2023-10-16T16:00:00Z' + - '2023-10-16T17:00:00Z' + - '2023-10-16T18:00:00Z' + - '2023-10-16T19:00:00Z' + - '2023-10-16T20:00:00Z' + - '2023-10-16T21:00:00Z' + - '2023-10-16T22:00:00Z' + - '2023-10-16T23:00:00Z' + - '2023-10-17T00:00:00Z' + - '2023-10-17T01:00:00Z' + - '2023-10-17T02:00:00Z' + - '2023-10-17T03:00:00Z' + - '2023-10-17T04:00:00Z' + - '2023-10-17T05:00:00Z' + - '2023-10-17T06:00:00Z' + - '2023-10-17T07:00:00Z' + - '2023-10-17T08:00:00Z' + - '2023-10-17T09:00:00Z' + - '2023-10-17T10:00:00Z' + - '2023-10-17T11:00:00Z' + - '2023-10-17T12:00:00Z' + - '2023-10-17T13:00:00Z' + - '2023-10-17T14:00:00Z' + - '2023-10-17T15:00:00Z' + - '2023-10-17T16:00:00Z' + - '2023-10-17T17:00:00Z' + - '2023-10-17T18:00:00Z' + - '2023-10-17T19:00:00Z' + - '2023-10-17T20:00:00Z' + - '2023-10-17T21:00:00Z' + - '2023-10-17T22:00:00Z' + - '2023-10-17T23:00:00Z' + - '2023-10-18T00:00:00Z' + - '2023-10-18T01:00:00Z' + - '2023-10-18T02:00:00Z' + - '2023-10-18T03:00:00Z' + - '2023-10-18T04:00:00Z' + - '2023-10-18T05:00:00Z' + - '2023-10-18T06:00:00Z' + - '2023-10-18T07:00:00Z' + - '2023-10-18T08:00:00Z' + - '2023-10-18T09:00:00Z' + - '2023-10-18T10:00:00Z' + - '2023-10-18T11:00:00Z' + - '2023-10-18T12:00:00Z' + - '2023-10-18T13:00:00Z' + - '2023-10-18T14:00:00Z' + - '2023-10-18T15:00:00Z' + - '2023-10-18T16:00:00Z' + - '2023-10-18T17:00:00Z' + - '2023-10-18T18:00:00Z' + - '2023-10-18T19:00:00Z' + - '2023-10-18T20:00:00Z' + - '2023-10-18T21:00:00Z' + - '2023-10-18T22:00:00Z' + - '2023-10-18T23:00:00Z' + - '2023-10-19T00:00:00Z' + - '2023-10-19T01:00:00Z' + - '2023-10-19T02:00:00Z' + - '2023-10-19T03:00:00Z' + - '2023-10-19T04:00:00Z' + - '2023-10-19T05:00:00Z' + - '2023-10-19T06:00:00Z' + - '2023-10-19T07:00:00Z' + - '2023-10-19T08:00:00Z' + - '2023-10-19T09:00:00Z' + - '2023-10-19T10:00:00Z' + - '2023-10-19T11:00:00Z' + - '2023-10-19T12:00:00Z' + - '2023-10-19T13:00:00Z' + - '2023-10-19T14:00:00Z' + - '2023-10-19T15:00:00Z' + - '2023-10-19T16:00:00Z' + - '2023-10-19T17:00:00Z' + - '2023-10-19T18:00:00Z' + - '2023-10-19T19:00:00Z' + - '2023-10-19T20:00:00Z' + - '2023-10-19T21:00:00Z' + - '2023-10-19T22:00:00Z' + - '2023-10-19T23:00:00Z' + - '2023-10-20T00:00:00Z' + - '2023-10-20T01:00:00Z' + - '2023-10-20T02:00:00Z' + - '2023-10-20T03:00:00Z' + - '2023-10-20T04:00:00Z' + - '2023-10-20T05:00:00Z' + - '2023-10-20T06:00:00Z' + - '2023-10-20T07:00:00Z' + - '2023-10-20T08:00:00Z' + - '2023-10-20T09:00:00Z' + - '2023-10-20T10:00:00Z' + - '2023-10-20T11:00:00Z' + - '2023-10-20T12:00:00Z' + - '2023-10-20T13:00:00Z' + - '2023-10-20T14:00:00Z' + - '2023-10-20T15:00:00Z' + - '2023-10-20T16:00:00Z' + - '2023-10-20T17:00:00Z' + - '2023-10-20T18:00:00Z' + - '2023-10-20T19:00:00Z' + - '2023-10-20T20:00:00Z' + - '2023-10-20T21:00:00Z' + - '2023-10-20T22:00:00Z' + - '2023-10-20T23:00:00Z' + - '2023-10-21T00:00:00Z' + - '2023-10-21T01:00:00Z' + - '2023-10-21T02:00:00Z' + - '2023-10-21T03:00:00Z' + - '2023-10-21T04:00:00Z' + - '2023-10-21T05:00:00Z' + - '2023-10-21T06:00:00Z' + - '2023-10-21T07:00:00Z' + - '2023-10-21T08:00:00Z' + - '2023-10-21T09:00:00Z' + - '2023-10-21T10:00:00Z' + - '2023-10-21T11:00:00Z' + - '2023-10-21T12:00:00Z' + - '2023-10-21T13:00:00Z' + - '2023-10-21T14:00:00Z' + - '2023-10-21T15:00:00Z' + - '2023-10-21T16:00:00Z' + - '2023-10-21T17:00:00Z' + - '2023-10-21T18:00:00Z' + - '2023-10-21T19:00:00Z' + - '2023-10-21T20:00:00Z' + - '2023-10-21T21:00:00Z' + - '2023-10-21T22:00:00Z' + - '2023-10-21T23:00:00Z' + - '2023-10-22T00:00:00Z' + - '2023-10-22T01:00:00Z' + - '2023-10-22T02:00:00Z' + - '2023-10-22T03:00:00Z' + - '2023-10-22T04:00:00Z' + - '2023-10-22T05:00:00Z' + - '2023-10-22T06:00:00Z' + - '2023-10-22T07:00:00Z' + - '2023-10-22T08:00:00Z' + - '2023-10-22T09:00:00Z' + - '2023-10-22T10:00:00Z' + - '2023-10-22T11:00:00Z' + - '2023-10-22T12:00:00Z' + - '2023-10-22T13:00:00Z' + - '2023-10-22T14:00:00Z' + - '2023-10-22T15:00:00Z' + - '2023-10-22T16:00:00Z' + - '2023-10-22T17:00:00Z' + - '2023-10-22T18:00:00Z' + - '2023-10-22T19:00:00Z' + - '2023-10-22T20:00:00Z' + - '2023-10-22T21:00:00Z' + - '2023-10-22T22:00:00Z' + - '2023-10-22T23:00:00Z' + - '2023-10-23T00:00:00Z' + - '2023-10-23T01:00:00Z' + - '2023-10-23T02:00:00Z' + - '2023-10-23T03:00:00Z' + - '2023-10-23T04:00:00Z' + - '2023-10-23T05:00:00Z' + - '2023-10-23T06:00:00Z' + - '2023-10-23T07:00:00Z' + - '2023-10-23T08:00:00Z' + - '2023-10-23T09:00:00Z' + - '2023-10-23T10:00:00Z' + - '2023-10-23T11:00:00Z' + - '2023-10-23T12:00:00Z' + - '2023-10-23T13:00:00Z' + - '2023-10-23T14:00:00Z' + - '2023-10-23T15:00:00Z' + - '2023-10-23T16:00:00Z' + - '2023-10-23T17:00:00Z' + - '2023-10-23T18:00:00Z' + - '2023-10-23T19:00:00Z' + - '2023-10-23T20:00:00Z' + - '2023-10-23T21:00:00Z' + - '2023-10-23T22:00:00Z' + - '2023-10-23T23:00:00Z' + - '2023-10-24T00:00:00Z' + - '2023-10-24T01:00:00Z' + - '2023-10-24T02:00:00Z' + - '2023-10-24T03:00:00Z' + - '2023-10-24T04:00:00Z' + - '2023-10-24T05:00:00Z' + - '2023-10-24T06:00:00Z' + - '2023-10-24T07:00:00Z' + - '2023-10-24T08:00:00Z' + - '2023-10-24T09:00:00Z' + - '2023-10-24T10:00:00Z' + - '2023-10-24T11:00:00Z' + - '2023-10-24T12:00:00Z' + - '2023-10-24T13:00:00Z' + - '2023-10-24T14:00:00Z' + - '2023-10-24T15:00:00Z' + - '2023-10-24T16:00:00Z' + - '2023-10-24T17:00:00Z' + - '2023-10-24T18:00:00Z' + - '2023-10-24T19:00:00Z' + - '2023-10-24T20:00:00Z' + - '2023-10-24T21:00:00Z' + - '2023-10-24T22:00:00Z' + - '2023-10-24T23:00:00Z' + - '2023-10-25T00:00:00Z' + - '2023-10-25T01:00:00Z' + - '2023-10-25T02:00:00Z' + - '2023-10-25T03:00:00Z' + - '2023-10-25T04:00:00Z' + - '2023-10-25T05:00:00Z' + - '2023-10-25T06:00:00Z' + - '2023-10-25T07:00:00Z' + - '2023-10-25T08:00:00Z' + - '2023-10-25T09:00:00Z' + - '2023-10-25T10:00:00Z' + - '2023-10-25T11:00:00Z' + - '2023-10-25T12:00:00Z' + - '2023-10-25T13:00:00Z' + - '2023-10-25T14:00:00Z' + - '2023-10-25T15:00:00Z' + - '2023-10-25T16:00:00Z' + - '2023-10-25T17:00:00Z' + - '2023-10-25T18:00:00Z' + - '2023-10-25T19:00:00Z' + - '2023-10-25T20:00:00Z' + - '2023-10-25T21:00:00Z' + - '2023-10-25T22:00:00Z' + - '2023-10-25T23:00:00Z' + - '2023-10-26T00:00:00Z' + - '2023-10-26T01:00:00Z' + - '2023-10-26T02:00:00Z' + - '2023-10-26T03:00:00Z' + - '2023-10-26T04:00:00Z' + - '2023-10-26T05:00:00Z' + - '2023-10-26T06:00:00Z' + - '2023-10-26T07:00:00Z' + - '2023-10-26T08:00:00Z' + - '2023-10-26T09:00:00Z' + - '2023-10-26T10:00:00Z' + - '2023-10-26T11:00:00Z' + - '2023-10-26T12:00:00Z' + - '2023-10-26T13:00:00Z' + - '2023-10-26T14:00:00Z' + - '2023-10-26T15:00:00Z' + - '2023-10-26T16:00:00Z' + - '2023-10-26T17:00:00Z' + - '2023-10-26T18:00:00Z' + - '2023-10-26T19:00:00Z' + - '2023-10-26T20:00:00Z' + - '2023-10-26T21:00:00Z' + - '2023-10-26T22:00:00Z' + - '2023-10-26T23:00:00Z' + - '2023-10-27T00:00:00Z' + - '2023-10-27T01:00:00Z' + - '2023-10-27T02:00:00Z' + - '2023-10-27T03:00:00Z' + - '2023-10-27T04:00:00Z' + - '2023-10-27T05:00:00Z' + - '2023-10-27T06:00:00Z' + - '2023-10-27T07:00:00Z' + - '2023-10-27T08:00:00Z' + - '2023-10-27T09:00:00Z' + - '2023-10-27T10:00:00Z' + - '2023-10-27T11:00:00Z' + - '2023-10-27T12:00:00Z' + - '2023-10-27T13:00:00Z' + - '2023-10-27T14:00:00Z' + - '2023-10-27T15:00:00Z' + - '2023-10-27T16:00:00Z' + - '2023-10-27T17:00:00Z' + - '2023-10-27T18:00:00Z' + - '2023-10-27T19:00:00Z' + - '2023-10-27T20:00:00Z' + - '2023-10-27T21:00:00Z' + - '2023-10-27T22:00:00Z' + - '2023-10-27T23:00:00Z' + - '2023-10-28T00:00:00Z' + - '2023-10-28T01:00:00Z' + - '2023-10-28T02:00:00Z' + - '2023-10-28T03:00:00Z' + - '2023-10-28T04:00:00Z' + - '2023-10-28T05:00:00Z' + - '2023-10-28T06:00:00Z' + - '2023-10-28T07:00:00Z' + - '2023-10-28T08:00:00Z' + - '2023-10-28T09:00:00Z' + - '2023-10-28T10:00:00Z' + - '2023-10-28T11:00:00Z' + - '2023-10-28T12:00:00Z' + - '2023-10-28T13:00:00Z' + - '2023-10-28T14:00:00Z' + - '2023-10-28T15:00:00Z' + - '2023-10-28T16:00:00Z' + - '2023-10-28T17:00:00Z' + - '2023-10-28T18:00:00Z' + - '2023-10-28T19:00:00Z' + - '2023-10-28T20:00:00Z' + - '2023-10-28T21:00:00Z' + - '2023-10-28T22:00:00Z' + - '2023-10-28T23:00:00Z' + - '2023-10-29T00:00:00Z' + - '2023-10-29T01:00:00Z' + - '2023-10-29T02:00:00Z' + - '2023-10-29T03:00:00Z' + - '2023-10-29T04:00:00Z' + - '2023-10-29T05:00:00Z' + - '2023-10-29T06:00:00Z' + - '2023-10-29T07:00:00Z' + - '2023-10-29T08:00:00Z' + - '2023-10-29T09:00:00Z' + - '2023-10-29T10:00:00Z' + - '2023-10-29T11:00:00Z' + - '2023-10-29T12:00:00Z' + - '2023-10-29T13:00:00Z' + - '2023-10-29T14:00:00Z' + - '2023-10-29T15:00:00Z' + - '2023-10-29T16:00:00Z' + - '2023-10-29T17:00:00Z' + - '2023-10-29T18:00:00Z' + - '2023-10-29T19:00:00Z' + - '2023-10-29T20:00:00Z' + - '2023-10-29T21:00:00Z' + - '2023-10-29T22:00:00Z' + - '2023-10-29T23:00:00Z' + - '2023-10-30T00:00:00Z' + - '2023-10-30T01:00:00Z' + - '2023-10-30T02:00:00Z' + - '2023-10-30T03:00:00Z' + - '2023-10-30T04:00:00Z' + - '2023-10-30T05:00:00Z' + - '2023-10-30T06:00:00Z' + - '2023-10-30T07:00:00Z' + - '2023-10-30T08:00:00Z' + - '2023-10-30T09:00:00Z' + - '2023-10-30T10:00:00Z' + - '2023-10-30T11:00:00Z' + - '2023-10-30T12:00:00Z' + - '2023-10-30T13:00:00Z' + - '2023-10-30T14:00:00Z' + - '2023-10-30T15:00:00Z' + - '2023-10-30T16:00:00Z' + - '2023-10-30T17:00:00Z' + - '2023-10-30T18:00:00Z' + - '2023-10-30T19:00:00Z' + - '2023-10-30T20:00:00Z' + - '2023-10-30T21:00:00Z' + - '2023-10-30T22:00:00Z' + - '2023-10-30T23:00:00Z' + - '2023-10-31T00:00:00Z' + - '2023-10-31T01:00:00Z' + - '2023-10-31T02:00:00Z' + - '2023-10-31T03:00:00Z' + - '2023-10-31T04:00:00Z' + - '2023-10-31T05:00:00Z' + - '2023-10-31T06:00:00Z' + - '2023-10-31T07:00:00Z' + - '2023-10-31T08:00:00Z' + - '2023-10-31T09:00:00Z' + - '2023-10-31T10:00:00Z' + - '2023-10-31T11:00:00Z' + - '2023-10-31T12:00:00Z' + - '2023-10-31T13:00:00Z' + - '2023-10-31T14:00:00Z' + - '2023-10-31T15:00:00Z' + - '2023-10-31T16:00:00Z' + - '2023-10-31T17:00:00Z' + - '2023-10-31T18:00:00Z' + - '2023-10-31T19:00:00Z' + - '2023-10-31T20:00:00Z' + - '2023-10-31T21:00:00Z' + - '2023-10-31T22:00:00Z' + - '2023-10-31T23:00:00Z' + - '2023-11-01T00:00:00Z' + - '2023-11-01T01:00:00Z' + - '2023-11-01T02:00:00Z' + - '2023-11-01T03:00:00Z' + - '2023-11-01T04:00:00Z' + - '2023-11-01T05:00:00Z' + - '2023-11-01T06:00:00Z' + - '2023-11-01T07:00:00Z' + - '2023-11-01T08:00:00Z' + - '2023-11-01T09:00:00Z' + - '2023-11-01T10:00:00Z' + - '2023-11-01T11:00:00Z' + - '2023-11-01T12:00:00Z' + - '2023-11-01T13:00:00Z' + - '2023-11-01T14:00:00Z' + - '2023-11-01T15:00:00Z' + - '2023-11-01T16:00:00Z' + - '2023-11-01T17:00:00Z' + - '2023-11-01T18:00:00Z' + - '2023-11-01T19:00:00Z' + - '2023-11-01T20:00:00Z' + - '2023-11-01T21:00:00Z' + - '2023-11-01T22:00:00Z' + - '2023-11-01T23:00:00Z' + - '2023-11-02T00:00:00Z' + - '2023-11-02T01:00:00Z' + - '2023-11-02T02:00:00Z' + - '2023-11-02T03:00:00Z' + - '2023-11-02T04:00:00Z' + - '2023-11-02T05:00:00Z' + - '2023-11-02T06:00:00Z' + - '2023-11-02T07:00:00Z' + - '2023-11-02T08:00:00Z' + - '2023-11-02T09:00:00Z' + - '2023-11-02T10:00:00Z' + - '2023-11-02T11:00:00Z' + - '2023-11-02T12:00:00Z' + - '2023-11-02T13:00:00Z' + - '2023-11-02T14:00:00Z' + - '2023-11-02T15:00:00Z' + - '2023-11-02T16:00:00Z' + - '2023-11-02T17:00:00Z' + - '2023-11-02T18:00:00Z' + - '2023-11-02T19:00:00Z' + - '2023-11-02T20:00:00Z' + - '2023-11-02T21:00:00Z' + - '2023-11-02T22:00:00Z' + - '2023-11-02T23:00:00Z' + - '2023-11-03T00:00:00Z' + - '2023-11-03T01:00:00Z' + - '2023-11-03T02:00:00Z' + - '2023-11-03T03:00:00Z' + - '2023-11-03T04:00:00Z' + - '2023-11-03T05:00:00Z' + - '2023-11-03T06:00:00Z' + - '2023-11-03T07:00:00Z' + - '2023-11-03T08:00:00Z' + - '2023-11-03T09:00:00Z' + - '2023-11-03T10:00:00Z' + - '2023-11-03T11:00:00Z' + - '2023-11-03T12:00:00Z' + - '2023-11-03T13:00:00Z' + - '2023-11-03T14:00:00Z' + - '2023-11-03T15:00:00Z' + - '2023-11-03T16:00:00Z' + - '2023-11-03T17:00:00Z' + - '2023-11-03T18:00:00Z' + - '2023-11-03T19:00:00Z' + - '2023-11-03T20:00:00Z' + - '2023-11-03T21:00:00Z' + - '2023-11-03T22:00:00Z' + - '2023-11-03T23:00:00Z' + - '2023-11-04T00:00:00Z' + - '2023-11-04T01:00:00Z' + - '2023-11-04T02:00:00Z' + - '2023-11-04T03:00:00Z' + - '2023-11-04T04:00:00Z' + - '2023-11-04T05:00:00Z' + - '2023-11-04T06:00:00Z' + - '2023-11-04T07:00:00Z' + - '2023-11-04T08:00:00Z' + - '2023-11-04T09:00:00Z' + - '2023-11-04T10:00:00Z' + - '2023-11-04T11:00:00Z' + - '2023-11-04T12:00:00Z' + - '2023-11-04T13:00:00Z' + - '2023-11-04T14:00:00Z' + - '2023-11-04T15:00:00Z' + - '2023-11-04T16:00:00Z' + - '2023-11-04T17:00:00Z' + - '2023-11-04T18:00:00Z' + - '2023-11-04T19:00:00Z' + - '2023-11-04T20:00:00Z' + - '2023-11-04T21:00:00Z' + - '2023-11-04T22:00:00Z' + - '2023-11-04T23:00:00Z' + - '2023-11-05T00:00:00Z' + - '2023-11-05T01:00:00Z' + - '2023-11-05T02:00:00Z' + - '2023-11-05T03:00:00Z' + - '2023-11-05T04:00:00Z' + - '2023-11-05T05:00:00Z' + - '2023-11-05T06:00:00Z' + - '2023-11-05T07:00:00Z' + - '2023-11-05T08:00:00Z' + - '2023-11-05T09:00:00Z' + - '2023-11-05T10:00:00Z' + - '2023-11-05T11:00:00Z' + - '2023-11-05T12:00:00Z' + - '2023-11-05T13:00:00Z' + - '2023-11-05T14:00:00Z' + - '2023-11-05T15:00:00Z' + - '2023-11-05T16:00:00Z' + - '2023-11-05T17:00:00Z' + - '2023-11-05T18:00:00Z' + - '2023-11-05T19:00:00Z' + - '2023-11-05T20:00:00Z' + - '2023-11-05T21:00:00Z' + - '2023-11-05T22:00:00Z' + - '2023-11-05T23:00:00Z' + - '2023-11-06T00:00:00Z' + - '2023-11-06T01:00:00Z' + - '2023-11-06T02:00:00Z' + - '2023-11-06T03:00:00Z' + - '2023-11-06T04:00:00Z' + - '2023-11-06T05:00:00Z' + - '2023-11-06T06:00:00Z' + - '2023-11-06T07:00:00Z' + - '2023-11-06T08:00:00Z' + - '2023-11-06T09:00:00Z' + - '2023-11-06T10:00:00Z' + - '2023-11-06T11:00:00Z' + - '2023-11-06T12:00:00Z' + - '2023-11-06T13:00:00Z' + - '2023-11-06T14:00:00Z' + - '2023-11-06T15:00:00Z' + - '2023-11-06T16:00:00Z' + - '2023-11-06T17:00:00Z' + - '2023-11-06T18:00:00Z' + - '2023-11-06T19:00:00Z' + - '2023-11-06T20:00:00Z' + - '2023-11-06T21:00:00Z' + - '2023-11-06T22:00:00Z' + - '2023-11-06T23:00:00Z' + - '2023-11-07T00:00:00Z' + - '2023-11-07T01:00:00Z' + - '2023-11-07T02:00:00Z' + - '2023-11-07T03:00:00Z' + - '2023-11-07T04:00:00Z' + - '2023-11-07T05:00:00Z' + - '2023-11-07T06:00:00Z' + - '2023-11-07T07:00:00Z' + - '2023-11-07T08:00:00Z' + - '2023-11-07T09:00:00Z' + - '2023-11-07T10:00:00Z' + - '2023-11-07T11:00:00Z' + - '2023-11-07T12:00:00Z' + - '2023-11-07T13:00:00Z' + - '2023-11-07T14:00:00Z' + - '2023-11-07T15:00:00Z' + - '2023-11-07T16:00:00Z' + - '2023-11-07T17:00:00Z' + - '2023-11-07T18:00:00Z' + - '2023-11-07T19:00:00Z' + - '2023-11-07T20:00:00Z' + - '2023-11-07T21:00:00Z' + - '2023-11-07T22:00:00Z' + - '2023-11-07T23:00:00Z' + - '2023-11-08T00:00:00Z' + - '2023-11-08T01:00:00Z' + - '2023-11-08T02:00:00Z' + - '2023-11-08T03:00:00Z' + - '2023-11-08T04:00:00Z' + - '2023-11-08T05:00:00Z' + - '2023-11-08T06:00:00Z' + - '2023-11-08T07:00:00Z' + - '2023-11-08T08:00:00Z' + - '2023-11-08T09:00:00Z' + - '2023-11-08T10:00:00Z' + - '2023-11-08T11:00:00Z' + - '2023-11-08T12:00:00Z' + - '2023-11-08T13:00:00Z' + - '2023-11-08T14:00:00Z' + - '2023-11-08T15:00:00Z' + - '2023-11-08T16:00:00Z' + - '2023-11-08T17:00:00Z' + - '2023-11-08T18:00:00Z' + - '2023-11-08T19:00:00Z' + - '2023-11-08T20:00:00Z' + - '2023-11-08T21:00:00Z' + - '2023-11-08T22:00:00Z' + - '2023-11-08T23:00:00Z' + - '2023-11-09T00:00:00Z' + - '2023-11-09T01:00:00Z' + - '2023-11-09T02:00:00Z' + - '2023-11-09T03:00:00Z' + - '2023-11-09T04:00:00Z' + - '2023-11-09T05:00:00Z' + - '2023-11-09T06:00:00Z' + - '2023-11-09T07:00:00Z' + - '2023-11-09T08:00:00Z' + - '2023-11-09T09:00:00Z' + - '2023-11-09T10:00:00Z' + - '2023-11-09T11:00:00Z' + - '2023-11-09T12:00:00Z' + - '2023-11-09T13:00:00Z' + - '2023-11-09T14:00:00Z' + - '2023-11-09T15:00:00Z' + - '2023-11-09T16:00:00Z' + - '2023-11-09T17:00:00Z' + - '2023-11-09T18:00:00Z' + - '2023-11-09T19:00:00Z' + - '2023-11-09T20:00:00Z' + - '2023-11-09T21:00:00Z' + - '2023-11-09T22:00:00Z' + - '2023-11-09T23:00:00Z' + - '2023-11-10T00:00:00Z' + - '2023-11-10T01:00:00Z' + - '2023-11-10T02:00:00Z' + - '2023-11-10T03:00:00Z' + - '2023-11-10T04:00:00Z' + - '2023-11-10T05:00:00Z' + - '2023-11-10T06:00:00Z' + - '2023-11-10T07:00:00Z' + - '2023-11-10T08:00:00Z' + - '2023-11-10T09:00:00Z' + - '2023-11-10T10:00:00Z' + - '2023-11-10T11:00:00Z' + - '2023-11-10T12:00:00Z' + - '2023-11-10T13:00:00Z' + - '2023-11-10T14:00:00Z' + - '2023-11-10T15:00:00Z' + - '2023-11-10T16:00:00Z' + - '2023-11-10T17:00:00Z' + - '2023-11-10T18:00:00Z' + - '2023-11-10T19:00:00Z' + - '2023-11-10T20:00:00Z' + - '2023-11-10T21:00:00Z' + - '2023-11-10T22:00:00Z' + - '2023-11-10T23:00:00Z' + - '2023-11-11T00:00:00Z' + - '2023-11-11T01:00:00Z' + - '2023-11-11T02:00:00Z' + - '2023-11-11T03:00:00Z' + - '2023-11-11T04:00:00Z' + - '2023-11-11T05:00:00Z' + - '2023-11-11T06:00:00Z' + - '2023-11-11T07:00:00Z' + - '2023-11-11T08:00:00Z' + - '2023-11-11T09:00:00Z' + - '2023-11-11T10:00:00Z' + - '2023-11-11T11:00:00Z' + - '2023-11-11T12:00:00Z' + - '2023-11-11T13:00:00Z' + - '2023-11-11T14:00:00Z' + - '2023-11-11T15:00:00Z' + - '2023-11-11T16:00:00Z' + - '2023-11-11T17:00:00Z' + - '2023-11-11T18:00:00Z' + - '2023-11-11T19:00:00Z' + - '2023-11-11T20:00:00Z' + - '2023-11-11T21:00:00Z' + - '2023-11-11T22:00:00Z' + - '2023-11-11T23:00:00Z' + - '2023-11-12T00:00:00Z' + - '2023-11-12T01:00:00Z' + - '2023-11-12T02:00:00Z' + - '2023-11-12T03:00:00Z' + - '2023-11-12T04:00:00Z' + - '2023-11-12T05:00:00Z' + - '2023-11-12T06:00:00Z' + - '2023-11-12T07:00:00Z' + - '2023-11-12T08:00:00Z' + - '2023-11-12T09:00:00Z' + - '2023-11-12T10:00:00Z' + - '2023-11-12T11:00:00Z' + - '2023-11-12T12:00:00Z' + - '2023-11-12T13:00:00Z' + - '2023-11-12T14:00:00Z' + - '2023-11-12T15:00:00Z' + - '2023-11-12T16:00:00Z' + - '2023-11-12T17:00:00Z' + - '2023-11-12T18:00:00Z' + - '2023-11-12T19:00:00Z' + - '2023-11-12T20:00:00Z' + - '2023-11-12T21:00:00Z' + - '2023-11-12T22:00:00Z' + - '2023-11-12T23:00:00Z' + - '2023-11-13T00:00:00Z' + - '2023-11-13T01:00:00Z' + - '2023-11-13T02:00:00Z' + - '2023-11-13T03:00:00Z' + - '2023-11-13T04:00:00Z' + - '2023-11-13T05:00:00Z' + - '2023-11-13T06:00:00Z' + - '2023-11-13T07:00:00Z' + - '2023-11-13T08:00:00Z' + - '2023-11-13T09:00:00Z' + - '2023-11-13T10:00:00Z' + - '2023-11-13T11:00:00Z' + - '2023-11-13T12:00:00Z' + - '2023-11-13T13:00:00Z' + - '2023-11-13T14:00:00Z' + - '2023-11-13T15:00:00Z' + - '2023-11-13T16:00:00Z' + - '2023-11-13T17:00:00Z' + - '2023-11-13T18:00:00Z' + - '2023-11-13T19:00:00Z' + - '2023-11-13T20:00:00Z' + - '2023-11-13T21:00:00Z' + - '2023-11-13T22:00:00Z' + - '2023-11-13T23:00:00Z' + - '2023-11-14T00:00:00Z' + - '2023-11-14T01:00:00Z' + - '2023-11-14T02:00:00Z' + - '2023-11-14T03:00:00Z' + - '2023-11-14T04:00:00Z' + - '2023-11-14T05:00:00Z' + - '2023-11-14T06:00:00Z' + - '2023-11-14T07:00:00Z' + - '2023-11-14T08:00:00Z' + - '2023-11-14T09:00:00Z' + - '2023-11-14T10:00:00Z' + - '2023-11-14T11:00:00Z' + - '2023-11-14T12:00:00Z' + - '2023-11-14T13:00:00Z' + - '2023-11-14T14:00:00Z' + - '2023-11-14T15:00:00Z' + - '2023-11-14T16:00:00Z' + - '2023-11-14T17:00:00Z' + - '2023-11-14T18:00:00Z' + - '2023-11-14T19:00:00Z' + - '2023-11-14T20:00:00Z' + - '2023-11-14T21:00:00Z' + - '2023-11-14T22:00:00Z' + - '2023-11-14T23:00:00Z' + - '2023-11-15T00:00:00Z' + - '2023-11-15T01:00:00Z' + - '2023-11-15T02:00:00Z' + - '2023-11-15T03:00:00Z' + - '2023-11-15T04:00:00Z' + - '2023-11-15T05:00:00Z' + - '2023-11-15T06:00:00Z' + - '2023-11-15T07:00:00Z' + - '2023-11-15T08:00:00Z' + - '2023-11-15T09:00:00Z' + - '2023-11-15T10:00:00Z' + - '2023-11-15T11:00:00Z' + - '2023-11-15T12:00:00Z' + - '2023-11-15T13:00:00Z' + - '2023-11-15T14:00:00Z' + - '2023-11-15T15:00:00Z' + - '2023-11-15T16:00:00Z' + - '2023-11-15T17:00:00Z' + - '2023-11-15T18:00:00Z' + - '2023-11-15T19:00:00Z' + - '2023-11-15T20:00:00Z' + - '2023-11-15T21:00:00Z' + - '2023-11-15T22:00:00Z' + - '2023-11-15T23:00:00Z' + - '2023-11-16T00:00:00Z' + - '2023-11-16T01:00:00Z' + - '2023-11-16T02:00:00Z' + - '2023-11-16T03:00:00Z' + - '2023-11-16T04:00:00Z' + - '2023-11-16T05:00:00Z' + - '2023-11-16T06:00:00Z' + - '2023-11-16T07:00:00Z' + - '2023-11-16T08:00:00Z' + - '2023-11-16T09:00:00Z' + - '2023-11-16T10:00:00Z' + - '2023-11-16T11:00:00Z' + - '2023-11-16T12:00:00Z' + - '2023-11-16T13:00:00Z' + - '2023-11-16T14:00:00Z' + - '2023-11-16T15:00:00Z' + - '2023-11-16T16:00:00Z' + - '2023-11-16T17:00:00Z' + - '2023-11-16T18:00:00Z' + - '2023-11-16T19:00:00Z' + - '2023-11-16T20:00:00Z' + - '2023-11-16T21:00:00Z' + - '2023-11-16T22:00:00Z' + - '2023-11-16T23:00:00Z' + - '2023-11-17T00:00:00Z' + - '2023-11-17T01:00:00Z' + - '2023-11-17T02:00:00Z' + - '2023-11-17T03:00:00Z' + - '2023-11-17T04:00:00Z' + - '2023-11-17T05:00:00Z' + - '2023-11-17T06:00:00Z' + - '2023-11-17T07:00:00Z' + - '2023-11-17T08:00:00Z' + - '2023-11-17T09:00:00Z' + - '2023-11-17T10:00:00Z' + - '2023-11-17T11:00:00Z' + - '2023-11-17T12:00:00Z' + - '2023-11-17T13:00:00Z' + - '2023-11-17T14:00:00Z' + - '2023-11-17T15:00:00Z' + - '2023-11-17T16:00:00Z' + - '2023-11-17T17:00:00Z' + - '2023-11-17T18:00:00Z' + - '2023-11-17T19:00:00Z' + - '2023-11-17T20:00:00Z' + - '2023-11-17T21:00:00Z' + - '2023-11-17T22:00:00Z' + - '2023-11-17T23:00:00Z' + - '2023-11-18T00:00:00Z' + - '2023-11-18T01:00:00Z' + - '2023-11-18T02:00:00Z' + - '2023-11-18T03:00:00Z' + - '2023-11-18T04:00:00Z' + - '2023-11-18T05:00:00Z' + - '2023-11-18T06:00:00Z' + - '2023-11-18T07:00:00Z' + - '2023-11-18T08:00:00Z' + - '2023-11-18T09:00:00Z' + - '2023-11-18T10:00:00Z' + - '2023-11-18T11:00:00Z' + - '2023-11-18T12:00:00Z' + - '2023-11-18T13:00:00Z' + - '2023-11-18T14:00:00Z' + - '2023-11-18T15:00:00Z' + - '2023-11-18T16:00:00Z' + - '2023-11-18T17:00:00Z' + - '2023-11-18T18:00:00Z' + - '2023-11-18T19:00:00Z' + - '2023-11-18T20:00:00Z' + - '2023-11-18T21:00:00Z' + - '2023-11-18T22:00:00Z' + - '2023-11-18T23:00:00Z' + - '2023-11-19T00:00:00Z' + - '2023-11-19T01:00:00Z' + - '2023-11-19T02:00:00Z' + - '2023-11-19T03:00:00Z' + - '2023-11-19T04:00:00Z' + - '2023-11-19T05:00:00Z' + - '2023-11-19T06:00:00Z' + - '2023-11-19T07:00:00Z' + - '2023-11-19T08:00:00Z' + - '2023-11-19T09:00:00Z' + - '2023-11-19T10:00:00Z' + - '2023-11-19T11:00:00Z' + - '2023-11-19T12:00:00Z' + - '2023-11-19T13:00:00Z' + - '2023-11-19T14:00:00Z' + - '2023-11-19T15:00:00Z' + - '2023-11-19T16:00:00Z' + - '2023-11-19T17:00:00Z' + - '2023-11-19T18:00:00Z' + - '2023-11-19T19:00:00Z' + - '2023-11-19T20:00:00Z' + - '2023-11-19T21:00:00Z' + - '2023-11-19T22:00:00Z' + - '2023-11-19T23:00:00Z' + - '2023-11-20T00:00:00Z' + - '2023-11-20T01:00:00Z' + - '2023-11-20T02:00:00Z' + - '2023-11-20T03:00:00Z' + - '2023-11-20T04:00:00Z' + - '2023-11-20T05:00:00Z' + - '2023-11-20T06:00:00Z' + - '2023-11-20T07:00:00Z' + - '2023-11-20T08:00:00Z' + - '2023-11-20T09:00:00Z' + - '2023-11-20T10:00:00Z' + - '2023-11-20T11:00:00Z' + - '2023-11-20T12:00:00Z' + - '2023-11-20T13:00:00Z' + - '2023-11-20T14:00:00Z' + - '2023-11-20T15:00:00Z' + - '2023-11-20T16:00:00Z' + - '2023-11-20T17:00:00Z' + - '2023-11-20T18:00:00Z' + - '2023-11-20T19:00:00Z' + - '2023-11-20T20:00:00Z' + - '2023-11-20T21:00:00Z' + - '2023-11-20T22:00:00Z' + - '2023-11-20T23:00:00Z' + - '2023-11-21T00:00:00Z' + - '2023-11-21T01:00:00Z' + - '2023-11-21T02:00:00Z' + - '2023-11-21T03:00:00Z' + - '2023-11-21T04:00:00Z' + - '2023-11-21T05:00:00Z' + - '2023-11-21T06:00:00Z' + - '2023-11-21T07:00:00Z' + - '2023-11-21T08:00:00Z' + - '2023-11-21T09:00:00Z' + - '2023-11-21T10:00:00Z' + - '2023-11-21T11:00:00Z' + - '2023-11-21T12:00:00Z' + - '2023-11-21T13:00:00Z' + - '2023-11-21T14:00:00Z' + - '2023-11-21T15:00:00Z' + - '2023-11-21T16:00:00Z' + - '2023-11-21T17:00:00Z' + - '2023-11-21T18:00:00Z' + - '2023-11-21T19:00:00Z' + - '2023-11-21T20:00:00Z' + - '2023-11-21T21:00:00Z' + - '2023-11-21T22:00:00Z' + - '2023-11-21T23:00:00Z' + - '2023-11-22T00:00:00Z' + - '2023-11-22T01:00:00Z' + - '2023-11-22T02:00:00Z' + - '2023-11-22T03:00:00Z' + - '2023-11-22T04:00:00Z' + - '2023-11-22T05:00:00Z' + - '2023-11-22T06:00:00Z' + - '2023-11-22T07:00:00Z' + - '2023-11-22T08:00:00Z' + - '2023-11-22T09:00:00Z' + - '2023-11-22T10:00:00Z' + - '2023-11-22T11:00:00Z' + - '2023-11-22T12:00:00Z' + - '2023-11-22T13:00:00Z' + - '2023-11-22T14:00:00Z' + - '2023-11-22T15:00:00Z' + - '2023-11-22T16:00:00Z' + - '2023-11-22T17:00:00Z' + - '2023-11-22T18:00:00Z' + - '2023-11-22T19:00:00Z' + - '2023-11-22T20:00:00Z' + - '2023-11-22T21:00:00Z' + - '2023-11-22T22:00:00Z' + - '2023-11-22T23:00:00Z' + - '2023-11-23T00:00:00Z' + - '2023-11-23T01:00:00Z' + - '2023-11-23T02:00:00Z' + - '2023-11-23T03:00:00Z' + - '2023-11-23T04:00:00Z' + - '2023-11-23T05:00:00Z' + - '2023-11-23T06:00:00Z' + - '2023-11-23T07:00:00Z' + - '2023-11-23T08:00:00Z' + - '2023-11-23T09:00:00Z' + - '2023-11-23T10:00:00Z' + - '2023-11-23T11:00:00Z' + - '2023-11-23T12:00:00Z' + - '2023-11-23T13:00:00Z' + - '2023-11-23T14:00:00Z' + - '2023-11-23T15:00:00Z' + - '2023-11-23T16:00:00Z' + - '2023-11-23T17:00:00Z' + - '2023-11-23T18:00:00Z' + - '2023-11-23T19:00:00Z' + - '2023-11-23T20:00:00Z' + - '2023-11-23T21:00:00Z' + - '2023-11-23T22:00:00Z' + - '2023-11-23T23:00:00Z' + - '2023-11-24T00:00:00Z' + - '2023-11-24T01:00:00Z' + - '2023-11-24T02:00:00Z' + - '2023-11-24T03:00:00Z' + - '2023-11-24T04:00:00Z' + - '2023-11-24T05:00:00Z' + - '2023-11-24T06:00:00Z' + - '2023-11-24T07:00:00Z' + - '2023-11-24T08:00:00Z' + - '2023-11-24T09:00:00Z' + - '2023-11-24T10:00:00Z' + - '2023-11-24T11:00:00Z' + - '2023-11-24T12:00:00Z' + - '2023-11-24T13:00:00Z' + - '2023-11-24T14:00:00Z' + - '2023-11-24T15:00:00Z' + - '2023-11-24T16:00:00Z' + - '2023-11-24T17:00:00Z' + - '2023-11-24T18:00:00Z' + - '2023-11-24T19:00:00Z' + - '2023-11-24T20:00:00Z' + - '2023-11-24T21:00:00Z' + - '2023-11-24T22:00:00Z' + - '2023-11-24T23:00:00Z' + - '2023-11-25T00:00:00Z' + - '2023-11-25T01:00:00Z' + - '2023-11-25T02:00:00Z' + - '2023-11-25T03:00:00Z' + - '2023-11-25T04:00:00Z' + - '2023-11-25T05:00:00Z' + - '2023-11-25T06:00:00Z' + - '2023-11-25T07:00:00Z' + - '2023-11-25T08:00:00Z' + - '2023-11-25T09:00:00Z' + - '2023-11-25T10:00:00Z' + - '2023-11-25T11:00:00Z' + - '2023-11-25T12:00:00Z' + - '2023-11-25T13:00:00Z' + - '2023-11-25T14:00:00Z' + - '2023-11-25T15:00:00Z' + - '2023-11-25T16:00:00Z' + - '2023-11-25T17:00:00Z' + - '2023-11-25T18:00:00Z' + - '2023-11-25T19:00:00Z' + - '2023-11-25T20:00:00Z' + - '2023-11-25T21:00:00Z' + - '2023-11-25T22:00:00Z' + - '2023-11-25T23:00:00Z' + - '2023-11-26T00:00:00Z' + - '2023-11-26T01:00:00Z' + - '2023-11-26T02:00:00Z' + - '2023-11-26T03:00:00Z' + - '2023-11-26T04:00:00Z' + - '2023-11-26T05:00:00Z' + - '2023-11-26T06:00:00Z' + - '2023-11-26T07:00:00Z' + - '2023-11-26T08:00:00Z' + - '2023-11-26T09:00:00Z' + - '2023-11-26T10:00:00Z' + - '2023-11-26T11:00:00Z' + - '2023-11-26T12:00:00Z' + - '2023-11-26T13:00:00Z' + - '2023-11-26T14:00:00Z' + - '2023-11-26T15:00:00Z' + - '2023-11-26T16:00:00Z' + - '2023-11-26T17:00:00Z' + - '2023-11-26T18:00:00Z' + - '2023-11-26T19:00:00Z' + - '2023-11-26T20:00:00Z' + - '2023-11-26T21:00:00Z' + - '2023-11-26T22:00:00Z' + - '2023-11-26T23:00:00Z' + - '2023-11-27T00:00:00Z' + - '2023-11-27T01:00:00Z' + - '2023-11-27T02:00:00Z' + - '2023-11-27T03:00:00Z' + - '2023-11-27T04:00:00Z' + - '2023-11-27T05:00:00Z' + - '2023-11-27T06:00:00Z' + - '2023-11-27T07:00:00Z' + - '2023-11-27T08:00:00Z' + - '2023-11-27T09:00:00Z' + - '2023-11-27T10:00:00Z' + - '2023-11-27T11:00:00Z' + - '2023-11-27T12:00:00Z' + - '2023-11-27T13:00:00Z' + - '2023-11-27T14:00:00Z' + - '2023-11-27T15:00:00Z' + - '2023-11-27T16:00:00Z' + - '2023-11-27T17:00:00Z' + - '2023-11-27T18:00:00Z' + - '2023-11-27T19:00:00Z' + - '2023-11-27T20:00:00Z' + - '2023-11-27T21:00:00Z' + - '2023-11-27T22:00:00Z' + - '2023-11-27T23:00:00Z' + - '2023-11-28T00:00:00Z' + - '2023-11-28T01:00:00Z' + - '2023-11-28T02:00:00Z' + - '2023-11-28T03:00:00Z' + - '2023-11-28T04:00:00Z' + - '2023-11-28T05:00:00Z' + - '2023-11-28T06:00:00Z' + - '2023-11-28T07:00:00Z' + - '2023-11-28T08:00:00Z' + - '2023-11-28T09:00:00Z' + - '2023-11-28T10:00:00Z' + - '2023-11-28T11:00:00Z' + - '2023-11-28T12:00:00Z' + - '2023-11-28T13:00:00Z' + - '2023-11-28T14:00:00Z' + - '2023-11-28T15:00:00Z' + - '2023-11-28T16:00:00Z' + - '2023-11-28T17:00:00Z' + - '2023-11-28T18:00:00Z' + - '2023-11-28T19:00:00Z' + - '2023-11-28T20:00:00Z' + - '2023-11-28T21:00:00Z' + - '2023-11-28T22:00:00Z' + - '2023-11-28T23:00:00Z' + - '2023-11-29T00:00:00Z' + - '2023-11-29T01:00:00Z' + - '2023-11-29T02:00:00Z' + - '2023-11-29T03:00:00Z' + - '2023-11-29T04:00:00Z' + - '2023-11-29T05:00:00Z' + - '2023-11-29T06:00:00Z' + - '2023-11-29T07:00:00Z' + - '2023-11-29T08:00:00Z' + - '2023-11-29T09:00:00Z' + - '2023-11-29T10:00:00Z' + - '2023-11-29T11:00:00Z' + - '2023-11-29T12:00:00Z' + - '2023-11-29T13:00:00Z' + - '2023-11-29T14:00:00Z' + - '2023-11-29T15:00:00Z' + - '2023-11-29T16:00:00Z' + - '2023-11-29T17:00:00Z' + - '2023-11-29T18:00:00Z' + - '2023-11-29T19:00:00Z' + - '2023-11-29T20:00:00Z' + - '2023-11-29T21:00:00Z' + - '2023-11-29T22:00:00Z' + - '2023-11-29T23:00:00Z' + - '2023-11-30T00:00:00Z' + - '2023-11-30T01:00:00Z' + - '2023-11-30T02:00:00Z' + - '2023-11-30T03:00:00Z' + - '2023-11-30T04:00:00Z' + - '2023-11-30T05:00:00Z' + - '2023-11-30T06:00:00Z' + - '2023-11-30T07:00:00Z' + - '2023-11-30T08:00:00Z' + - '2023-11-30T09:00:00Z' + - '2023-11-30T10:00:00Z' + - '2023-11-30T11:00:00Z' + - '2023-11-30T12:00:00Z' + - '2023-11-30T13:00:00Z' + - '2023-11-30T14:00:00Z' + - '2023-11-30T15:00:00Z' + - '2023-11-30T16:00:00Z' + - '2023-11-30T17:00:00Z' + - '2023-11-30T18:00:00Z' + - '2023-11-30T19:00:00Z' + - '2023-11-30T20:00:00Z' + - '2023-11-30T21:00:00Z' + - '2023-11-30T22:00:00Z' + - '2023-11-30T23:00:00Z' + - '2023-12-01T00:00:00Z' + - '2023-12-01T01:00:00Z' + - '2023-12-01T02:00:00Z' + - '2023-12-01T03:00:00Z' + - '2023-12-01T04:00:00Z' + - '2023-12-01T05:00:00Z' + - '2023-12-01T06:00:00Z' + - '2023-12-01T07:00:00Z' + - '2023-12-01T08:00:00Z' + - '2023-12-01T09:00:00Z' + - '2023-12-01T10:00:00Z' + - '2023-12-01T11:00:00Z' + - '2023-12-01T12:00:00Z' + - '2023-12-01T13:00:00Z' + - '2023-12-01T14:00:00Z' + - '2023-12-01T15:00:00Z' + - '2023-12-01T16:00:00Z' + - '2023-12-01T17:00:00Z' + - '2023-12-01T18:00:00Z' + - '2023-12-01T19:00:00Z' + - '2023-12-01T20:00:00Z' + - '2023-12-01T21:00:00Z' + - '2023-12-01T22:00:00Z' + - '2023-12-01T23:00:00Z' + - '2023-12-02T00:00:00Z' + - '2023-12-02T01:00:00Z' + - '2023-12-02T02:00:00Z' + - '2023-12-02T03:00:00Z' + - '2023-12-02T04:00:00Z' + - '2023-12-02T05:00:00Z' + - '2023-12-02T06:00:00Z' + - '2023-12-02T07:00:00Z' + - '2023-12-02T08:00:00Z' + - '2023-12-02T09:00:00Z' + - '2023-12-02T10:00:00Z' + - '2023-12-02T11:00:00Z' + - '2023-12-02T12:00:00Z' + - '2023-12-02T13:00:00Z' + - '2023-12-02T14:00:00Z' + - '2023-12-02T15:00:00Z' + - '2023-12-02T16:00:00Z' + - '2023-12-02T17:00:00Z' + - '2023-12-02T18:00:00Z' + - '2023-12-02T19:00:00Z' + - '2023-12-02T20:00:00Z' + - '2023-12-02T21:00:00Z' + - '2023-12-02T22:00:00Z' + - '2023-12-02T23:00:00Z' + - '2023-12-03T00:00:00Z' + - '2023-12-03T01:00:00Z' + - '2023-12-03T02:00:00Z' + - '2023-12-03T03:00:00Z' + - '2023-12-03T04:00:00Z' + - '2023-12-03T05:00:00Z' + - '2023-12-03T06:00:00Z' + - '2023-12-03T07:00:00Z' + - '2023-12-03T08:00:00Z' + - '2023-12-03T09:00:00Z' + - '2023-12-03T10:00:00Z' + - '2023-12-03T11:00:00Z' + - '2023-12-03T12:00:00Z' + - '2023-12-03T13:00:00Z' + - '2023-12-03T14:00:00Z' + - '2023-12-03T15:00:00Z' + - '2023-12-03T16:00:00Z' + - '2023-12-03T17:00:00Z' + - '2023-12-03T18:00:00Z' + - '2023-12-03T19:00:00Z' + - '2023-12-03T20:00:00Z' + - '2023-12-03T21:00:00Z' + - '2023-12-03T22:00:00Z' + - '2023-12-03T23:00:00Z' + - '2023-12-04T00:00:00Z' + - '2023-12-04T01:00:00Z' + - '2023-12-04T02:00:00Z' + - '2023-12-04T03:00:00Z' + - '2023-12-04T04:00:00Z' + - '2023-12-04T05:00:00Z' + - '2023-12-04T06:00:00Z' + - '2023-12-04T07:00:00Z' + - '2023-12-04T08:00:00Z' + - '2023-12-04T09:00:00Z' + - '2023-12-04T10:00:00Z' + - '2023-12-04T11:00:00Z' + - '2023-12-04T12:00:00Z' + - '2023-12-04T13:00:00Z' + - '2023-12-04T14:00:00Z' + - '2023-12-04T15:00:00Z' + - '2023-12-04T16:00:00Z' + - '2023-12-04T17:00:00Z' + - '2023-12-04T18:00:00Z' + - '2023-12-04T19:00:00Z' + - '2023-12-04T20:00:00Z' + - '2023-12-04T21:00:00Z' + - '2023-12-04T22:00:00Z' + - '2023-12-04T23:00:00Z' + - '2023-12-05T00:00:00Z' + - '2023-12-05T01:00:00Z' + - '2023-12-05T02:00:00Z' + - '2023-12-05T03:00:00Z' + - '2023-12-05T04:00:00Z' + - '2023-12-05T05:00:00Z' + - '2023-12-05T06:00:00Z' + - '2023-12-05T07:00:00Z' + - '2023-12-05T08:00:00Z' + - '2023-12-05T09:00:00Z' + - '2023-12-05T10:00:00Z' + - '2023-12-05T11:00:00Z' + - '2023-12-05T12:00:00Z' + - '2023-12-05T13:00:00Z' + - '2023-12-05T14:00:00Z' + - '2023-12-05T15:00:00Z' + - '2023-12-05T16:00:00Z' + - '2023-12-05T17:00:00Z' + - '2023-12-05T18:00:00Z' + - '2023-12-05T19:00:00Z' + - '2023-12-05T20:00:00Z' + - '2023-12-05T21:00:00Z' + - '2023-12-05T22:00:00Z' + - '2023-12-05T23:00:00Z' + - '2023-12-06T00:00:00Z' + - '2023-12-06T01:00:00Z' + - '2023-12-06T02:00:00Z' + - '2023-12-06T03:00:00Z' + - '2023-12-06T04:00:00Z' + - '2023-12-06T05:00:00Z' + - '2023-12-06T06:00:00Z' + - '2023-12-06T07:00:00Z' + - '2023-12-06T08:00:00Z' + - '2023-12-06T09:00:00Z' + - '2023-12-06T10:00:00Z' + - '2023-12-06T11:00:00Z' + - '2023-12-06T12:00:00Z' + - '2023-12-06T13:00:00Z' + - '2023-12-06T14:00:00Z' + - '2023-12-06T15:00:00Z' + - '2023-12-06T16:00:00Z' + - '2023-12-06T17:00:00Z' + - '2023-12-06T18:00:00Z' + - '2023-12-06T19:00:00Z' + - '2023-12-06T20:00:00Z' + - '2023-12-06T21:00:00Z' + - '2023-12-06T22:00:00Z' + - '2023-12-06T23:00:00Z' + - '2023-12-07T00:00:00Z' + - '2023-12-07T01:00:00Z' + - '2023-12-07T02:00:00Z' + - '2023-12-07T03:00:00Z' + - '2023-12-07T04:00:00Z' + - '2023-12-07T05:00:00Z' + - '2023-12-07T06:00:00Z' + - '2023-12-07T07:00:00Z' + - '2023-12-07T08:00:00Z' + - '2023-12-07T09:00:00Z' + - '2023-12-07T10:00:00Z' + - '2023-12-07T11:00:00Z' + - '2023-12-07T12:00:00Z' + - '2023-12-07T13:00:00Z' + - '2023-12-07T14:00:00Z' + - '2023-12-07T15:00:00Z' + - '2023-12-07T16:00:00Z' + - '2023-12-07T17:00:00Z' + - '2023-12-07T18:00:00Z' + - '2023-12-07T19:00:00Z' + - '2023-12-07T20:00:00Z' + - '2023-12-07T21:00:00Z' + - '2023-12-07T22:00:00Z' + - '2023-12-07T23:00:00Z' + - '2023-12-08T00:00:00Z' + - '2023-12-08T01:00:00Z' + - '2023-12-08T02:00:00Z' + - '2023-12-08T03:00:00Z' + - '2023-12-08T04:00:00Z' + - '2023-12-08T05:00:00Z' + - '2023-12-08T06:00:00Z' + - '2023-12-08T07:00:00Z' + - '2023-12-08T08:00:00Z' + - '2023-12-08T09:00:00Z' + - '2023-12-08T10:00:00Z' + - '2023-12-08T11:00:00Z' + - '2023-12-08T12:00:00Z' + - '2023-12-08T13:00:00Z' + - '2023-12-08T14:00:00Z' + - '2023-12-08T15:00:00Z' + - '2023-12-08T16:00:00Z' + - '2023-12-08T17:00:00Z' + - '2023-12-08T18:00:00Z' + - '2023-12-08T19:00:00Z' + - '2023-12-08T20:00:00Z' + - '2023-12-08T21:00:00Z' + - '2023-12-08T22:00:00Z' + - '2023-12-08T23:00:00Z' + - '2023-12-09T00:00:00Z' + - '2023-12-09T01:00:00Z' + - '2023-12-09T02:00:00Z' + - '2023-12-09T03:00:00Z' + - '2023-12-09T04:00:00Z' + - '2023-12-09T05:00:00Z' + - '2023-12-09T06:00:00Z' + - '2023-12-09T07:00:00Z' + - '2023-12-09T08:00:00Z' + - '2023-12-09T09:00:00Z' + - '2023-12-09T10:00:00Z' + - '2023-12-09T11:00:00Z' + - '2023-12-09T12:00:00Z' + - '2023-12-09T13:00:00Z' + - '2023-12-09T14:00:00Z' + - '2023-12-09T15:00:00Z' + - '2023-12-09T16:00:00Z' + - '2023-12-09T17:00:00Z' + - '2023-12-09T18:00:00Z' + - '2023-12-09T19:00:00Z' + - '2023-12-09T20:00:00Z' + - '2023-12-09T21:00:00Z' + - '2023-12-09T22:00:00Z' + - '2023-12-09T23:00:00Z' + - '2023-12-10T00:00:00Z' + - '2023-12-10T01:00:00Z' + - '2023-12-10T02:00:00Z' + - '2023-12-10T03:00:00Z' + - '2023-12-10T04:00:00Z' + - '2023-12-10T05:00:00Z' + - '2023-12-10T06:00:00Z' + - '2023-12-10T07:00:00Z' + - '2023-12-10T08:00:00Z' + - '2023-12-10T09:00:00Z' + - '2023-12-10T10:00:00Z' + - '2023-12-10T11:00:00Z' + - '2023-12-10T12:00:00Z' + - '2023-12-10T13:00:00Z' + - '2023-12-10T14:00:00Z' + - '2023-12-10T15:00:00Z' + - '2023-12-10T16:00:00Z' + - '2023-12-10T17:00:00Z' + - '2023-12-10T18:00:00Z' + - '2023-12-10T19:00:00Z' + - '2023-12-10T20:00:00Z' + - '2023-12-10T21:00:00Z' + - '2023-12-10T22:00:00Z' + - '2023-12-10T23:00:00Z' + - '2023-12-11T00:00:00Z' + - '2023-12-11T01:00:00Z' + - '2023-12-11T02:00:00Z' + - '2023-12-11T03:00:00Z' + - '2023-12-11T04:00:00Z' + - '2023-12-11T05:00:00Z' + - '2023-12-11T06:00:00Z' + - '2023-12-11T07:00:00Z' + - '2023-12-11T08:00:00Z' + - '2023-12-11T09:00:00Z' + - '2023-12-11T10:00:00Z' + - '2023-12-11T11:00:00Z' + - '2023-12-11T12:00:00Z' + - '2023-12-11T13:00:00Z' + - '2023-12-11T14:00:00Z' + - '2023-12-11T15:00:00Z' + - '2023-12-11T16:00:00Z' + - '2023-12-11T17:00:00Z' + - '2023-12-11T18:00:00Z' + - '2023-12-11T19:00:00Z' + - '2023-12-11T20:00:00Z' + - '2023-12-11T21:00:00Z' + - '2023-12-11T22:00:00Z' + - '2023-12-11T23:00:00Z' + - '2023-12-12T00:00:00Z' + - '2023-12-12T01:00:00Z' + - '2023-12-12T02:00:00Z' + - '2023-12-12T03:00:00Z' + - '2023-12-12T04:00:00Z' + - '2023-12-12T05:00:00Z' + - '2023-12-12T06:00:00Z' + - '2023-12-12T07:00:00Z' + - '2023-12-12T08:00:00Z' + - '2023-12-12T09:00:00Z' + - '2023-12-12T10:00:00Z' + - '2023-12-12T11:00:00Z' + - '2023-12-12T12:00:00Z' + - '2023-12-12T13:00:00Z' + - '2023-12-12T14:00:00Z' + - '2023-12-12T15:00:00Z' + - '2023-12-12T16:00:00Z' + - '2023-12-12T17:00:00Z' + - '2023-12-12T18:00:00Z' + - '2023-12-12T19:00:00Z' + - '2023-12-12T20:00:00Z' + - '2023-12-12T21:00:00Z' + - '2023-12-12T22:00:00Z' + - '2023-12-12T23:00:00Z' + - '2023-12-13T00:00:00Z' + - '2023-12-13T01:00:00Z' + - '2023-12-13T02:00:00Z' + - '2023-12-13T03:00:00Z' + - '2023-12-13T04:00:00Z' + - '2023-12-13T05:00:00Z' + - '2023-12-13T06:00:00Z' + - '2023-12-13T07:00:00Z' + - '2023-12-13T08:00:00Z' + - '2023-12-13T09:00:00Z' + - '2023-12-13T10:00:00Z' + - '2023-12-13T11:00:00Z' + - '2023-12-13T12:00:00Z' + - '2023-12-13T13:00:00Z' + - '2023-12-13T14:00:00Z' + - '2023-12-13T15:00:00Z' + - '2023-12-13T16:00:00Z' + - '2023-12-13T17:00:00Z' + - '2023-12-13T18:00:00Z' + - '2023-12-13T19:00:00Z' + - '2023-12-13T20:00:00Z' + - '2023-12-13T21:00:00Z' + - '2023-12-13T22:00:00Z' + - '2023-12-13T23:00:00Z' + - '2023-12-14T00:00:00Z' + - '2023-12-14T01:00:00Z' + - '2023-12-14T02:00:00Z' + - '2023-12-14T03:00:00Z' + - '2023-12-14T04:00:00Z' + - '2023-12-14T05:00:00Z' + - '2023-12-14T06:00:00Z' + - '2023-12-14T07:00:00Z' + - '2023-12-14T08:00:00Z' + - '2023-12-14T09:00:00Z' + - '2023-12-14T10:00:00Z' + - '2023-12-14T11:00:00Z' + - '2023-12-14T12:00:00Z' + - '2023-12-14T13:00:00Z' + - '2023-12-14T14:00:00Z' + - '2023-12-14T15:00:00Z' + - '2023-12-14T16:00:00Z' + - '2023-12-14T17:00:00Z' + - '2023-12-14T18:00:00Z' + - '2023-12-14T19:00:00Z' + - '2023-12-14T20:00:00Z' + - '2023-12-14T21:00:00Z' + - '2023-12-14T22:00:00Z' + - '2023-12-14T23:00:00Z' + - '2023-12-15T00:00:00Z' + - '2023-12-15T01:00:00Z' + - '2023-12-15T02:00:00Z' + - '2023-12-15T03:00:00Z' + - '2023-12-15T04:00:00Z' + - '2023-12-15T05:00:00Z' + - '2023-12-15T06:00:00Z' + - '2023-12-15T07:00:00Z' + - '2023-12-15T08:00:00Z' + - '2023-12-15T09:00:00Z' + - '2023-12-15T10:00:00Z' + - '2023-12-15T11:00:00Z' + - '2023-12-15T12:00:00Z' + - '2023-12-15T13:00:00Z' + - '2023-12-15T14:00:00Z' + - '2023-12-15T15:00:00Z' + - '2023-12-15T16:00:00Z' + - '2023-12-15T17:00:00Z' + - '2023-12-15T18:00:00Z' + - '2023-12-15T19:00:00Z' + - '2023-12-15T20:00:00Z' + - '2023-12-15T21:00:00Z' + - '2023-12-15T22:00:00Z' + - '2023-12-15T23:00:00Z' + - '2023-12-16T00:00:00Z' + - '2023-12-16T01:00:00Z' + - '2023-12-16T02:00:00Z' + - '2023-12-16T03:00:00Z' + - '2023-12-16T04:00:00Z' + - '2023-12-16T05:00:00Z' + - '2023-12-16T06:00:00Z' + - '2023-12-16T07:00:00Z' + - '2023-12-16T08:00:00Z' + - '2023-12-16T09:00:00Z' + - '2023-12-16T10:00:00Z' + - '2023-12-16T11:00:00Z' + - '2023-12-16T12:00:00Z' + - '2023-12-16T13:00:00Z' + - '2023-12-16T14:00:00Z' + - '2023-12-16T15:00:00Z' + - '2023-12-16T16:00:00Z' + - '2023-12-16T17:00:00Z' + - '2023-12-16T18:00:00Z' + - '2023-12-16T19:00:00Z' + - '2023-12-16T20:00:00Z' + - '2023-12-16T21:00:00Z' + - '2023-12-16T22:00:00Z' + - '2023-12-16T23:00:00Z' + - '2023-12-17T00:00:00Z' + - '2023-12-17T01:00:00Z' + - '2023-12-17T02:00:00Z' + - '2023-12-17T03:00:00Z' + - '2023-12-17T04:00:00Z' + - '2023-12-17T05:00:00Z' + - '2023-12-17T06:00:00Z' + - '2023-12-17T07:00:00Z' + - '2023-12-17T08:00:00Z' + - '2023-12-17T09:00:00Z' + - '2023-12-17T10:00:00Z' + - '2023-12-17T11:00:00Z' + - '2023-12-17T12:00:00Z' + - '2023-12-17T13:00:00Z' + - '2023-12-17T14:00:00Z' + - '2023-12-17T15:00:00Z' + - '2023-12-17T16:00:00Z' + - '2023-12-17T17:00:00Z' + - '2023-12-17T18:00:00Z' + - '2023-12-17T19:00:00Z' + - '2023-12-17T20:00:00Z' + - '2023-12-17T21:00:00Z' + - '2023-12-17T22:00:00Z' + - '2023-12-17T23:00:00Z' + - '2023-12-18T00:00:00Z' + - '2023-12-18T01:00:00Z' + - '2023-12-18T02:00:00Z' + - '2023-12-18T03:00:00Z' + - '2023-12-18T04:00:00Z' + - '2023-12-18T05:00:00Z' + - '2023-12-18T06:00:00Z' + - '2023-12-18T07:00:00Z' + - '2023-12-18T08:00:00Z' + - '2023-12-18T09:00:00Z' + - '2023-12-18T10:00:00Z' + - '2023-12-18T11:00:00Z' + - '2023-12-18T12:00:00Z' + - '2023-12-18T13:00:00Z' + - '2023-12-18T14:00:00Z' + - '2023-12-18T15:00:00Z' + - '2023-12-18T16:00:00Z' + - '2023-12-18T17:00:00Z' + - '2023-12-18T18:00:00Z' + - '2023-12-18T19:00:00Z' + - '2023-12-18T20:00:00Z' + - '2023-12-18T21:00:00Z' + - '2023-12-18T22:00:00Z' + - '2023-12-18T23:00:00Z' + - '2023-12-19T00:00:00Z' + - '2023-12-19T01:00:00Z' + - '2023-12-19T02:00:00Z' + - '2023-12-19T03:00:00Z' + - '2023-12-19T04:00:00Z' + - '2023-12-19T05:00:00Z' + - '2023-12-19T06:00:00Z' + - '2023-12-19T07:00:00Z' + - '2023-12-19T08:00:00Z' + - '2023-12-19T09:00:00Z' + - '2023-12-19T10:00:00Z' + - '2023-12-19T11:00:00Z' + - '2023-12-19T12:00:00Z' + - '2023-12-19T13:00:00Z' + - '2023-12-19T14:00:00Z' + - '2023-12-19T15:00:00Z' + - '2023-12-19T16:00:00Z' + - '2023-12-19T17:00:00Z' + - '2023-12-19T18:00:00Z' + - '2023-12-19T19:00:00Z' + - '2023-12-19T20:00:00Z' + - '2023-12-19T21:00:00Z' + - '2023-12-19T22:00:00Z' + - '2023-12-19T23:00:00Z' + - '2023-12-20T00:00:00Z' + - '2023-12-20T01:00:00Z' + - '2023-12-20T02:00:00Z' + - '2023-12-20T03:00:00Z' + - '2023-12-20T04:00:00Z' + - '2023-12-20T05:00:00Z' + - '2023-12-20T06:00:00Z' + - '2023-12-20T07:00:00Z' + - '2023-12-20T08:00:00Z' + - '2023-12-20T09:00:00Z' + - '2023-12-20T10:00:00Z' + - '2023-12-20T11:00:00Z' + - '2023-12-20T12:00:00Z' + - '2023-12-20T13:00:00Z' + - '2023-12-20T14:00:00Z' + - '2023-12-20T15:00:00Z' + - '2023-12-20T16:00:00Z' + - '2023-12-20T17:00:00Z' + - '2023-12-20T18:00:00Z' + - '2023-12-20T19:00:00Z' + - '2023-12-20T20:00:00Z' + - '2023-12-20T21:00:00Z' + - '2023-12-20T22:00:00Z' + - '2023-12-20T23:00:00Z' + - '2023-12-21T00:00:00Z' + - '2023-12-21T01:00:00Z' + - '2023-12-21T02:00:00Z' + - '2023-12-21T03:00:00Z' + - '2023-12-21T04:00:00Z' + - '2023-12-21T05:00:00Z' + - '2023-12-21T06:00:00Z' + - '2023-12-21T07:00:00Z' + - '2023-12-21T08:00:00Z' + - '2023-12-21T09:00:00Z' + - '2023-12-21T10:00:00Z' + - '2023-12-21T11:00:00Z' + - '2023-12-21T12:00:00Z' + - '2023-12-21T13:00:00Z' + - '2023-12-21T14:00:00Z' + - '2023-12-21T15:00:00Z' + - '2023-12-21T16:00:00Z' + - '2023-12-21T17:00:00Z' + - '2023-12-21T18:00:00Z' + - '2023-12-21T19:00:00Z' + - '2023-12-21T20:00:00Z' + - '2023-12-21T21:00:00Z' + - '2023-12-21T22:00:00Z' + - '2023-12-21T23:00:00Z' + - '2023-12-22T00:00:00Z' + - '2023-12-22T01:00:00Z' + - '2023-12-22T02:00:00Z' + - '2023-12-22T03:00:00Z' + - '2023-12-22T04:00:00Z' + - '2023-12-22T05:00:00Z' + - '2023-12-22T06:00:00Z' + - '2023-12-22T07:00:00Z' + - '2023-12-22T08:00:00Z' + - '2023-12-22T09:00:00Z' + - '2023-12-22T10:00:00Z' + - '2023-12-22T11:00:00Z' + - '2023-12-22T12:00:00Z' + - '2023-12-22T13:00:00Z' + - '2023-12-22T14:00:00Z' + - '2023-12-22T15:00:00Z' + - '2023-12-22T16:00:00Z' + - '2023-12-22T17:00:00Z' + - '2023-12-22T18:00:00Z' + - '2023-12-22T19:00:00Z' + - '2023-12-22T20:00:00Z' + - '2023-12-22T21:00:00Z' + - '2023-12-22T22:00:00Z' + - '2023-12-22T23:00:00Z' + - '2023-12-23T00:00:00Z' + - '2023-12-23T01:00:00Z' + - '2023-12-23T02:00:00Z' + - '2023-12-23T03:00:00Z' + - '2023-12-23T04:00:00Z' + - '2023-12-23T05:00:00Z' + - '2023-12-23T06:00:00Z' + - '2023-12-23T07:00:00Z' + - '2023-12-23T08:00:00Z' + - '2023-12-23T09:00:00Z' + - '2023-12-23T10:00:00Z' + - '2023-12-23T11:00:00Z' + - '2023-12-23T12:00:00Z' + - '2023-12-23T13:00:00Z' + - '2023-12-23T14:00:00Z' + - '2023-12-23T15:00:00Z' + - '2023-12-23T16:00:00Z' + - '2023-12-23T17:00:00Z' + - '2023-12-23T18:00:00Z' + - '2023-12-23T19:00:00Z' + - '2023-12-23T20:00:00Z' + - '2023-12-23T21:00:00Z' + - '2023-12-23T22:00:00Z' + - '2023-12-23T23:00:00Z' + - '2023-12-24T00:00:00Z' + - '2023-12-24T01:00:00Z' + - '2023-12-24T02:00:00Z' + - '2023-12-24T03:00:00Z' + - '2023-12-24T04:00:00Z' + - '2023-12-24T05:00:00Z' + - '2023-12-24T06:00:00Z' + - '2023-12-24T07:00:00Z' + - '2023-12-24T08:00:00Z' + - '2023-12-24T09:00:00Z' + - '2023-12-24T10:00:00Z' + - '2023-12-24T11:00:00Z' + - '2023-12-24T12:00:00Z' + - '2023-12-24T13:00:00Z' + - '2023-12-24T14:00:00Z' + - '2023-12-24T15:00:00Z' + - '2023-12-24T16:00:00Z' + - '2023-12-24T17:00:00Z' + - '2023-12-24T18:00:00Z' + - '2023-12-24T19:00:00Z' + - '2023-12-24T20:00:00Z' + - '2023-12-24T21:00:00Z' + - '2023-12-24T22:00:00Z' + - '2023-12-24T23:00:00Z' + - '2023-12-25T00:00:00Z' + - '2023-12-25T01:00:00Z' + - '2023-12-25T02:00:00Z' + - '2023-12-25T03:00:00Z' + - '2023-12-25T04:00:00Z' + - '2023-12-25T05:00:00Z' + - '2023-12-25T06:00:00Z' + - '2023-12-25T07:00:00Z' + - '2023-12-25T08:00:00Z' + - '2023-12-25T09:00:00Z' + - '2023-12-25T10:00:00Z' + - '2023-12-25T11:00:00Z' + - '2023-12-25T12:00:00Z' + - '2023-12-25T13:00:00Z' + - '2023-12-25T14:00:00Z' + - '2023-12-25T15:00:00Z' + - '2023-12-25T16:00:00Z' + - '2023-12-25T17:00:00Z' + - '2023-12-25T18:00:00Z' + - '2023-12-25T19:00:00Z' + - '2023-12-25T20:00:00Z' + - '2023-12-25T21:00:00Z' + - '2023-12-25T22:00:00Z' + - '2023-12-25T23:00:00Z' + - '2023-12-26T00:00:00Z' + - '2023-12-26T01:00:00Z' + - '2023-12-26T02:00:00Z' + - '2023-12-26T03:00:00Z' + - '2023-12-26T04:00:00Z' + - '2023-12-26T05:00:00Z' + - '2023-12-26T06:00:00Z' + - '2023-12-26T07:00:00Z' + - '2023-12-26T08:00:00Z' + - '2023-12-26T09:00:00Z' + - '2023-12-26T10:00:00Z' + - '2023-12-26T11:00:00Z' + - '2023-12-26T12:00:00Z' + - '2023-12-26T13:00:00Z' + - '2023-12-26T14:00:00Z' + - '2023-12-26T15:00:00Z' + - '2023-12-26T16:00:00Z' + - '2023-12-26T17:00:00Z' + - '2023-12-26T18:00:00Z' + - '2023-12-26T19:00:00Z' + - '2023-12-26T20:00:00Z' + - '2023-12-26T21:00:00Z' + - '2023-12-26T22:00:00Z' + - '2023-12-26T23:00:00Z' + - '2023-12-27T00:00:00Z' + - '2023-12-27T01:00:00Z' + - '2023-12-27T02:00:00Z' + - '2023-12-27T03:00:00Z' + - '2023-12-27T04:00:00Z' + - '2023-12-27T05:00:00Z' + - '2023-12-27T06:00:00Z' + - '2023-12-27T07:00:00Z' + - '2023-12-27T08:00:00Z' + - '2023-12-27T09:00:00Z' + - '2023-12-27T10:00:00Z' + - '2023-12-27T11:00:00Z' + - '2023-12-27T12:00:00Z' + - '2023-12-27T13:00:00Z' + - '2023-12-27T14:00:00Z' + - '2023-12-27T15:00:00Z' + - '2023-12-27T16:00:00Z' + - '2023-12-27T17:00:00Z' + - '2023-12-27T18:00:00Z' + - '2023-12-27T19:00:00Z' + - '2023-12-27T20:00:00Z' + - '2023-12-27T21:00:00Z' + - '2023-12-27T22:00:00Z' + - '2023-12-27T23:00:00Z' + - '2023-12-28T00:00:00Z' + - '2023-12-28T01:00:00Z' + - '2023-12-28T02:00:00Z' + - '2023-12-28T03:00:00Z' + - '2023-12-28T04:00:00Z' + - '2023-12-28T05:00:00Z' + - '2023-12-28T06:00:00Z' + - '2023-12-28T07:00:00Z' + - '2023-12-28T08:00:00Z' + - '2023-12-28T09:00:00Z' + - '2023-12-28T10:00:00Z' + - '2023-12-28T11:00:00Z' + - '2023-12-28T12:00:00Z' + - '2023-12-28T13:00:00Z' + - '2023-12-28T14:00:00Z' + - '2023-12-28T15:00:00Z' + - '2023-12-28T16:00:00Z' + - '2023-12-28T17:00:00Z' + - '2023-12-28T18:00:00Z' + - '2023-12-28T19:00:00Z' + - '2023-12-28T20:00:00Z' + - '2023-12-28T21:00:00Z' + - '2023-12-28T22:00:00Z' + - '2023-12-28T23:00:00Z' + - '2023-12-29T00:00:00Z' + - '2023-12-29T01:00:00Z' + - '2023-12-29T02:00:00Z' + - '2023-12-29T03:00:00Z' + - '2023-12-29T04:00:00Z' + - '2023-12-29T05:00:00Z' + - '2023-12-29T06:00:00Z' + - '2023-12-29T07:00:00Z' + - '2023-12-29T08:00:00Z' + - '2023-12-29T09:00:00Z' + - '2023-12-29T10:00:00Z' + - '2023-12-29T11:00:00Z' + - '2023-12-29T12:00:00Z' + - '2023-12-29T13:00:00Z' + - '2023-12-29T14:00:00Z' + - '2023-12-29T15:00:00Z' + - '2023-12-29T16:00:00Z' + - '2023-12-29T17:00:00Z' + - '2023-12-29T18:00:00Z' + - '2023-12-29T19:00:00Z' + - '2023-12-29T20:00:00Z' + - '2023-12-29T21:00:00Z' + - '2023-12-29T22:00:00Z' + - '2023-12-29T23:00:00Z' + - '2023-12-30T00:00:00Z' + - '2023-12-30T01:00:00Z' + - '2023-12-30T02:00:00Z' + - '2023-12-30T03:00:00Z' + - '2023-12-30T04:00:00Z' + - '2023-12-30T05:00:00Z' + - '2023-12-30T06:00:00Z' + - '2023-12-30T07:00:00Z' + - '2023-12-30T08:00:00Z' + - '2023-12-30T09:00:00Z' + - '2023-12-30T10:00:00Z' + - '2023-12-30T11:00:00Z' + - '2023-12-30T12:00:00Z' + - '2023-12-30T13:00:00Z' + - '2023-12-30T14:00:00Z' + - '2023-12-30T15:00:00Z' + - '2023-12-30T16:00:00Z' + - '2023-12-30T17:00:00Z' + - '2023-12-30T18:00:00Z' + - '2023-12-30T19:00:00Z' + - '2023-12-30T20:00:00Z' + - '2023-12-30T21:00:00Z' + - '2023-12-30T22:00:00Z' + - '2023-12-30T23:00:00Z' + - '2023-12-31T00:00:00Z' + - '2023-12-31T01:00:00Z' + - '2023-12-31T02:00:00Z' + - '2023-12-31T03:00:00Z' + - '2023-12-31T04:00:00Z' + - '2023-12-31T05:00:00Z' + - '2023-12-31T06:00:00Z' + - '2023-12-31T07:00:00Z' + - '2023-12-31T08:00:00Z' + - '2023-12-31T09:00:00Z' + - '2023-12-31T10:00:00Z' + - '2023-12-31T11:00:00Z' + - '2023-12-31T12:00:00Z' + - '2023-12-31T13:00:00Z' + - '2023-12-31T14:00:00Z' + - '2023-12-31T15:00:00Z' + - '2023-12-31T16:00:00Z' + - '2023-12-31T17:00:00Z' + - '2023-12-31T18:00:00Z' + - '2023-12-31T19:00:00Z' + - '2023-12-31T20:00:00Z' + - '2023-12-31T21:00:00Z' + - '2023-12-31T22:00:00Z' + - '2023-12-31T23:00:00Z' turbulence_intensity: data: - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 - - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 + - 0.1 wind_direction: - - 54 - - 42 - - 71 - - 67 - - 66 - - 65 - - 69 - - 76 - - 84 - - 100 - - 165 - - 234 - - 235 - - 239 - - 244 - - 238 - - 236 - - 237 - - 236 - - 237 - - 235 - - 236 - - 232 - - 227 - - 217 - - 206 - - 201 - - 196 - - 189 - - 183 - - 185 - - 196 - - 223 - - 235 - - 240 - - 235 - - 242 - - 239 - - 233 - - 235 - - 242 - - 234 - - 222 - - 250 - - 264 - - 265 - - 277 - - 277 - - 275 - - 274 - - 277 - - 282 - - 281 - - 282 - - 278 - - 275 - - 271 - - 267 - - 263 - - 258 - - 250 - - 243 - - 233 - - 226 - - 214 - - 198 - - 177 - - 170 - - 167 - - 166 - - 163 - - 166 - - 168 - - 169 - - 163 - - 165 - - 169 - - 166 - - 168 - - 177 - - 188 - - 206 - - 227 - - 243 - - 244 - - 245 - - 242 - - 242 - - 238 - - 241 - - 247 - - 252 - - 255 - - 260 - - 259 - - 266 - - 274 - - 283 - - 291 - - 347 - - 2 - - 10 - - 356 - - 349 - - 340 - - 339 - - 335 - - 340 - - 346 - - 329 - - 347 - - 351 - - 351 - - 22 - - 115 - - 137 - - 142 - - 141 - - 134 - - 139 - - 141 - - 138 - - 138 - - 137 - - 140 - - 144 - - 152 - - 157 - - 167 - - 190 - - 218 - - 268 - - 252 - - 254 - - 252 - - 247 - - 246 - - 243 - - 241 - - 241 - - 240 - - 241 - - 240 - - 238 - - 237 - - 228 - - 222 - - 202 - - 191 - - 194 - - 188 - - 175 - - 167 - - 172 - - 185 - - 197 - - 209 - - 206 - - 201 - - 192 - - 181 - - 174 - - 175 - - 175 - - 175 - - 174 - - 173 - - 173 - - 174 - - 178 - - 178 - - 180 - - 176 - - 187 - - 203 - - 208 - - 210 - - 205 - - 193 - - 185 - - 192 - - 190 - - 198 - - 201 - - 192 - - 183 - - 179 - - 184 - - 179 - - 177 - - 174 - - 171 - - 169 - - 168 - - 160 - - 159 - - 153 - - 155 - - 159 - - 162 - - 163 - - 162 - - 187 - - 206 - - 202 - - 202 - - 209 - - 213 - - 219 - - 214 - - 212 - - 212 - - 214 - - 218 - - 230 - - 239 - - 242 - - 245 - - 245 - - 263 - - 265 - - 265 - - 250 - - 242 - - 238 - - 234 - - 230 - - 222 - - 214 - - 217 - - 213 - - 216 - - 210 - - 203 - - 196 - - 188 - - 183 - - 180 - - 177 - - 172 - - 170 - - 170 - - 175 - - 186 - - 198 - - 217 - - 241 - - 249 - - 245 - - 243 - - 239 - - 241 - - 238 - - 236 - - 235 - - 234 - - 230 - - 229 - - 226 - - 226 - - 227 - - 224 - - 219 - - 214 - - 206 - - 198 - - 209 - - 217 - - 238 - - 247 - - 240 - - 229 - - 219 - - 204 - - 186 - - 182 - - 175 - - 131 - - 258 - - 247 - - 226 - - 213 - - 206 - - 194 - - 196 - - 187 - - 174 - - 177 - - 200 - - 236 - - 241 - - 228 - - 226 - - 228 - - 222 - - 211 - - 210 - - 208 - - 207 - - 206 - - 206 - - 215 - - 219 - - 233 - - 250 - - 253 - - 246 - - 244 - - 265 - - 281 - - 292 - - 295 - - 291 - - 283 - - 279 - - 276 - - 271 - - 271 - - 265 - - 259 - - 257 - - 243 - - 238 - - 228 - - 207 - - 190 - - 176 - - 163 - - 157 - - 150 - - 144 - - 153 - - 171 - - 235 - - 246 - - 240 - - 240 - - 240 - - 235 - - 232 - - 229 - - 227 - - 228 - - 230 - - 230 - - 222 - - 221 - - 220 - - 214 - - 208 - - 210 - - 244 - - 249 - - 262 - - 275 - - 278 - - 277 - - 273 - - 278 - - 275 - - 272 - - 269 - - 260 - - 256 - - 250 - - 248 - - 241 - - 245 - - 240 - - 189 - - 170 - - 174 - - 175 - - 167 - - 162 - - 150 - - 151 - - 146 - - 137 - - 134 - - 128 - - 122 - - 113 - - 133 - - 146 - - 149 - - 142 - - 143 - - 140 - - 139 - - 136 - - 132 - - 133 - - 142 - - 150 - - 169 - - 190 - - 273 - - 289 - - 284 - - 284 - - 270 - - 252 - - 245 - - 239 - - 239 - - 236 - - 229 - - 231 - - 225 - - 229 - - 255 - - 235 - - 254 - - 252 - - 242 - - 240 - - 239 - - 227 - - 205 - - 198 - - 194 - - 195 - - 176 - - 171 - - 171 - - 168 - - 162 - - 159 - - 154 - - 150 - - 146 - - 140 - - 129 - - 121 - - 99 - - 97 - - 83 - - 64 - - 56 - - 46 - - 27 - - 14 - - 357 - - 348 - - 351 - - 356 - - 322 - - 329 - - 350 - - 39 - - 90 - - 188 - - 203 - - 219 - - 236 - - 255 - - 270 - - 252 - - 250 - - 249 - - 242 - - 216 - - 104 - - 98 - - 84 - - 59 - - 45 - - 44 - - 46 - - 58 - - 34 - - 17 - - 13 - - 18 - - 15 - - 15 - - 19 - - 28 - - 27 - - 11 - - 11 - - 22 - - 33 - - 37 - - 40 - - 50 - - 56 - - 66 - - 72 - - 73 - - 75 - - 61 - - 60 - - 80 - - 87 - - 83 - - 61 - - 64 - - 78 - - 82 - - 82 - - 76 - - 48 - - 46 - - 58 - - 63 - - 57 - - 58 - - 64 - - 62 - - 60 - - 70 - - 75 - - 75 - - 77 - - 86 - - 94 - - 113 - - 118 - - 117 - - 111 - - 108 - - 113 - - 114 - - 101 - - 103 - - 107 - - 111 - - 125 - - 131 - - 150 - - 129 - - 118 - - 109 - - 97 - - 115 - - 117 - - 124 - - 126 - - 141 - - 149 - - 149 - - 158 - - 153 - - 161 - - 177 - - 199 - - 209 - - 207 - - 213 - - 207 - - 199 - - 196 - - 196 - - 197 - - 199 - - 202 - - 209 - - 213 - - 212 - - 213 - - 217 - - 219 - - 220 - - 229 - - 224 - - 224 - - 226 - - 223 - - 223 - - 228 - - 233 - - 232 - - 231 - - 231 - - 230 - - 226 - - 224 - - 224 - - 226 - - 228 - - 227 - - 226 - - 225 - - 224 - - 225 - - 223 - - 223 - - 222 - - 213 - - 221 - - 222 - - 219 - - 218 - - 217 - - 220 - - 228 - - 256 - - 332 - - 320 - - 315 - - 316 - - 317 - - 317 - - 315 - - 315 - - 313 - - 321 - - 332 - - 344 - - 350 - - 3 - - 2 - - 17 - - 20 - - 25 - - 26 - - 33 - - 39 - - 42 - - 43 - - 39 - - 38 - - 38 - - 35 - - 40 - - 41 - - 42 - - 44 - - 46 - - 50 - - 52 - - 54 - - 68 - - 77 - - 63 - - 43 - - 37 - - 35 - - 54 - - 120 - - 176 - - 208 - - 218 - - 228 - - 230 - - 236 - - 234 - - 227 - - 226 - - 224 - - 217 - - 211 - - 220 - - 242 - - 252 - - 254 - - 253 - - 254 - - 259 - - 267 - - 270 - - 295 - - 296 - - 291 - - 293 - - 297 - - 288 - - 280 - - 282 - - 281 - - 278 - - 277 - - 272 - - 269 - - 269 - - 268 - - 266 - - 264 - - 249 - - 246 - - 246 - - 253 - - 256 - - 255 - - 250 - - 249 - - 245 - - 246 - - 242 - - 236 - - 239 - - 241 - - 243 - - 248 - - 255 - - 305 - - 282 - - 286 - - 287 - - 284 - - 288 - - 282 - - 281 - - 283 - - 290 - - 295 - - 298 - - 301 - - 306 - - 321 - - 317 - - 312 - - 316 - - 313 - - 311 - - 309 - - 312 - - 309 - - 311 - - 310 - - 306 - - 301 - - 294 - - 291 - - 280 - - 259 - - 238 - - 237 - - 238 - - 256 - - 270 - - 270 - - 268 - - 278 - - 285 - - 286 - - 289 - - 292 - - 287 - - 284 - - 288 - - 290 - - 288 - - 286 - - 283 - - 280 - - 273 - - 274 - - 279 - - 283 - - 286 - - 281 - - 275 - - 270 - - 275 - - 275 - - 278 - - 279 - - 281 - - 279 - - 278 - - 286 - - 309 - - 328 - - 335 - - 336 - - 335 - - 327 - - 319 - - 317 - - 318 - - 326 - - 338 - - 349 - - 352 - - 340 - - 339 - - 325 - - 323 - - 238 - - 195 - - 208 - - 229 - - 228 - - 214 - - 199 - - 188 - - 187 - - 190 - - 180 - - 171 - - 177 - - 252 - - 259 - - 257 - - 266 - - 271 - - 286 - - 295 - - 297 - - 301 - - 301 - - 302 - - 301 - - 302 - - 308 - - 317 - - 350 - - 359 - - 352 - - 354 - - 9 - - 12 - - 7 - - 14 - - 21 - - 49 - - 52 - - 47 - - 58 - - 69 - - 79 - - 89 - - 95 - - 101 - - 107 - - 118 - - 126 - - 129 - - 145 - - 145 - - 150 - - 152 - - 148 - - 152 - - 158 - - 168 - - 170 - - 169 - - 173 - - 174 - - 177 - - 181 - - 178 - - 180 - - 183 - - 196 - - 209 - - 257 - - 324 - - 337 - - 335 - - 345 - - 344 - - 344 - - 342 - - 345 - - 345 - - 335 - - 335 - - 334 - - 327 - - 322 - - 314 - - 323 - - 329 - - 318 - - 321 - - 316 - - 312 - - 305 - - 304 - - 312 - - 305 - - 299 - - 157 - - 153 - - 171 - - 180 - - 181 - - 179 - - 181 - - 194 - - 202 - - 199 - - 201 - - 205 - - 201 - - 196 - - 204 - - 210 - - 212 - - 208 - - 204 - - 204 - - 213 - - 221 - - 227 - - 237 - - 242 - - 233 - - 232 - - 229 - - 224 - - 220 - - 217 - - 218 - - 215 - - 214 - - 216 - - 221 - - 221 - - 214 - - 207 - - 206 - - 206 - - 205 - - 203 - - 201 - - 197 - - 196 - - 202 - - 208 - - 213 - - 210 - - 202 - - 198 - - 191 - - 188 - - 196 - - 196 - - 198 - - 201 - - 203 - - 203 - - 206 - - 206 - - 205 - - 210 - - 215 - - 219 - - 225 - - 233 - - 238 - - 242 - - 244 - - 256 - - 262 - - 266 - - 261 - - 261 - - 260 - - 257 - - 257 - - 261 - - 268 - - 276 - - 288 - - 286 - - 287 - - 288 - - 287 - - 286 - - 285 - - 294 - - 305 - - 302 - - 286 - - 251 - - 238 - - 240 - - 241 - - 233 - - 232 - - 236 - - 234 - - 238 - - 239 - - 248 - - 254 - - 259 - - 268 - - 270 - - 272 - - 274 - - 271 - - 274 - - 279 - - 280 - - 291 - - 289 - - 296 - - 303 - - 304 - - 306 - - 305 - - 304 - - 303 - - 290 - - 296 - - 302 - - 297 - - 298 - - 299 - - 298 - - 302 - - 303 - - 296 - - 295 - - 291 - - 285 - - 286 - - 280 - - 280 - - 277 - - 268 - - 264 - - 262 - - 258 - - 269 - - 263 - - 266 - - 266 - - 264 - - 263 - - 265 - - 275 - - 278 - - 280 - - 276 - - 274 - - 272 - - 268 - - 264 - - 264 - - 269 - - 274 - - 277 - - 279 - - 276 - - 282 - - 284 - - 276 - - 274 - - 278 - - 273 - - 268 - - 262 - - 257 - - 259 - - 262 - - 263 - - 262 - - 261 - - 257 - - 250 - - 215 - - 213 - - 205 - - 194 - - 199 - - 191 - - 196 - - 202 - - 194 - - 187 - - 189 - - 191 - - 215 - - 230 - - 213 - - 133 - - 136 - - 145 - - 152 - - 159 - - 165 - - 169 - - 172 - - 174 - - 164 - - 167 - - 171 - - 176 - - 182 - - 184 - - 187 - - 190 - - 188 - - 186 - - 193 - - 198 - - 184 - - 187 - - 193 - - 188 - - 189 - - 187 - - 189 - - 194 - - 190 - - 202 - - 207 - - 214 - - 216 - - 226 - - 234 - - 235 - - 243 - - 250 - - 249 - - 246 - - 243 - - 238 - - 239 - - 237 - - 228 - - 223 - - 229 - - 218 - - 219 - - 218 - - 221 - - 220 - - 217 - - 209 - - 196 - - 193 - - 201 - - 211 - - 224 - - 228 - - 228 - - 227 - - 224 - - 220 - - 226 - - 246 - - 253 - - 253 - - 261 - - 258 - - 261 - - 267 - - 273 - - 280 - - 282 - - 285 - - 287 - - 290 - - 289 - - 289 - - 291 - - 290 - - 286 - - 286 - - 285 - - 285 - - 283 - - 281 - - 288 - - 300 - - 303 - - 306 - - 314 - - 314 - - 314 - - 310 - - 309 - - 306 - - 309 - - 307 - - 309 - - 310 - - 311 - - 311 - - 320 - - 323 - - 329 - - 332 - - 329 - - 329 - - 328 - - 321 - - 309 - - 296 - - 296 - - 293 - - 283 - - 277 - - 269 - - 261 - - 262 - - 258 - - 251 - - 244 - - 243 - - 234 - - 238 - - 237 - - 246 - - 244 - - 247 - - 251 - - 250 - - 254 - - 260 - - 264 - - 266 - - 270 - - 277 - - 284 - - 288 - - 282 - - 284 - - 288 - - 289 - - 291 - - 288 - - 280 - - 281 - - 284 - - 286 - - 287 - - 290 - - 291 - - 292 - - 294 - - 294 - - 292 - - 293 - - 294 - - 298 - - 299 - - 307 - - 308 - - 303 - - 304 - - 302 - - 301 - - 293 - - 292 - - 281 - - 297 - - 294 - - 227 - - 202 - - 195 - - 174 - - 169 - - 159 - - 154 - - 159 - - 158 - - 163 - - 162 - - 156 - - 168 - - 175 - - 167 - - 149 - - 129 - - 128 - - 133 - - 140 - - 143 - - 152 - - 150 - - 150 - - 150 - - 156 - - 162 - - 154 - - 166 - - 187 - - 207 - - 229 - - 271 - - 297 - - 305 - - 306 - - 310 - - 316 - - 318 - - 315 - - 317 - - 314 - - 313 - - 313 - - 312 - - 310 - - 307 - - 297 - - 285 - - 271 - - 264 - - 250 - - 249 - - 243 - - 243 - - 242 - - 303 - - 306 - - 300 - - 299 - - 302 - - 311 - - 326 - - 335 - - 340 - - 345 - - 349 - - 355 - - 1 - - 2 - - 357 - - 4 - - 8 - - 11 - - 13 - - 11 - - 7 - - 12 - - 12 - - 13 - - 14 - - 11 - - 12 - - 11 - - 12 - - 15 - - 13 - - 13 - - 14 - - 14 - - 12 - - 10 - - 13 - - 20 - - 21 - - 19 - - 16 - - 19 - - 6 - - 15 - - 13 - - 14 - - 16 - - 12 - - 8 - - 6 - - 1 - - 360 - - 356 - - 1 - - 5 - - 17 - - 16 - - 15 - - 13 - - 7 - - 2 - - 355 - - 353 - - 352 - - 351 - - 349 - - 347 - - 348 - - 344 - - 333 - - 325 - - 317 - - 317 - - 313 - - 314 - - 310 - - 301 - - 296 - - 303 - - 320 - - 321 - - 335 - - 344 - - 344 - - 343 - - 351 - - 6 - - 22 - - 21 - - 16 - - 22 - - 30 - - 31 - - 29 - - 16 - - 2 - - 336 - - 315 - - 311 - - 299 - - 274 - - 247 - - 242 - - 253 - - 261 - - 270 - - 278 - - 278 - - 253 - - 246 - - 257 - - 254 - - 243 - - 242 - - 239 - - 226 - - 215 - - 216 - - 200 - - 166 - - 79 - - 47 - - 47 - - 45 - - 35 - - 9 - - 11 - - 11 - - 18 - - 11 - - 360 - - 2 - - 10 - - 20 - - 27 - - 39 - - 48 - - 49 - - 48 - - 55 - - 54 - - 51 - - 49 - - 37 - - 33 - - 26 - - 17 - - 4 - - 345 - - 322 - - 314 - - 311 - - 310 - - 316 - - 322 - - 327 - - 333 - - 331 - - 312 - - 307 - - 301 - - 297 - - 293 - - 290 - - 280 - - 277 - - 276 - - 279 - - 292 - - 309 - - 308 - - 289 - - 281 - - 287 - - 286 - - 286 - - 295 - - 301 - - 312 - - 316 - - 316 - - 317 - - 314 - - 312 - - 311 - - 312 - - 311 - - 313 - - 315 - - 318 - - 322 - - 325 - - 327 - - 330 - - 334 - - 339 - - 347 - - 352 - - 342 - - 340 - - 330 - - 321 - - 319 - - 325 - - 322 - - 321 - - 321 - - 324 - - 327 - - 327 - - 327 - - 329 - - 331 - - 335 - - 332 - - 327 - - 328 - - 333 - - 332 - - 329 - - 324 - - 320 - - 322 - - 317 - - 310 - - 315 - - 312 - - 307 - - 303 - - 309 - - 307 - - 299 - - 303 - - 303 - - 308 - - 316 - - 320 - - 313 - - 311 - - 314 - - 313 - - 315 - - 319 - - 323 - - 320 - - 316 - - 308 - - 296 - - 279 - - 252 - - 202 - - 167 - - 150 - - 154 - - 154 - - 158 - - 167 - - 165 - - 179 - - 192 - - 204 - - 202 - - 201 - - 256 - - 268 - - 278 - - 292 - - 308 - - 317 - - 325 - - 331 - - 329 - - 326 - - 325 - - 328 - - 328 - - 325 - - 323 - - 319 - - 306 - - 301 - - 302 - - 288 - - 290 - - 277 - - 273 - - 274 - - 278 - - 289 - - 292 - - 301 - - 56 - - 113 - - 166 - - 233 - - 225 - - 225 - - 233 - - 243 - - 251 - - 252 - - 258 - - 257 - - 250 - - 234 - - 210 - - 197 - - 208 - - 204 - - 206 - - 211 - - 209 - - 211 - - 207 - - 206 - - 208 - - 210 - - 230 - - 241 - - 243 - - 240 - - 244 - - 246 - - 253 - - 258 - - 243 - - 236 - - 234 - - 239 - - 253 - - 253 - - 230 - - 261 - - 343 - - 21 - - 28 - - 27 - - 31 - - 36 - - 27 - - 24 - - 23 - - 36 - - 38 - - 43 - - 48 - - 39 - - 25 - - 14 - - 14 - - 10 - - 4 - - 4 - - 3 - - 358 - - 352 - - 345 - - 341 - - 335 - - 330 - - 305 - - 293 - - 290 - - 270 - - 271 - - 271 - - 278 - - 297 - - 311 - - 306 - - 302 - - 300 - - 305 - - 305 - - 305 - - 308 - - 309 - - 310 - - 308 - - 310 - - 315 - - 316 - - 314 - - 316 - - 327 - - 291 - - 166 - - 162 - - 158 - - 167 - - 174 - - 166 - - 165 - - 154 - - 163 - - 157 - - 156 - - 155 - - 164 - - 197 - - 240 - - 236 - - 236 - - 226 - - 215 - - 205 - - 205 - - 207 - - 202 - - 194 - - 184 - - 196 - - 222 - - 227 - - 231 - - 227 - - 225 - - 224 - - 223 - - 228 - - 227 - - 230 - - 233 - - 234 - - 232 - - 230 - - 228 - - 239 - - 251 - - 323 - - 325 - - 327 - - 323 - - 319 - - 313 - - 309 - - 307 - - 305 - - 300 - - 292 - - 294 - - 295 - - 292 - - 301 - - 310 - - 314 - - 313 - - 311 - - 306 - - 304 - - 296 - - 290 - - 289 - - 286 - - 279 - - 277 - - 281 - - 276 - - 279 - - 276 - - 276 - - 280 - - 273 - - 268 - - 253 - - 267 - - 267 - - 262 - - 284 - - 297 - - 304 - - 304 - - 300 - - 299 - - 276 - - 353 - - 159 - - 172 - - 175 - - 155 - - 154 - - 153 - - 156 - - 154 - - 148 - - 154 - - 157 - - 152 - - 151 - - 154 - - 157 - - 160 - - 159 - - 160 - - 159 - - 164 - - 163 - - 162 - - 163 - - 155 - - 159 - - 167 - - 160 - - 161 - - 167 - - 172 - - 178 - - 179 - - 182 - - 190 - - 194 - - 190 - - 195 - - 192 - - 193 - - 200 - - 199 - - 197 - - 200 - - 197 - - 193 - - 203 - - 195 - - 200 - - 205 - - 208 - - 220 - - 228 - - 223 - - 223 - - 224 - - 224 - - 223 - - 238 - - 235 - - 262 - - 248 - - 245 - - 241 - - 223 - - 212 - - 202 - - 188 - - 186 - - 184 - - 173 - - 161 - - 144 - - 142 - - 143 - - 145 - - 144 - - 139 - - 142 - - 151 - - 155 - - 168 - - 189 - - 213 - - 219 - - 220 - - 224 - - 229 - - 217 - - 214 - - 212 - - 212 - - 222 - - 221 - - 232 - - 241 - - 241 - - 251 - - 258 - - 258 - - 258 - - 263 - - 280 - - 288 - - 284 - - 277 - - 283 - - 287 - - 281 - - 285 - - 288 - - 291 - - 288 - - 288 - - 290 - - 289 - - 283 - - 283 - - 285 - - 259 - - 243 - - 175 - - 178 - - 178 - - 170 - - 174 - - 172 - - 168 - - 163 - - 157 - - 155 - - 153 - - 160 - - 173 - - 190 - - 197 - - 206 - - 210 - - 212 - - 209 - - 208 - - 209 - - 213 - - 207 - - 199 - - 198 - - 199 - - 199 - - 198 - - 199 - - 202 - - 206 - - 208 - - 207 - - 206 - - 208 - - 212 - - 219 - - 227 - - 235 - - 240 - - 231 - - 225 - - 218 - - 215 - - 207 - - 204 - - 203 - - 195 - - 193 - - 193 - - 183 - - 200 - - 200 - - 201 - - 209 - - 213 - - 230 - - 236 - - 244 - - 239 - - 237 - - 237 - - 225 - - 220 - - 220 - - 218 - - 214 - - 215 - - 211 - - 207 - - 205 - - 195 - - 192 - - 181 - - 170 - - 154 - - 167 - - 193 - - 220 - - 242 - - 246 - - 242 - - 243 - - 247 - - 242 - - 238 - - 238 - - 236 - - 237 - - 232 - - 229 - - 224 - - 220 - - 218 - - 216 - - 225 - - 219 - - 216 - - 218 - - 232 - - 227 - - 220 - - 218 - - 228 - - 235 - - 234 - - 234 - - 236 - - 246 - - 248 - - 252 - - 267 - - 277 - - 284 - - 292 - - 302 - - 310 - - 301 - - 293 - - 291 - - 286 - - 289 - - 295 - - 304 - - 309 - - 318 - - 328 - - 331 - - 334 - - 334 - - 334 - - 327 - - 323 - - 324 - - 329 - - 333 - - 325 - - 323 - - 325 - - 326 - - 329 - - 331 - - 354 - - 47 - - 310 - - 277 - - 285 - - 314 - - 320 - - 321 - - 320 - - 313 - - 311 - - 311 - - 309 - - 309 - - 311 - - 314 - - 324 - - 330 - - 339 - - 356 - - 355 - - 354 - - 1 - - 352 - - 331 - - 296 - - 281 - - 297 - - 339 - - 57 - - 87 - - 108 - - 131 - - 153 - - 168 - - 191 - - 235 - - 240 - - 236 - - 231 - - 223 - - 220 - - 212 - - 201 - - 189 - - 192 - - 205 - - 205 - - 200 - - 198 - - 197 - - 204 - - 215 - - 211 - - 216 - - 216 - - 214 - - 215 - - 211 - - 212 - - 223 - - 203 - - 211 - - 215 - - 208 - - 199 - - 189 - - 180 - - 158 - - 151 - - 147 - - 150 - - 143 - - 145 - - 139 - - 127 - - 120 - - 122 - - 131 - - 136 - - 142 - - 152 - - 180 - - 212 - - 216 - - 217 - - 218 - - 220 - - 223 - - 231 - - 235 - - 240 - - 229 - - 230 - - 233 - - 243 - - 249 - - 258 - - 258 - - 272 - - 290 - - 295 - - 315 - - 342 - - 7 - - 22 - - 36 - - 58 - - 72 - - 72 - - 68 - - 58 - - 53 - - 50 - - 50 - - 56 - - 61 - - 69 - - 65 - - 67 - - 64 - - 72 - - 70 - - 70 - - 68 - - 69 - - 69 - - 67 - - 65 - - 65 - - 67 - - 69 - - 68 - - 66 - - 66 - - 66 - - 66 - - 65 - - 63 - - 60 - - 57 - - 53 - - 55 - - 63 - - 71 - - 70 - - 66 - - 66 - - 67 - - 61 - - 60 - - 56 - - 54 - - 51 - - 57 - - 58 - - 57 - - 60 - - 60 - - 61 - - 63 - - 63 - - 69 - - 83 - - 82 - - 70 - - 71 - - 72 - - 75 - - 75 - - 73 - - 72 - - 71 - - 71 - - 67 - - 69 - - 75 - - 82 - - 90 - - 93 - - 93 - - 88 - - 88 - - 75 - - 68 - - 79 - - 107 - - 126 - - 325 - - 5 - - 69 - - 189 - - 216 - - 215 - - 224 - - 236 - - 250 - - 262 - - 272 - - 275 - - 286 - - 292 - - 300 - - 305 - - 313 - - 321 - - 328 - - 333 - - 335 - - 338 - - 332 - - 337 - - 339 - - 348 - - 2 - - 25 - - 43 - - 44 - - 45 - - 30 - - 360 - - 7 - - 31 - - 38 - - 28 - - 23 - - 28 - - 57 - - 74 - - 72 - - 68 - - 43 - - 331 - - 312 - - 315 - - 339 - - 357 - - 12 - - 31 - - 63 - - 113 - - 133 - - 144 - - 149 - - 147 - - 140 - - 130 - - 126 - - 138 - - 145 - - 151 - - 161 - - 165 - - 165 - - 155 - - 150 - - 144 - - 136 - - 124 - - 127 - - 116 - - 119 - - 120 - - 120 - - 121 - - 117 - - 118 - - 117 - - 116 - - 115 - - 112 - - 109 - - 102 - - 102 - - 101 - - 97 - - 88 - - 77 - - 75 - - 75 - - 73 - - 70 - - 72 - - 76 - - 73 - - 69 - - 69 - - 70 - - 71 - - 70 - - 67 - - 69 - - 61 - - 59 - - 64 - - 71 - - 76 - - 78 - - 81 - - 85 - - 87 - - 80 - - 80 - - 83 - - 90 - - 93 - - 89 - - 91 - - 94 - - 98 - - 105 - - 112 - - 122 - - 135 - - 140 - - 149 - - 158 - - 149 - - 139 - - 141 - - 146 - - 159 - - 158 - - 147 - - 130 - - 124 - - 132 - - 153 - - 184 - - 184 - - 151 - - 153 - - 155 - - 155 - - 157 - - 150 - - 145 - - 143 - - 142 - - 142 - - 142 - - 145 - - 142 - - 143 - - 141 - - 138 - - 142 - - 146 - - 154 - - 169 - - 168 - - 160 - - 142 - - 144 - - 145 - - 147 - - 155 - - 157 - - 162 - - 170 - - 165 - - 177 - - 172 - - 187 - - 212 - - 217 - - 210 - - 218 - - 222 - - 226 - - 239 - - 247 - - 250 - - 262 - - 258 - - 254 - - 252 - - 250 - - 245 - - 236 - - 228 - - 215 - - 206 - - 206 - - 194 - - 177 - - 162 - - 148 - - 144 - - 142 - - 137 - - 138 - - 136 - - 128 - - 135 - - 126 - - 130 - - 139 - - 138 - - 139 - - 141 - - 141 - - 139 - - 133 - - 132 - - 130 - - 127 - - 123 - - 120 - - 111 - - 152 - - 179 - - 170 - - 171 - - 159 - - 150 - - 143 - - 132 - - 142 - - 140 - - 151 - - 151 - - 145 - - 166 - - 166 - - 171 - - 172 - - 174 - - 167 - - 168 - - 173 - - 176 - - 174 - - 177 - - 168 - - 159 - - 159 - - 158 - - 159 - - 153 - - 156 - - 151 - - 155 - - 137 - - 128 - - 102 - - 85 - - 79 - - 74 - - 69 - - 76 - - 74 - - 68 - - 57 - - 47 - - 32 - - 32 - - 30 - - 24 - - 16 - - 14 - - 19 - - 29 - - 40 - - 48 - - 62 - - 72 - - 80 - - 81 - - 76 - - 76 - - 71 - - 66 - - 69 - - 71 - - 67 - - 60 - - 54 - - 43 - - 53 - - 71 - - 65 - - 69 - - 65 - - 49 - - 50 - - 59 - - 71 - - 81 - - 77 - - 65 - - 62 - - 66 - - 76 - - 76 - - 69 - - 60 - - 67 - - 68 - - 51 - - 39 - - 44 - - 65 - - 62 - - 54 - - 50 - - 42 - - 44 - - 44 - - 49 - - 48 - - 48 - - 50 - - 50 - - 54 - - 62 - - 59 - - 65 - - 61 - - 59 - - 58 - - 60 - - 65 - - 70 - - 72 - - 72 - - 58 - - 47 - - 48 - - 52 - - 53 - - 61 - - 80 - - 83 - - 77 - - 72 - - 70 - - 62 - - 62 - - 65 - - 65 - - 64 - - 63 - - 63 - - 64 - - 66 - - 65 - - 58 - - 54 - - 53 - - 52 - - 58 - - 66 - - 67 - - 77 - - 85 - - 79 - - 54 - - 36 - - 38 - - 43 - - 46 - - 54 - - 57 - - 61 - - 62 - - 61 - - 58 - - 61 - - 62 - - 56 - - 47 - - 41 - - 41 - - 48 - - 59 - - 60 - - 61 - - 53 - - 48 - - 49 - - 51 - - 51 - - 56 - - 58 - - 55 - - 59 - - 62 - - 65 - - 64 - - 68 - - 72 - - 73 - - 68 - - 64 - - 60 - - 59 - - 60 - - 65 - - 71 - - 75 - - 76 - - 81 - - 87 - - 91 - - 93 - - 92 - - 88 - - 88 - - 78 - - 81 - - 83 - - 85 - - 86 - - 90 - - 91 - - 93 - - 94 - - 97 - - 100 - - 99 - - 99 - - 108 - - 117 - - 117 - - 110 - - 104 - - 105 - - 106 - - 106 - - 109 - - 107 - - 109 - - 107 - - 113 - - 118 - - 126 - - 123 - - 136 - - 157 - - 174 - - 158 - - 146 - - 139 - - 128 - - 134 - - 177 - - 147 - - 168 - - 207 - - 239 - - 250 - - 251 - - 246 - - 239 - - 245 - - 244 - - 241 - - 236 - - 234 - - 227 - - 223 - - 216 - - 210 - - 195 - - 190 - - 201 - - 205 - - 197 - - 192 - - 187 - - 183 - - 149 - - 111 - - 118 - - 128 - - 123 - - 117 - - 110 - - 117 - - 129 - - 160 - - 164 - - 186 - - 205 - - 258 - - 295 - - 309 - - 313 - - 316 - - 319 - - 317 - - 307 - - 299 - - 294 - - 294 - - 295 - - 294 - - 301 - - 302 - - 299 - - 297 - - 299 - - 298 - - 301 - - 302 - - 305 - - 304 - - 302 - - 299 - - 303 - - 304 - - 304 - - 303 - - 303 - - 303 - - 302 - - 302 - - 302 - - 302 - - 301 - - 300 - - 301 - - 301 - - 304 - - 305 - - 305 - - 306 - - 306 - - 303 - - 300 - - 297 - - 296 - - 293 - - 293 - - 289 - - 287 - - 288 - - 291 - - 297 - - 298 - - 294 - - 290 - - 291 - - 289 - - 290 - - 286 - - 290 - - 289 - - 291 - - 292 - - 297 - - 298 - - 300 - - 301 - - 300 - - 299 - - 291 - - 290 - - 289 - - 291 - - 296 - - 296 - - 297 - - 298 - - 297 - - 293 - - 284 - - 268 - - 252 - - 272 - - 287 - - 273 - - 231 - - 135 - - 128 - - 121 - - 113 - - 117 - - 121 - - 121 - - 117 - - 111 - - 131 - - 138 - - 124 - - 117 - - 107 - - 100 - - 102 - - 103 - - 110 - - 120 - - 159 - - 188 - - 225 - - 247 - - 267 - - 287 - - 285 - - 281 - - 296 - - 303 - - 310 - - 306 - - 306 - - 305 - - 306 - - 307 - - 308 - - 309 - - 307 - - 307 - - 308 - - 306 - - 309 - - 312 - - 313 - - 313 - - 311 - - 308 - - 308 - - 307 - - 308 - - 307 - - 305 - - 302 - - 298 - - 294 - - 285 - - 285 - - 284 - - 277 - - 260 - - 244 - - 232 - - 222 - - 210 - - 204 - - 201 - - 198 - - 193 - - 195 - - 192 - - 193 - - 196 - - 198 - - 202 - - 200 - - 208 - - 216 - - 219 - - 222 - - 230 - - 236 - - 237 - - 244 - - 248 - - 251 - - 277 - - 305 - - 311 - - 312 - - 312 - - 310 - - 313 - - 315 - - 317 - - 318 - - 320 - - 321 - - 321 - - 322 - - 321 - - 317 - - 316 - - 312 - - 307 - - 308 - - 313 - - 311 - - 312 - - 309 - - 308 - - 301 - - 300 - - 301 - - 302 - - 301 - - 301 - - 304 - - 307 - - 309 - - 310 - - 308 - - 312 - - 313 - - 313 - - 311 - - 312 - - 310 - - 308 - - 307 - - 306 - - 306 - - 304 - - 306 - - 305 - - 301 - - 303 - - 301 - - 294 - - 289 - - 288 - - 287 - - 282 - - 293 - - 292 - - 275 - - 180 - - 117 - - 114 - - 109 - - 107 - - 111 - - 103 - - 106 - - 106 - - 95 - - 89 - - 90 - - 81 - - 77 - - 78 - - 82 - - 79 - - 89 - - 100 - - 105 - - 106 - - 105 - - 104 - - 105 - - 105 - - 100 - - 98 - - 96 - - 101 - - 103 - - 100 - - 100 - - 103 - - 101 - - 103 - - 101 - - 105 - - 107 - - 106 - - 104 - - 106 - - 105 - - 102 - - 104 - - 104 - - 104 - - 100 - - 100 - - 101 - - 97 - - 107 - - 106 - - 105 - - 105 - - 104 - - 106 - - 106 - - 112 - - 112 - - 111 - - 114 - - 112 - - 112 - - 113 - - 112 - - 114 - - 113 - - 113 - - 112 - - 113 - - 111 - - 113 - - 118 - - 117 - - 119 - - 123 - - 125 - - 128 - - 129 - - 131 - - 128 - - 124 - - 124 - - 121 - - 117 - - 120 - - 122 - - 121 - - 123 - - 125 - - 127 - - 130 - - 134 - - 135 - - 135 - - 136 - - 137 - - 137 - - 137 - - 135 - - 138 - - 141 - - 143 - - 141 - - 145 - - 149 - - 150 - - 150 - - 147 - - 147 - - 145 - - 145 - - 147 - - 150 - - 150 - - 153 - - 152 - - 154 - - 154 - - 151 - - 149 - - 149 - - 149 - - 153 - - 144 - - 142 - - 143 - - 144 - - 146 - - 144 - - 138 - - 137 - - 137 - - 139 - - 140 - - 140 - - 141 - - 142 - - 141 - - 139 - - 137 - - 135 - - 134 - - 136 - - 131 - - 133 - - 135 - - 135 - - 139 - - 141 - - 145 - - 148 - - 159 - - 165 - - 161 - - 160 - - 162 - - 195 - - 225 - - 232 - - 251 - - 273 - - 276 - - 268 - - 273 - - 273 - - 267 - - 288 - - 353 - - 22 - - 18 - - 21 - - 27 - - 48 - - 54 - - 62 - - 71 - - 75 - - 76 - - 40 - - 22 - - 25 - - 28 - - 37 - - 52 - - 66 - - 89 - - 89 - - 90 - - 87 - - 82 - - 83 - - 89 - - 85 - - 81 - - 80 - - 88 - - 97 - - 116 - - 111 - - 100 - - 86 - - 70 - - 72 - - 110 - - 130 - - 137 - - 143 - - 149 - - 146 - - 152 - - 164 - - 171 - - 159 - - 129 - - 86 - - 81 - - 63 - - 54 - - 75 - - 92 - - 101 - - 105 - - 146 - - 312 - - 328 - - 345 - - 350 - - 357 - - 1 - - 21 - - 41 - - 63 - - 124 - - 147 - - 178 - - 164 - - 145 - - 129 - - 117 - - 118 - - 114 - - 125 - - 145 - - 153 - - 161 - - 166 - - 168 - - 175 - - 181 - - 159 - - 187 - - 202 - - 180 - - 191 - - 165 - - 134 - - 137 - - 69 - - 355 - - 49 - - 45 - - 52 - - 72 - - 24 - - 41 - - 65 - - 157 - - 261 - - 297 - - 315 - - 318 - - 316 - - 319 - - 323 - - 325 - - 323 - - 321 - - 314 - - 308 - - 306 - - 306 - - 300 - - 298 - - 297 - - 298 - - 300 - - 300 - - 302 - - 304 - - 305 - - 309 - - 310 - - 313 - - 312 - - 315 - - 313 - - 309 - - 306 - - 304 - - 300 - - 297 - - 300 - - 302 - - 303 - - 306 - - 307 - - 307 - - 310 - - 313 - - 314 - - 315 - - 315 - - 312 - - 313 - - 314 - - 312 - - 311 - - 314 - - 311 - - 307 - - 306 - - 305 - - 303 - - 303 - - 301 - - 297 - - 296 - - 297 - - 298 - - 285 - - 296 - - 303 - - 302 - - 302 - - 303 - - 312 - - 313 - - 304 - - 302 - - 303 - - 297 - - 298 - - 301 - - 306 - - 304 - - 303 - - 305 - - 306 - - 300 - - 301 - - 301 - - 307 - - 311 - - 31 - - 56 - - 72 - - 79 - - 92 - - 94 - - 92 - - 81 - - 67 - - 58 - - 59 - - 76 - - 90 - - 96 - - 104 - - 105 - - 103 - - 86 - - 50 - - 33 - - 40 - - 61 - - 82 - - 88 - - 68 - - 61 - - 66 - - 66 - - 67 - - 65 - - 65 - - 65 - - 67 - - 70 - - 69 - - 75 - - 81 - - 89 - - 89 - - 89 - - 83 - - 94 - - 122 - - 134 - - 139 - - 134 - - 123 - - 118 - - 95 - - 88 - - 81 - - 71 - - 66 - - 70 - - 72 - - 71 - - 65 - - 73 - - 77 - - 81 - - 84 - - 87 - - 84 - - 93 - - 88 - - 81 - - 68 - - 65 - - 74 - - 83 - - 38 - - 42 - - 72 - - 104 - - 90 - - 84 - - 71 - - 75 - - 79 - - 81 - - 86 - - 75 - - 72 - - 76 - - 129 - - 74 - - 87 - - 88 - - 87 - - 104 - - 120 - - 113 - - 102 - - 360 - - 360 - - 350 - - 355 - - 348 - - 348 - - 332 - - 326 - - 321 - - 324 - - 319 - - 321 - - 319 - - 319 - - 318 - - 313 - - 314 - - 319 - - 316 - - 320 - - 311 - - 305 - - 310 - - 316 - - 323 - - 322 - - 323 - - 329 - - 330 - - 328 - - 331 - - 337 - - 338 - - 338 - - 328 - - 312 - - 318 - - 317 - - 314 - - 311 - - 315 - - 324 - - 321 - - 313 - - 312 - - 309 - - 311 - - 307 - - 300 - - 304 - - 314 - - 313 - - 313 - - 318 - - 322 - - 328 - - 330 - - 336 - - 336 - - 334 - - 330 - - 327 - - 324 - - 321 - - 319 - - 320 - - 319 - - 317 - - 318 - - 316 - - 315 - - 316 - - 317 - - 318 - - 319 - - 319 - - 319 - - 315 - - 314 - - 313 - - 312 - - 316 - - 317 - - 319 - - 318 - - 318 - - 319 - - 320 - - 319 - - 320 - - 319 - - 323 - - 324 - - 320 - - 314 - - 311 - - 310 - - 309 - - 313 - - 316 - - 315 - - 314 - - 315 - - 312 - - 310 - - 307 - - 294 - - 286 - - 279 - - 271 - - 263 - - 251 - - 244 - - 248 - - 254 - - 256 - - 253 - - 246 - - 242 - - 244 - - 232 - - 245 - - 262 - - 269 - - 268 - - 276 - - 290 - - 294 - - 301 - - 318 - - 303 - - 304 - - 306 - - 310 - - 312 - - 309 - - 310 - - 312 - - 316 - - 319 - - 317 - - 312 - - 311 - - 310 - - 312 - - 313 - - 315 - - 321 - - 324 - - 327 - - 332 - - 329 - - 323 - - 320 - - 319 - - 318 - - 317 - - 322 - - 325 - - 326 - - 325 - - 324 - - 322 - - 322 - - 321 - - 316 - - 321 - - 317 - - 317 - - 318 - - 319 - - 323 - - 328 - - 333 - - 333 - - 328 - - 332 - - 352 - - 4 - - 11 - - 20 - - 29 - - 52 - - 81 - - 86 - - 88 - - 75 - - 27 - - 346 - - 339 - - 336 - - 341 - - 328 - - 314 - - 313 - - 307 - - 303 - - 298 - - 299 - - 298 - - 295 - - 288 - - 292 - - 296 - - 304 - - 306 - - 308 - - 306 - - 309 - - 311 - - 312 - - 313 - - 310 - - 307 - - 305 - - 304 - - 306 - - 308 - - 310 - - 311 - - 312 - - 314 - - 316 - - 316 - - 319 - - 318 - - 314 - - 314 - - 315 - - 317 - - 317 - - 325 - - 330 - - 340 - - 355 - - 15 - - 12 - - 8 - - 356 - - 5 - - 8 - - 9 - - 14 - - 35 - - 40 - - 42 - - 42 - - 48 - - 54 - - 59 - - 69 - - 77 - - 80 - - 78 - - 74 - - 45 - - 38 - - 17 - - 3 - - 346 - - 342 - - 350 - - 351 - - 355 - - 349 - - 3 - - 352 - - 164 - - 193 - - 212 - - 224 - - 243 - - 260 - - 251 - - 257 - - 256 - - 256 - - 258 - - 268 - - 274 - - 274 - - 276 - - 281 - - 288 - - 295 - - 298 - - 298 - - 299 - - 295 - - 291 - - 291 - - 282 - - 277 - - 276 - - 275 - - 266 - - 279 - - 286 - - 287 - - 288 - - 286 - - 282 - - 283 - - 263 - - 261 - - 270 - - 268 - - 254 - - 261 - - 272 - - 292 - - 298 - - 302 - - 286 - - 278 - - 289 - - 284 - - 283 - - 280 - - 281 - - 284 - - 278 - - 260 - - 259 - - 260 - - 258 - - 258 - - 226 - - 240 - - 270 - - 279 - - 282 - - 287 - - 297 - - 302 - - 304 - - 304 - - 299 - - 293 - - 283 - - 281 - - 279 - - 281 - - 284 - - 284 - - 275 - - 274 - - 274 - - 275 - - 273 - - 271 - - 265 - - 260 - - 263 - - 268 - - 271 - - 274 - - 277 - - 282 - - 287 - - 293 - - 298 - - 300 - - 289 - - 290 - - 290 - - 302 - - 312 - - 315 - - 299 - - 243 - - 257 - - 284 - - 297 - - 295 - - 286 - - 292 - - 298 - - 301 - - 303 - - 302 - - 298 - - 298 - - 304 - - 307 - - 312 - - 315 - - 301 - - 300 - - 301 - - 301 - - 303 - - 306 - - 301 - - 301 - - 301 - - 304 - - 306 - - 303 - - 296 - - 298 - - 299 - - 301 - - 304 - - 308 - - 312 - - 317 - - 320 - - 322 - - 319 - - 320 - - 328 - - 323 - - 332 - - 350 - - 60 - - 66 - - 81 - - 105 - - 111 - - 111 - - 111 - - 111 - - 116 - - 114 - - 131 - - 145 - - 150 - - 135 - - 124 - - 128 - - 124 - - 134 - - 141 - - 139 - - 131 - - 125 - - 119 - - 115 - - 109 - - 101 - - 95 - - 92 - - 92 - - 93 - - 95 - - 96 - - 93 - - 94 - - 93 - - 91 - - 94 - - 99 - - 100 - - 100 - - 106 - - 111 - - 110 - - 111 - - 112 - - 112 - - 109 - - 107 - - 106 - - 103 - - 102 - - 104 - - 107 - - 109 - - 112 - - 116 - - 119 - - 120 - - 120 - - 121 - - 121 - - 121 - - 121 - - 121 - - 123 - - 128 - - 127 - - 120 - - 115 - - 108 - - 102 - - 100 - - 97 - - 95 - - 91 - - 89 - - 91 - - 95 - - 98 - - 100 - - 96 - - 101 - - 104 - - 108 - - 110 - - 112 - - 107 - - 102 - - 113 - - 119 - - 130 - - 137 - - 141 - - 141 - - 134 - - 133 - - 131 - - 122 - - 113 - - 103 - - 95 - - 90 - - 85 - - 83 - - 83 - - 86 - - 86 - - 91 - - 94 - - 95 - - 106 - - 121 - - 109 - - 88 - - 90 - - 88 - - 92 - - 116 - - 126 - - 121 - - 117 - - 114 - - 121 - - 111 - - 80 - - 74 - - 76 - - 77 - - 71 - - 70 - - 61 - - 14 - - 358 - - 6 - - 13 - - 17 - - 23 - - 29 - - 29 - - 51 - - 63 - - 56 - - 39 - - 7 - - 336 - - 333 - - 335 - - 327 - - 336 - - 339 - - 355 - - 355 - - 32 - - 317 - - 286 - - 297 - - 301 - - 302 - - 298 - - 296 - - 296 - - 295 - - 300 - - 302 - - 315 - - 312 - - 307 - - 307 - - 312 - - 319 - - 319 - - 310 - - 306 - - 323 - - 332 - - 342 - - 360 - - 24 - - 35 - - 21 - - 7 - - 349 - - 345 - - 348 - - 9 - - 75 - - 149 - - 170 - - 163 - - 170 - - 176 - - 195 - - 211 - - 222 - - 231 - - 284 - - 360 - - 22 - - 41 - - 49 - - 344 - - 219 - - 239 - - 303 - - 297 - - 312 - - 314 - - 301 - - 316 - - 317 - - 315 - - 326 - - 318 - - 343 - - 311 - - 326 - - 347 - - 356 - - 353 - - 328 - - 335 - - 336 - - 43 - - 214 - - 7 - - 27 - - 12 - - 13 - - 21 - - 24 - - 30 - - 28 - - 37 - - 53 - - 63 - - 58 - - 59 - - 65 - - 68 - - 91 - - 102 - - 125 - - 113 - - 109 - - 106 - - 114 - - 122 - - 126 - - 135 - - 135 - - 147 - - 160 - - 147 - - 185 - - 195 - - 187 - - 195 - - 197 - - 206 - - 215 - - 230 - - 235 - - 235 - - 233 - - 222 - - 218 - - 219 - - 221 - - 235 - - 239 - - 235 - - 223 - - 200 - - 125 - - 79 - - 96 - - 127 - - 126 - - 130 - - 131 - - 133 - - 129 - - 119 - - 116 - - 104 - - 109 - - 117 - - 135 - - 137 - - 128 - - 130 - - 169 - - 201 - - 230 - - 237 - - 247 - - 262 - - 267 - - 266 - - 260 - - 254 - - 251 - - 249 - - 250 - - 254 - - 252 - - 247 - - 250 - - 248 - - 244 - - 240 - - 243 - - 250 - - 248 - - 240 - - 245 - - 255 - - 270 - - 275 - - 293 - - 286 - - 291 - - 306 - - 313 - - 314 - - 329 - - 337 - - 332 - - 330 - - 340 - - 355 - - 355 - - 348 - - 342 - - 338 - - 334 - - 336 - - 324 - - 305 - - 310 - - 312 - - 313 - - 309 - - 303 - - 299 - - 298 - - 297 - - 297 - - 299 - - 301 - - 298 - - 297 - - 291 - - 285 - - 284 - - 286 - - 283 - - 283 - - 281 - - 279 - - 276 - - 269 - - 257 - - 252 - - 248 - - 249 - - 247 - - 243 - - 239 - - 232 - - 234 - - 241 - - 241 - - 242 - - 251 - - 253 - - 249 - - 245 - - 245 - - 244 - - 230 - - 227 - - 229 - - 228 - - 225 - - 215 - - 212 - - 194 - - 177 - - 166 - - 163 - - 165 - - 180 - - 183 - - 205 - - 207 - - 184 - - 164 - - 143 - - 130 - - 129 - - 135 - - 142 - - 141 - - 142 - - 142 - - 140 - - 136 - - 137 - - 138 - - 187 - - 176 - - 181 - - 183 - - 212 - - 247 - - 269 - - 268 - - 268 - - 265 - - 276 - - 281 - - 282 - - 284 - - 285 - - 288 - - 290 - - 291 - - 290 - - 291 - - 293 - - 291 - - 287 - - 297 - - 300 - - 298 - - 300 - - 299 - - 300 - - 299 - - 299 - - 298 - - 301 - - 301 - - 300 - - 298 - - 299 - - 298 - - 295 - - 296 - - 296 - - 294 - - 292 - - 291 - - 288 - - 287 - - 288 - - 291 - - 292 - - 288 - - 287 - - 282 - - 268 - - 259 - - 239 - - 238 - - 233 - - 227 - - 226 - - 224 - - 220 - - 217 - - 213 - - 211 - - 213 - - 217 - - 219 - - 220 - - 223 - - 233 - - 244 - - 247 - - 241 - - 236 - - 223 - - 211 - - 210 - - 205 - - 204 - - 213 - - 214 - - 210 - - 218 - - 224 - - 225 - - 229 - - 237 - - 280 - - 293 - - 292 - - 289 - - 286 - - 285 - - 283 - - 285 - - 285 - - 285 - - 279 - - 273 - - 268 - - 263 - - 258 - - 250 - - 248 - - 250 - - 250 - - 247 - - 246 - - 241 - - 229 - - 225 - - 211 - - 207 - - 210 - - 194 - - 183 - - 207 - - 198 - - 181 - - 168 - - 157 - - 152 - - 167 - - 218 - - 233 - - 233 - - 229 - - 232 - - 243 - - 247 - - 250 - - 252 - - 244 - - 244 - - 245 - - 251 - - 250 - - 260 - - 262 - - 267 - - 267 - - 250 - - 257 - - 257 - - 253 - - 257 - - 258 - - 260 - - 261 - - 256 - - 253 - - 257 - - 257 - - 260 - - 261 - - 262 - - 260 - - 258 - - 255 - - 257 - - 256 - - 253 - - 247 - - 261 - - 252 - - 256 - - 263 - - 260 - - 260 - - 261 - - 260 - - 256 - - 255 - - 255 - - 252 - - 253 - - 253 - - 256 - - 244 - - 251 - - 247 - - 247 - - 239 - - 239 - - 218 - - 219 - - 216 - - 225 - - 234 - - 252 - - 247 - - 247 - - 252 - - 248 - - 243 - - 246 - - 253 - - 247 - - 240 - - 240 - - 254 - - 254 - - 268 - - 265 - - 268 - - 265 - - 260 - - 259 - - 254 - - 255 - - 244 - - 226 - - 192 - - 162 - - 155 - - 134 - - 132 - - 115 - - 95 - - 86 - - 94 - - 89 - - 121 - - 139 - - 118 - - 127 - - 74 - - 45 - - 35 - - 358 - - 305 - - 283 - - 271 - - 276 - - 292 - - 291 - - 283 - - 281 - - 276 - - 276 - - 275 - - 271 - - 271 - - 272 - - 266 - - 262 - - 266 - - 268 - - 271 - - 269 - - 266 - - 261 - - 255 - - 250 - - 246 - - 238 - - 237 - - 235 - - 237 - - 236 - - 236 - - 237 - - 229 - - 226 - - 228 - - 234 - - 245 - - 241 - - 236 - - 236 - - 233 - - 235 - - 232 - - 228 - - 221 - - 215 - - 228 - - 250 - - 261 - - 258 - - 234 - - 219 - - 90 - - 102 - - 108 - - 110 - - 117 - - 122 - - 114 - - 107 - - 119 - - 141 - - 165 - - 144 - - 98 - - 96 - - 94 - - 101 - - 117 - - 134 - - 131 - - 142 - - 132 - - 120 - - 124 - - 130 - - 115 - - 130 - - 135 - - 131 - - 129 - - 132 - - 122 - - 118 - - 114 - - 121 - - 120 - - 120 - - 121 - - 121 - - 121 - - 122 - - 120 - - 125 - - 125 - - 129 - - 133 - - 142 - - 156 - - 144 - - 122 - - 100 - - 102 - - 119 - - 174 - - 222 - - 16 - - 242 - - 262 - - 286 - - 280 - - 277 - - 281 - - 273 - - 261 - - 255 - - 259 - - 274 - - 271 - - 251 - - 243 - - 241 - - 240 - - 234 - - 233 - - 226 - - 210 - - 187 - - 181 - - 183 - - 170 - - 165 - - 150 - - 152 - - 145 - - 165 - - 170 - - 171 - - 183 - - 200 - - 211 - - 216 - - 218 - - 216 - - 219 - - 209 - - 196 - - 178 - - 178 - - 191 - - 184 - - 168 - - 165 - - 189 - - 204 - - 235 - - 237 - - 242 - - 245 - - 249 - - 257 - - 263 - - 266 - - 269 - - 268 - - 263 - - 255 - - 248 - - 239 - - 230 - - 227 - - 224 - - 232 - - 232 - - 236 - - 226 - - 233 - - 234 - - 240 - - 241 - - 246 - - 251 - - 252 - - 259 - - 273 - - 283 - - 278 - - 280 - - 284 - - 287 - - 291 - - 286 - - 273 - - 263 - - 262 - - 258 - - 247 - - 239 - - 232 - - 241 - - 244 - - 241 - - 247 - - 244 - - 238 - - 233 - - 227 - - 218 - - 209 - - 203 - - 198 - - 197 - - 194 - - 195 - - 184 - - 180 - - 169 - - 159 - - 148 - - 144 - - 138 - - 143 - - 132 - - 123 - - 120 - - 125 - - 131 - - 143 - - 165 - - 155 - - 197 - - 214 - - 210 - - 212 - - 210 - - 209 - - 198 - - 188 - - 202 - - 164 - - 147 - - 208 - - 181 - - 196 - - 201 - - 201 - - 207 - - 207 - - 202 - - 205 - - 206 - - 209 - - 214 - - 216 - - 218 - - 221 - - 222 - - 224 - - 226 - - 228 - - 227 - - 226 - - 226 - - 227 - - 224 - - 220 - - 219 - - 219 - - 222 - - 222 - - 224 - - 221 - - 227 - - 226 - - 227 - - 234 - - 234 - - 230 - - 239 - - 241 - - 246 - - 250 - - 256 - - 260 - - 260 - - 262 - - 267 - - 268 - - 267 - - 264 - - 265 - - 269 - - 278 - - 271 - - 273 - - 270 - - 260 - - 255 - - 253 - - 258 - - 266 - - 271 - - 273 - - 271 - - 274 - - 275 - - 277 - - 283 - - 284 - - 287 - - 287 - - 283 - - 284 - - 282 - - 281 - - 283 - - 298 - - 303 - - 302 - - 288 - - 265 - - 257 - - 260 - - 275 - - 281 - - 277 - - 274 - - 275 - - 279 - - 283 - - 288 - - 289 - - 290 - - 287 - - 284 - - 281 - - 277 - - 281 - - 280 - - 277 - - 275 - - 282 - - 281 - - 284 - - 286 - - 291 - - 301 - - 289 - - 290 - - 293 - - 290 - - 288 - - 291 - - 289 - - 289 - - 286 - - 283 - - 281 - - 280 - - 277 - - 276 - - 274 - - 276 - - 266 - - 263 - - 265 - - 279 - - 280 - - 278 - - 271 - - 275 - - 279 - - 281 - - 280 - - 273 - - 267 - - 250 - - 243 - - 244 - - 243 - - 247 - - 257 - - 266 - - 248 - - 287 - - 280 - - 281 - - 274 - - 269 - - 247 - - 250 - - 250 - - 262 - - 263 - - 264 - - 279 - - 258 - - 262 - - 260 - - 262 - - 264 - - 263 - - 262 - - 260 - - 256 - - 250 - - 247 - - 243 - - 236 - - 221 - - 195 - - 183 - - 167 - - 147 - - 131 - - 123 - - 122 - - 127 - - 130 - - 128 - - 120 - - 118 - - 127 - - 120 - - 122 - - 181 - - 177 - - 189 - - 218 - - 218 - - 224 - - 218 - - 216 - - 216 - - 216 - - 211 - - 193 - - 199 - - 222 - - 241 - - 278 - - 297 - - 309 - - 307 - - 308 - - 308 - - 307 - - 307 - - 300 - - 301 - - 306 - - 313 - - 324 - - 324 - - 320 - - 307 - - 295 - - 288 - - 292 - - 286 - - 287 - - 287 - - 284 - - 285 - - 289 - - 287 - - 288 - - 286 - - 285 - - 284 - - 281 - - 280 - - 285 - - 280 - - 275 - - 277 - - 277 - - 280 - - 282 - - 281 - - 275 - - 276 - - 280 - - 270 - - 264 - - 272 - - 269 - - 257 - - 267 - - 274 - - 268 - - 269 - - 263 - - 262 - - 268 - - 263 - - 269 - - 264 - - 266 - - 266 - - 261 - - 265 - - 262 - - 267 - - 265 - - 261 - - 257 - - 261 - - 264 - - 259 - - 254 - - 260 - - 262 - - 261 - - 260 - - 262 - - 257 - - 258 - - 263 - - 255 - - 246 - - 250 - - 254 - - 261 - - 282 - - 287 - - 321 - - 2 - - 35 - - 47 - - 49 - - 50 - - 49 - - 63 - - 74 - - 71 - - 55 - - 14 - - 19 - - 23 - - 349 - - 315 - - 289 - - 292 - - 273 - - 274 - - 292 - - 297 - - 289 - - 293 - - 311 - - 355 - - 35 - - 82 - - 148 - - 213 - - 227 - - 204 - - 193 - - 206 - - 202 - - 206 - - 204 - - 204 - - 201 - - 191 - - 187 - - 222 - - 201 - - 219 - - 229 - - 234 - - 234 - - 242 - - 242 - - 244 - - 246 - - 243 - - 238 - - 238 - - 239 - - 238 - - 235 - - 237 - - 231 - - 221 - - 211 - - 198 - - 199 - - 205 - - 187 - - 224 - - 189 - - 225 - - 235 - - 252 - - 251 - - 233 - - 237 - - 233 - - 232 - - 228 - - 230 - - 211 - - 198 - - 212 - - 220 - - 223 - - 219 - - 218 - - 244 - - 245 - - 258 - - 269 - - 281 - - 287 - - 304 - - 289 - - 274 - - 280 - - 283 - - 260 - - 246 - - 260 - - 259 - - 323 - - 52 - - 80 - - 86 - - 100 - - 101 - - 102 - - 109 - - 90 - - 91 - - 87 - - 69 - - 61 - - 63 - - 47 - - 40 - - 31 - - 16 - - 18 - - 12 - - 5 - - 346 - - 341 - - 347 - - 352 - - 349 - - 328 - - 303 - - 292 - - 289 - - 282 - - 278 - - 274 - - 276 - - 268 - - 254 - - 242 - - 176 - - 173 - - 168 - - 144 - - 143 - - 142 - - 142 - - 122 - - 116 - - 100 - - 89 - - 84 - - 81 - - 75 - - 73 - - 64 - - 67 - - 63 - - 58 - - 55 - - 48 - - 41 - - 38 - - 33 - - 13 - - 9 - - 5 - - 6 - - 353 - - 341 - - 341 - - 332 - - 316 - - 308 - - 301 - - 297 - - 296 - - 292 - - 288 - - 284 - - 285 - - 288 - - 290 - - 292 - - 292 - - 295 - - 296 - - 299 - - 300 - - 298 - - 282 - - 287 - - 293 - - 295 - - 296 - - 297 - - 293 - - 294 - - 292 - - 292 - - 291 - - 288 - - 292 - - 287 - - 282 - - 276 - - 266 - - 264 - - 266 - - 265 - - 260 - - 251 - - 249 - - 252 - - 240 - - 243 - - 243 - - 243 - - 249 - - 275 - - 344 - - 18 - - 32 - - 53 - - 62 - - 68 - - 75 - - 78 - - 92 - - 95 - - 94 - - 91 - - 87 - - 84 - - 78 - - 78 - - 74 - - 66 - - 49 - - 36 - - 40 - - 38 - - 24 - - 18 - - 10 - - 1 - - 353 - - 342 - - 334 - - 330 - - 326 - - 312 - - 309 - - 311 - - 311 - - 312 - - 314 - - 311 - - 308 - - 307 - - 302 - - 305 - - 290 - - 294 - - 296 - - 292 - - 290 - - 288 - - 287 - - 286 - - 290 - - 290 - - 289 - - 286 - - 283 - - 287 - - 286 - - 286 - - 285 - - 284 - - 283 - - 283 - - 282 - - 282 - - 284 - - 285 - - 284 - - 286 - - 283 - - 284 - - 282 - - 277 - - 277 - - 279 - - 279 - - 280 - - 280 - - 280 - - 284 - - 281 - - 280 - - 284 - - 283 - - 283 - - 284 - - 286 - - 291 - - 293 - - 292 - - 291 - - 288 - - 288 - - 289 - - 291 - - 287 - - 287 - - 288 - - 291 - - 297 - - 298 - - 298 - - 298 - - 297 - - 292 - - 291 - - 294 - - 292 - - 291 - - 292 - - 292 - - 296 - - 297 - - 294 - - 295 - - 291 - - 291 - - 290 - - 288 - - 288 - - 292 - - 290 - - 284 - - 276 - - 271 - - 273 - - 274 - - 280 - - 273 - - 269 - - 264 - - 263 - - 259 - - 234 - - 240 - - 237 - - 231 - - 231 - - 224 - - 207 - - 197 - - 202 - - 195 - - 197 - - 197 - - 204 - - 212 - - 213 - - 223 - - 233 - - 232 - - 219 - - 212 - - 222 - - 206 - - 188 - - 188 - - 186 - - 163 - - 155 - - 175 - - 169 - - 176 - - 172 - - 184 - - 184 - - 191 - - 197 - - 211 - - 202 - - 218 - - 222 - - 231 - - 236 - - 239 - - 237 - - 228 - - 217 - - 201 - - 196 - - 193 - - 208 - - 211 - - 219 - - 221 - - 222 - - 221 - - 227 - - 229 - - 227 - - 224 - - 223 - - 222 - - 216 - - 207 - - 203 - - 205 - - 208 - - 209 - - 210 - - 201 - - 194 - - 194 - - 189 - - 180 - - 184 - - 184 - - 188 - - 192 - - 191 - - 191 - - 194 - - 207 - - 216 - - 216 - - 197 - - 190 - - 195 - - 203 - - 193 - - 172 - - 171 - - 163 - - 149 - - 134 - - 126 - - 120 - - 123 - - 130 - - 147 - - 159 - - 172 - - 210 - - 219 - - 218 - - 226 - - 227 - - 224 - - 223 - - 223 - - 222 - - 217 - - 221 - - 220 - - 222 - - 225 - - 230 - - 236 - - 242 - - 247 - - 251 - - 254 - - 256 - - 262 - - 271 - - 272 - - 272 - - 279 - - 282 - - 278 - - 288 - - 292 - - 292 - - 290 - - 291 - - 294 - - 296 - - 302 - - 304 - - 294 - - 292 - - 297 - - 288 - - 300 - - 311 - - 312 - - 318 - - 321 - - 318 - - 320 - - 333 - - 79 - - 90 - - 117 - - 90 - - 37 - - 75 - - 81 - - 90 - - 94 - - 95 - - 106 - - 121 - - 113 - - 101 - - 77 - - 75 - - 70 - - 73 - - 80 - - 79 - - 78 - - 76 - - 62 - - 55 - - 57 - - 58 - - 70 - - 81 - - 87 - - 92 - - 93 - - 102 - - 99 - - 95 - - 94 - - 94 - - 95 - - 98 - - 107 - - 104 - - 107 - - 99 - - 91 - - 99 - - 106 - - 125 - - 123 - - 129 - - 118 - - 124 - - 140 - - 129 - - 135 - - 141 - - 142 - - 148 - - 162 - - 172 - - 195 - - 241 - - 255 - - 258 - - 251 - - 244 - - 237 - - 231 - - 227 - - 224 - - 219 - - 223 - - 228 - - 230 - - 231 - - 235 - - 237 - - 242 - - 243 - - 246 - - 251 - - 251 - - 254 - - 256 - - 252 - - 247 - - 244 - - 247 - - 253 - - 250 - - 255 - - 258 - - 255 - - 251 - - 250 - - 255 - - 249 - - 245 - - 243 - - 242 - - 243 - - 243 - - 241 - - 237 - - 235 - - 231 - - 227 - - 219 - - 210 - - 213 - - 219 - - 224 - - 232 - - 235 - - 238 - - 233 - - 230 - - 237 - - 233 - - 226 - - 231 - - 234 - - 238 - - 242 - - 231 - - 235 - - 239 - - 239 - - 245 - - 249 - - 246 - - 239 - - 247 - - 251 - - 254 - - 245 - - 242 - - 241 - - 240 - - 237 - - 239 - - 234 - - 241 - - 256 - - 250 - - 256 - - 258 - - 260 - - 267 - - 266 - - 268 - - 267 - - 271 - - 272 - - 273 - - 273 - - 267 - - 265 - - 270 - - 278 - - 282 - - 282 - - 292 - - 296 - - 293 - - 287 - - 272 - - 257 - - 252 - - 248 - - 248 - - 241 - - 229 - - 223 - - 205 - - 142 - - 141 - - 205 - - 352 - - 97 - - 126 - - 136 - - 142 - - 147 - - 144 - - 164 - - 179 - - 182 - - 195 - - 218 - - 259 - - 259 - - 257 - - 263 - - 264 - - 262 - - 255 - - 259 - - 262 - - 274 - - 287 - - 295 - - 296 - - 314 - - 331 - - 341 - - 351 - - 6 - - 17 - - 37 - - 29 - - 360 - - 7 - - 338 - - 356 - - 37 - - 45 - - 323 - - 340 - - 314 - - 272 - - 285 - - 270 - - 265 - - 263 - - 248 - - 245 - - 257 - - 266 - - 294 - - 90 - - 159 - - 243 - - 218 - - 193 - - 187 - - 189 - - 189 - - 187 - - 202 - - 198 - - 207 - - 195 - - 202 - - 137 - - 162 - - 201 - - 192 - - 178 - - 184 - - 171 - - 174 - - 174 - - 219 - - 288 - - 357 - - 313 - - 297 - - 324 - - 322 - - 328 - - 328 - - 316 - - 306 - - 305 - - 298 - - 295 - - 293 - - 293 - - 294 - - 293 - - 293 - - 290 - - 292 - - 282 - - 281 - - 289 - - 295 - - 298 - - 298 - - 279 - - 286 - - 274 - - 243 - - 196 - - 193 - - 216 - - 194 - - 211 - - 210 - - 219 - - 217 - - 213 - - 215 - - 216 - - 220 - - 221 - - 222 - - 224 - - 221 - - 212 - - 203 - - 192 - - 195 - - 185 - - 196 - - 190 - - 197 - - 170 - - 161 - - 170 - - 173 - - 176 - - 173 - - 185 - - 198 - - 171 - - 177 - - 161 - - 176 - - 186 - - 186 - - 180 - - 155 - - 158 - - 158 - - 150 - - 144 - - 270 - - 71 - - 88 - - 85 - - 71 - - 87 - - 86 - - 76 - - 79 - - 83 - - 89 - - 87 - - 84 - - 98 - - 90 - - 75 - - 79 - - 166 - - 31 - - 16 - - 30 - - 34 - - 7 - - 335 - - 320 - - 327 - - 332 - - 330 - - 329 - - 325 - - 300 - - 281 - - 279 - - 288 - - 294 - - 294 - - 291 - - 294 - - 301 - - 309 - - 312 - - 308 - - 292 - - 297 - - 300 - - 298 - - 294 - - 291 - - 288 - - 290 - - 295 - - 298 - - 298 - - 297 - - 297 - - 295 - - 292 - - 289 - - 286 - - 288 - - 288 - - 288 - - 290 - - 291 - - 293 - - 291 - - 290 - - 290 - - 296 - - 297 - - 293 - - 291 - - 285 - - 285 - - 291 - - 298 - - 298 - - 295 - - 297 - - 283 - - 282 - - 285 - - 274 - - 259 - - 252 - - 256 - - 250 - - 249 - - 253 - - 250 - - 251 - - 256 - - 259 - - 255 - - 259 - - 256 - - 251 - - 252 - - 253 - - 254 - - 253 - - 252 - - 253 - - 247 - - 244 - - 241 - - 239 - - 236 - - 233 - - 236 - - 239 - - 240 - - 239 - - 234 - - 227 - - 230 - - 226 - - 224 - - 222 - - 220 - - 226 - - 230 - - 230 - - 230 - - 231 - - 233 - - 234 - - 229 - - 229 - - 237 - - 254 - - 258 - - 263 - - 272 - - 289 - - 308 - - 315 - - 315 - - 328 - - 339 - - 329 - - 328 - - 327 - - 333 - - 332 - - 318 - - 332 - - 355 - - 9 - - 26 - - 49 - - 81 - - 101 - - 117 - - 121 - - 124 - - 109 - - 107 - - 110 - - 114 - - 118 - - 122 - - 122 - - 124 - - 128 - - 133 - - 137 - - 139 - - 136 - - 138 - - 139 - - 138 - - 139 - - 138 - - 140 - - 141 - - 137 - - 137 - - 137 - - 138 - - 137 - - 138 - - 137 - - 135 - - 133 - - 131 - - 127 - - 128 - - 131 - - 134 - - 134 - - 135 - - 135 - - 137 - - 136 - - 133 - - 132 - - 130 - - 133 - - 136 - - 137 - - 138 - - 138 - - 144 - - 144 - - 148 - - 146 - - 139 - - 126 - - 126 - - 131 - - 135 - - 140 - - 148 - - 156 - - 161 - - 160 - - 158 - - 157 - - 158 - - 157 - - 157 - - 165 - - 168 - - 177 - - 185 - - 196 - - 213 - - 225 - - 237 - - 242 - - 240 - - 236 - - 235 - - 242 - - 256 - - 263 - - 278 - - 282 - - 281 - - 287 - - 287 - - 288 - - 289 - - 295 - - 283 - - 273 - - 290 - - 297 - - 296 - - 286 - - 277 - - 249 - - 247 - - 243 - - 242 - - 235 - - 234 - - 242 - - 232 - - 220 - - 198 - - 191 - - 180 - - 162 - - 165 - - 172 - - 172 - - 169 - - 172 - - 171 - - 172 - - 173 - - 171 - - 175 - - 191 - - 217 - - 165 - - 186 - - 203 - - 216 - - 221 - - 230 - - 247 - - 263 - - 268 - - 267 - - 269 - - 257 - - 255 - - 253 - - 264 - - 273 - - 294 - - 315 - - 319 - - 350 - - 359 - - 356 - - 355 - - 356 - - 349 - - 346 - - 342 - - 339 - - 337 - - 336 - - 334 - - 336 - - 335 - - 335 - - 327 - - 330 - - 333 - - 336 - - 331 - - 324 - - 335 - - 334 - - 336 - - 343 - - 337 - - 341 - - 342 - - 345 - - 336 - - 329 - - 337 - - 334 - - 318 - - 332 - - 327 - - 339 - - 360 - - 344 - - 306 - - 284 - - 296 - - 294 - - 286 - - 290 - - 297 - - 303 - - 256 - - 207 - - 231 - - 234 - - 223 - - 236 - - 213 - - 209 - - 209 - - 198 - - 186 - - 193 - - 205 - - 204 - - 200 - - 198 - - 196 - - 192 - - 191 - - 189 - - 187 - - 184 - - 182 - - 182 - - 177 - - 174 - - 178 - - 181 - - 177 - - 178 - - 182 - - 176 - - 173 - - 179 - - 188 - - 183 - - 154 - - 140 - - 148 - - 147 - - 144 - - 145 - - 149 - - 146 - - 140 - - 130 - - 126 - - 127 - - 131 - - 131 - - 130 - - 137 - - 157 - - 165 - - 169 - - 180 - - 234 - - 295 - - 317 - - 330 - - 349 - - 2 - - 18 - - 20 - - 354 - - 8 - - 21 - - 20 - - 27 - - 32 - - 40 - - 52 - - 64 - - 74 - - 73 - - 80 - - 90 - - 93 - - 106 - - 128 - - 117 - - 102 - - 105 - - 115 - - 121 - - 123 - - 127 - - 121 - - 122 - - 132 - - 133 - - 144 - - 142 - - 144 - - 143 - - 135 - - 130 - - 124 - - 116 - - 144 - - 151 - - 171 - - 180 - - 203 - - 200 - - 206 - - 209 - - 208 - - 202 - - 185 - - 165 - - 167 - - 167 - - 219 - - 252 - - 248 - - 245 - - 236 - - 244 - - 228 - - 231 - - 234 - - 237 - - 230 - - 226 - - 227 - - 216 - - 205 - - 197 - - 225 - - 236 - - 244 - - 249 - - 246 - - 231 - - 236 - - 230 - - 241 - - 241 - - 235 - - 231 - - 234 - - 235 - - 232 - - 235 - - 232 - - 226 - - 224 - - 224 - - 214 - - 210 - - 205 - - 205 - - 199 - - 199 - - 199 - - 196 - - 193 - - 194 - - 191 - - 189 - - 185 - - 178 - - 173 - - 170 - - 168 - - 172 - - 176 - - 180 - - 186 - - 189 - - 193 - - 203 - - 203 - - 196 - - 224 - - 248 - - 216 - - 214 - - 252 - - 270 - - 45 - - 17 - - 17 - - 303 - - 326 - - 318 - - 318 - - 324 - - 337 - - 305 - - 280 - - 288 - - 257 - - 247 - - 182 - - 178 - - 173 - - 171 - - 178 - - 216 - - 243 - - 246 - - 246 - - 232 - - 226 - - 210 - - 195 - - 175 - - 194 - - 217 - - 272 - - 299 - - 270 - - 237 - - 264 - - 283 - - 277 - - 277 - - 270 - - 271 - - 279 - - 285 - - 286 - - 292 - - 287 - - 282 - - 284 - - 288 - - 283 - - 278 - - 279 - - 278 - - 274 - - 271 - - 260 - - 257 - - 258 - - 257 - - 241 - - 224 - - 210 - - 203 - - 210 - - 208 - - 206 - - 210 - - 207 - - 206 - - 200 - - 194 - - 189 - - 184 - - 176 - - 173 - - 174 - - 175 - - 174 - - 175 - - 177 - - 176 - - 175 - - 177 - - 176 - - 179 - - 178 - - 182 - - 197 - - 198 - - 204 - - 203 - - 206 - - 201 - - 193 - - 193 - - 198 - - 207 - - 209 - - 208 - - 205 - - 206 - - 203 - - 194 - - 184 - - 181 - - 173 - - 160 - - 158 - - 159 - - 159 - - 152 - - 155 - - 160 - - 163 - - 160 - - 155 - - 158 - - 163 - - 160 - - 157 - - 159 - - 165 - - 168 - - 173 - - 177 - - 179 - - 182 - - 188 - - 198 - - 205 - - 209 - - 210 - - 219 - - 235 - - 249 - - 259 - - 254 - - 278 - - 291 - - 254 - - 168 - - 151 - - 142 - - 137 - - 136 - - 131 - - 138 - - 140 - - 142 - - 143 - - 149 - - 148 - - 158 - - 160 - - 165 - - 181 - - 191 - - 212 - - 230 - - 231 - - 231 - - 227 - - 230 - - 230 - - 228 - - 223 - - 220 - - 220 - - 211 - - 207 - - 214 - - 211 - - 206 - - 209 - - 203 - - 205 - - 206 - - 205 - - 206 - - 206 - - 194 - - 184 - - 194 - - 203 - - 213 - - 218 - - 264 - - 285 - - 274 - - 277 - - 274 - - 270 - - 263 - - 269 - - 268 - - 267 - - 269 - - 271 - - 267 - - 268 - - 268 - - 274 - - 278 - - 278 - - 275 - - 280 - - 281 - - 277 - - 280 - - 276 - - 274 - - 276 - - 278 - - 279 - - 279 - - 280 - - 281 - - 281 - - 277 - - 276 - - 278 - - 286 - - 283 - - 281 - - 256 - - 254 - - 253 - - 251 - - 240 - - 212 - - 207 - - 201 - - 194 - - 184 - - 171 - - 176 - - 177 - - 201 - - 221 - - 240 - - 244 - - 239 - - 234 - - 230 - - 227 - - 233 - - 244 - - 247 - - 248 - - 244 - - 237 - - 238 - - 232 - - 245 - - 245 - - 249 - - 264 - - 261 - - 272 - - 279 - - 278 - - 270 - - 261 - - 251 - - 245 - - 241 - - 212 - - 202 - - 184 - - 184 - - 170 - - 138 - - 130 - - 96 - - 146 - - 90 - - 353 - - 15 - - 347 - - 326 - - 327 - - 314 - - 302 - - 283 - - 277 - - 274 - - 270 - - 268 - - 277 - - 265 - - 276 - - 275 - - 271 - - 279 - - 281 - - 279 - - 277 - - 283 - - 279 - - 281 - - 275 - - 270 - - 270 - - 262 - - 262 - - 260 - - 253 - - 253 - - 249 - - 250 - - 251 - - 246 - - 248 - - 245 - - 251 - - 267 - - 281 - - 282 - - 283 - - 290 - - 294 - - 294 - - 290 - - 292 - - 295 - - 298 - - 298 - - 296 - - 294 - - 297 - - 295 - - 292 - - 284 - - 281 - - 272 - - 261 - - 249 - - 235 - - 217 - - 193 - - 179 - - 190 - - 226 - - 227 - - 229 - - 237 - - 242 - - 240 - - 251 - - 248 - - 246 - - 247 - - 252 - - 254 - - 258 - - 258 - - 259 - - 260 - - 262 - - 264 - - 265 - - 268 - - 283 - - 290 - - 295 - - 300 - - 304 - - 299 - - 299 - - 303 - - 302 - - 301 - - 301 - - 303 - - 304 - - 308 - - 312 - - 311 - - 307 - - 310 - - 317 - - 321 - - 320 - - 319 - - 323 - - 321 - - 321 - - 319 - - 321 - - 21 - - 19 - - 352 - - 351 - - 357 - - 360 - - 8 - - 15 - - 22 - - 360 - - 252 - - 236 - - 218 - - 240 - - 230 - - 220 - - 232 - - 266 - - 285 - - 233 - - 183 - - 188 - - 161 - - 153 - - 163 - - 167 - - 160 - - 159 - - 146 - - 139 - - 132 - - 122 - - 107 - - 113 - - 105 - - 102 - - 112 - - 99 - - 90 - - 95 - - 63 - - 135 - - 250 - - 275 - - 273 - - 267 - - 238 - - 232 - - 235 - - 237 - - 218 - - 205 - - 194 - - 191 - - 195 - - 196 - - 196 - - 207 - - 195 - - 191 - - 201 - - 217 - - 231 - - 237 - - 230 - - 221 - - 220 - - 224 - - 227 - - 231 - - 225 - - 228 - - 230 - - 227 - - 240 - - 244 - - 244 - - 245 - - 245 - - 248 - - 251 - - 264 - - 264 - - 258 - - 276 - - 268 - - 272 - - 265 - - 261 - - 266 - - 272 - - 274 - - 274 - - 279 - - 278 - - 281 - - 280 - - 281 - - 283 - - 281 - - 278 - - 282 - - 287 - - 291 - - 295 - - 295 - - 295 - - 295 - - 293 - - 295 - - 295 - - 293 - - 282 - - 255 - - 245 - - 243 - - 235 - - 224 - - 221 - - 214 - - 187 - - 178 - - 173 - - 167 - - 167 - - 161 - - 157 - - 158 - - 160 - - 165 - - 172 - - 171 - - 209 - - 222 - - 236 - - 262 - - 257 - - 251 - - 253 - - 252 - - 270 - - 272 - - 266 - - 263 - - 272 - - 267 - - 267 - - 269 - - 273 - - 272 - - 272 - - 263 - - 273 - - 267 - - 268 - - 264 - - 273 - - 274 - - 281 - - 279 - - 277 - - 278 - - 287 - - 290 - - 291 - - 297 - - 295 - - 295 - - 296 - - 297 - - 295 - - 298 - - 297 - - 303 - - 300 - - 302 - - 306 - - 311 - - 312 - - 314 - - 316 - - 315 - - 316 - - 314 - - 309 - - 308 - - 306 - - 307 - - 308 - - 306 - - 306 - - 309 - - 311 - - 313 - - 315 - - 316 - - 317 - - 317 - - 330 - - 326 - - 327 - - 322 - - 318 - - 314 - - 324 - - 326 - - 325 - - 324 - - 323 - - 327 - - 318 - - 302 - - 295 - - 283 - - 273 - - 274 - - 261 - - 268 - - 272 - - 280 - - 277 - - 279 - - 283 - - 278 - - 284 - - 286 - - 288 - - 288 - - 285 - - 287 - - 292 - - 297 - - 289 - - 283 - - 282 - - 286 - - 289 - - 290 - - 288 - - 288 - - 295 - - 294 - - 292 - - 295 - - 297 - - 292 - - 283 - - 288 - - 8 - - 61 - - 78 - - 90 - - 98 - - 100 - - 98 - - 97 - - 96 - - 88 - - 84 - - 87 - - 91 - - 93 - - 95 - - 97 - - 100 - - 97 - - 97 - - 98 - - 96 - - 92 - - 90 - - 89 - - 90 - - 84 - - 83 - - 88 - - 87 - - 87 - - 85 - - 84 - - 82 - - 81 - - 81 - - 79 - - 78 - - 77 - - 78 - - 75 - - 75 - - 73 - - 72 - - 73 - - 73 - - 73 - - 74 - - 74 - - 76 - - 79 - - 80 - - 83 - - 78 - - 75 - - 81 - - 81 - - 80 - - 81 - - 83 - - 83 - - 83 - - 81 - - 83 - - 82 - - 77 - - 77 - - 75 - - 83 - - 83 - - 82 - - 82 - - 86 - - 87 - - 90 - - 93 - - 97 - - 88 - - 87 - - 90 - - 96 - - 102 - - 104 - - 110 - - 114 - - 119 - - 123 - - 126 - - 128 - - 117 - - 118 - - 118 - - 121 - - 123 - - 127 - - 121 - - 129 - - 137 - - 146 - - 145 - - 145 - - 146 - - 147 - - 162 - - 224 - - 242 - - 244 - - 247 - - 252 - - 249 - - 244 - - 243 - - 248 - - 258 - - 257 - - 258 - - 262 - - 264 - - 270 - - 274 - - 280 - - 283 - - 285 - - 288 - - 293 - - 297 - - 302 - - 302 - - 304 - - 309 - - 326 - - 350 - - 6 - - 23 - - 70 - - 112 - - 104 - - 86 - - 88 - - 80 - - 86 - - 89 - - 104 - - 103 - - 100 - - 100 - - 93 - - 91 - - 94 - - 90 - - 89 - - 90 - - 88 - - 90 - - 93 - - 93 - - 92 - - 90 - - 89 - - 88 - - 88 - - 88 - - 91 - - 98 - - 100 - - 100 - - 102 - - 99 - - 105 - - 110 - - 117 - - 120 - - 126 - - 129 - - 116 - - 115 - - 113 - - 97 - - 96 - - 94 - - 91 - - 86 - - 86 - - 82 - - 80 - - 76 - - 72 - - 71 - - 70 - - 69 - - 69 - - 70 - - 70 - - 71 - - 76 - - 78 - - 79 - - 80 - - 76 - - 70 - - 62 - - 61 - - 62 - - 62 - - 63 - - 67 - - 71 - - 69 - - 68 - - 69 - - 67 - - 63 - - 60 - - 60 - - 61 - - 66 - - 70 - - 78 - - 79 - - 89 - - 100 - - 93 - - 79 - - 85 - - 83 - - 82 - - 80 - - 83 - - 85 - - 84 - - 84 - - 84 - - 83 - - 82 - - 78 - - 77 - - 80 - - 88 - - 94 - - 91 - - 95 - - 97 - - 97 - - 106 - - 111 - - 107 - - 111 - - 98 - - 100 - - 103 - - 109 - - 107 - - 110 - - 109 - - 108 - - 108 - - 104 - - 109 - - 116 - - 117 - - 116 - - 111 - - 111 - - 112 - - 107 - - 95 - - 98 - - 112 - - 143 - - 192 - - 189 - - 206 - - 209 - - 215 - - 202 - - 191 - - 192 - - 191 - - 196 - - 197 - - 194 - - 194 - - 198 - - 203 - - 208 - - 196 - - 200 - - 198 - - 206 - - 211 - - 217 - - 219 - - 221 - - 224 - - 225 - - 226 - - 233 - - 233 - - 254 - - 4 - - 21 - - 23 - - 28 - - 32 - - 37 - - 37 - - 35 - - 38 - - 35 - - 34 - - 32 - - 31 - - 25 - - 20 - - 13 - - 5 - - 357 - - 352 - - 355 - - 347 - - 345 - - 341 - - 336 - - 343 - - 330 - - 339 - - 341 - - 341 - - 345 - - 2 - - 62 - - 95 - - 114 - - 120 - - 130 - - 129 - - 126 - - 119 - - 119 - - 115 - - 129 - - 120 - - 132 - - 132 - - 134 - - 139 - - 145 - - 151 - - 162 - - 167 - - 168 - - 175 - - 176 - - 173 - - 171 - - 174 - - 177 - - 165 - - 157 - - 146 - - 138 - - 128 - - 128 - - 121 - - 126 - - 122 - - 127 - - 131 - - 134 - - 132 - - 132 - - 139 - - 134 - - 138 - - 139 - - 141 - - 139 - - 138 - - 139 - - 138 - - 138 - - 140 - - 139 - - 134 - - 137 - - 137 - - 138 - - 138 - - 145 - - 150 - - 147 - - 160 - - 167 - - 170 - - 176 - - 172 - - 176 - - 180 - - 186 - - 188 - - 186 - - 183 - - 183 - - 178 - - 186 - - 191 - - 189 - - 184 - - 182 - - 177 - - 175 - - 173 - - 171 - - 169 - - 153 - - 158 - - 149 - - 151 - - 143 - - 141 - - 138 - - 131 - - 132 - - 126 - - 125 - - 121 - - 114 - - 108 - - 107 - - 108 - - 104 - - 107 - - 114 - - 123 - - 130 - - 130 - - 129 - - 142 - - 159 - - 153 - - 151 - - 149 - - 147 - - 153 - - 167 - - 171 - - 169 - - 171 - - 179 - - 182 - - 194 - - 194 - - 196 - - 231 - - 245 - - 247 - - 250 - - 253 - - 258 - - 257 - - 258 - - 249 - - 253 - - 258 - - 253 - - 232 - - 221 - - 226 - - 224 - - 220 - - 215 - - 212 - - 219 - - 221 - - 225 - - 214 - - 229 - - 245 - - 245 - - 242 - - 240 - - 235 - - 227 - - 227 - - 237 - - 236 - - 244 - - 232 - - 226 - - 226 - - 223 - - 220 - - 212 - - 206 - - 204 - - 204 - - 212 - - 209 - - 214 - - 218 - - 215 - - 223 - - 249 - - 253 - - 264 - - 263 - - 261 - - 259 - - 249 - - 248 - - 243 - - 232 - - 219 - - 196 - - 177 - - 172 - - 167 - - 170 - - 175 - - 183 - - 198 - - 241 - - 262 - - 271 - - 270 - - 275 - - 298 - - 339 - - 153 - - 217 - - 189 - - 225 - - 166 - - 183 - - 186 - - 200 - - 197 - - 185 - - 184 - - 168 - - 155 - - 153 - - 146 - - 151 - - 139 - - 143 - - 147 - - 152 - - 149 - - 151 - - 159 - - 165 - - 189 - - 200 - - 186 - - 191 - - 192 - - 181 - - 167 - - 176 - - 178 - - 159 - - 163 - - 166 - - 166 - - 164 - - 158 - - 150 - - 149 - - 143 - - 139 - - 132 - - 118 - - 109 - - 99 - - 81 - - 70 - - 74 - - 84 - - 82 - - 63 - - 50 - - 54 - - 44 - - 40 - - 49 - - 51 - - 51 - - 58 - - 59 - - 54 - - 56 - - 62 - - 64 - - 84 - - 100 - - 102 - - 98 - - 110 - - 120 - - 120 - - 114 - - 114 - - 106 - - 100 - - 99 - - 98 - - 83 - - 88 - - 88 - - 94 - - 110 - - 122 - - 135 - - 121 - - 113 - - 133 - - 153 - - 131 - - 108 - - 107 - - 111 - - 106 - - 111 - - 111 - - 127 - - 118 - - 113 - - 121 - - 122 - - 128 - - 124 - - 110 - - 118 - - 115 - - 113 - - 105 - - 103 - - 103 - - 105 - - 105 - - 102 - - 103 - - 96 - - 83 - - 76 - - 67 - - 56 - - 50 - - 51 - - 50 - - 43 - - 35 - - 33 - - 38 - - 40 - - 37 - - 38 - - 36 - - 34 - - 30 - - 30 - - 30 - - 35 - - 35 - - 29 - - 29 - - 29 - - 33 - - 35 - - 41 - - 50 - - 53 - - 49 - - 57 - - 80 - - 90 - - 76 - - 93 - - 94 - - 89 - - 85 - - 77 - - 73 - - 67 - - 61 - - 52 - - 46 - - 41 - - 33 - - 29 - - 23 - - 18 - - 19 - - 22 - - 25 - - 18 - - 22 - - 32 - - 39 - - 35 - - 28 - - 34 - - 33 - - 23 - - 21 - - 18 - - 24 - - 24 - - 24 - - 28 - - 30 - - 33 - - 38 - - 37 - - 38 - - 35 - - 33 - - 30 - - 29 - - 32 - - 35 - - 43 - - 43 - - 48 - - 53 - - 58 - - 61 - - 62 - - 56 - - 52 - - 58 - - 71 - - 81 - - 82 - - 87 - - 97 - - 111 - - 99 - - 105 - - 116 - - 123 - - 134 - - 138 - - 138 - - 143 - - 143 - - 142 - - 139 - - 133 - - 137 - - 131 - - 127 - - 129 - - 132 - - 133 - - 134 - - 138 - - 132 - - 129 - - 128 - - 124 - - 128 - - 126 - - 128 - - 124 - - 124 - - 123 - - 119 - - 115 - - 115 - - 112 - - 118 - - 109 - - 116 - - 116 - - 106 - - 99 - - 107 - - 104 - - 100 - - 94 - - 97 - - 92 - - 81 - - 75 - - 102 - - 104 - - 109 - - 105 - - 102 - - 105 - - 103 - - 103 - - 96 - - 91 - - 90 - - 98 - - 93 - - 92 - - 91 - - 87 - - 85 - - 84 - - 76 - - 71 - - 69 - - 66 - - 62 - - 60 - - 56 - - 47 - - 44 - - 38 - - 40 - - 44 - - 42 - - 48 - - 47 - - 47 - - 52 - - 49 - - 56 - - 57 - - 62 - - 71 - - 77 - - 86 - - 90 - - 102 - - 116 - - 136 - - 159 - - 177 - - 183 - - 183 - - 186 - - 193 - - 197 - - 192 - - 189 - - 194 - - 202 - - 207 - - 212 - - 220 - - 226 - - 226 - - 221 - - 224 - - 232 - - 245 - - 256 - - 266 - - 269 - - 270 - - 270 - - 277 - - 272 - - 274 - - 278 - - 278 - - 279 - - 280 - - 278 - - 272 - - 285 - - 284 - - 283 - - 288 - - 292 - - 293 - - 292 - - 296 - - 299 - - 302 - - 311 - - 311 - - 309 - - 309 - - 312 - - 314 - - 313 - - 317 - - 314 - - 317 - - 314 - - 302 - - 302 - - 306 - - 306 - - 307 - - 313 - - 325 - - 356 - - 8 - - 12 - - 13 - - 2 - - 358 - - 347 - - 337 - - 329 - - 319 - - 314 - - 316 - - 327 - - 325 - - 360 - - 3 - - 1 - - 1 - - 353 - - 1 - - 15 - - 18 - - 19 - - 20 - - 11 - - 349 - - 342 - - 3 - - 24 - - 20 - - 25 - - 23 - - 14 - - 19 - - 53 - - 90 - - 146 - - 245 - - 257 - - 255 - - 251 - - 240 - - 231 - - 215 - - 205 - - 204 - - 198 - - 200 - - 201 - - 200 - - 202 - - 198 - - 198 - - 189 - - 175 - - 160 - - 138 - - 128 - - 124 - - 117 - - 109 - - 108 - - 107 - - 99 - - 92 - - 88 - - 88 - - 88 - - 85 - - 76 - - 68 - - 71 - - 75 - - 74 - - 70 - - 68 - - 66 - - 67 - - 64 - - 60 - - 55 - - 51 - - 48 - - 52 - - 50 - - 54 - - 55 - - 53 - - 54 - - 53 - - 54 - - 56 - - 46 - - 48 - - 55 - - 52 - - 75 - - 78 - - 79 - - 104 - - 104 - - 190 - - 151 - - 99 - - 62 - - 67 - - 87 - - 72 - - 79 - - 68 - - 61 - - 56 - - 47 - - 36 - - 35 - - 41 - - 42 - - 38 - - 32 - - 15 - - 11 - - 356 - - 303 - - 263 - - 270 - - 284 - - 339 - - 357 - - 26 - - 37 - - 54 - - 65 - - 70 - - 61 - - 43 - - 31 - - 26 - - 40 - - 49 - - 51 - - 56 - - 56 - - 49 - - 47 - - 52 - - 54 - - 55 - - 59 - - 61 - - 54 - - 48 - - 49 - - 51 - - 47 - - 42 - - 48 - - 39 - - 35 - - 34 - - 27 - - 23 - - 28 - - 34 - - 38 - - 41 - - 43 - - 39 - - 34 - - 24 - - 27 - - 26 - - 27 - - 33 - - 38 - - 42 - - 43 - - 46 - - 46 - - 45 - - 46 - - 57 - - 63 - - 75 - - 87 - - 105 - - 123 - - 153 - - 175 - - 213 - - 235 - - 234 - - 232 - - 90 - - 45 - - 63 - - 360 - - 207 - - 219 - - 227 - - 224 - - 209 - - 196 - - 190 - - 187 - - 176 - - 169 - - 167 - - 167 - - 173 - - 181 - - 189 - - 226 - - 249 - - 238 - - 252 - - 250 - - 228 - - 230 - - 214 - - 187 - - 188 - - 190 - - 185 - - 182 - - 182 - - 181 - - 181 - - 177 - - 171 - - 169 - - 162 - - 148 - - 141 - - 134 - - 130 - - 124 - - 120 - - 122 - - 119 - - 112 - - 107 - - 103 - - 102 - - 99 - - 89 - - 87 - - 86 - - 88 - - 91 - - 93 - - 90 - - 87 - - 85 - - 82 - - 81 - - 86 - - 88 - - 85 - - 86 - - 87 - - 87 - - 85 - - 83 - - 83 - - 83 - - 83 - - 78 - - 73 - - 75 - - 76 - - 77 - - 79 - - 79 - - 77 - - 75 - - 74 - - 69 - - 65 - - 67 - - 66 - - 68 - - 70 - - 68 - - 66 - - 66 - - 63 - - 61 - - 60 - - 63 - - 59 - - 57 - - 56 - - 54 - - 54 - - 56 - - 56 - - 55 - - 55 - - 54 - - 54 - - 63 - - 57 - - 47 - - 45 - - 46 - - 49 - - 55 - - 62 - - 66 - - 69 - - 72 - - 74 - - 81 - - 89 - - 99 - - 112 - - 114 - - 99 - - 96 - - 104 - - 119 - - 115 - - 127 - - 128 - - 121 - - 117 - - 110 - - 108 - - 109 - - 111 - - 108 - - 111 - - 114 - - 116 - - 120 - - 117 - - 106 - - 108 - - 114 - - 116 - - 117 - - 121 - - 125 - - 128 - - 133 - - 134 - - 135 - - 138 - - 139 - - 137 - - 138 - - 133 - - 138 - - 143 - - 144 - - 150 - - 159 - - 163 - - 160 - - 167 - - 156 - - 150 - - 143 - - 134 - - 131 - - 130 - - 125 - - 121 - - 122 - - 119 - - 112 - - 109 - - 101 - - 99 - - 100 - - 101 - - 104 - - 104 - - 102 - - 104 - - 107 - - 102 - - 100 - - 101 - - 107 - - 104 - - 108 - - 107 - - 108 - - 108 - - 114 - - 127 - - 122 - - 119 - - 118 - - 115 - - 112 - - 110 - - 107 - - 96 - - 85 - - 78 - - 72 - - 68 - - 61 - - 54 - - 50 - - 47 - - 47 - - 42 - - 39 - - 41 - - 43 - - 46 - - 47 - - 43 - - 44 - - 44 - - 40 - - 46 - - 57 - - 59 - - 67 - - 74 - - 73 - - 76 - - 83 - - 80 - - 77 - - 84 - - 80 - - 81 - - 78 - - 78 - - 82 - - 86 - - 84 - - 85 - - 83 - - 79 - - 79 - - 79 - - 75 - - 73 - - 72 - - 70 - - 69 - - 70 - - 69 - - 68 - - 65 - - 65 - - 60 - - 57 - - 58 - - 55 - - 59 - - 60 - - 59 - - 58 - - 56 - - 55 - - 57 - - 57 - - 60 - - 63 - - 64 - - 67 - - 67 - - 68 - - 71 - - 69 - - 66 - - 55 - - 41 - - 323 - - 270 - - 264 - - 278 - - 315 - - 174 - - 172 - - 176 - - 179 - - 175 - - 175 - - 180 - - 191 - - 198 - - 201 - - 208 - - 213 - - 213 - - 217 - - 230 - - 260 - - 275 - - 272 - - 271 - - 267 - - 268 - - 269 - - 272 - - 272 - - 264 - - 269 - - 271 - - 271 - - 265 - - 261 - - 263 - - 259 - - 260 - - 258 - - 258 - - 256 - - 250 - - 247 - - 247 - - 245 - - 247 - - 248 - - 250 - - 250 - - 252 - - 254 - - 254 - - 255 - - 246 - - 245 - - 250 - - 257 - - 262 - - 262 - - 264 - - 266 - - 269 - - 269 - - 269 - - 267 - - 257 - - 253 - - 251 - - 251 - - 250 - - 249 - - 244 - - 241 - - 241 - - 246 - - 247 - - 244 - - 245 - - 248 - - 250 - - 251 - - 253 - - 253 - - 253 - - 252 - - 252 - - 254 - - 254 - - 254 - - 252 - - 254 - - 259 - - 260 - - 260 - - 262 - - 257 - - 251 - - 242 - - 242 - - 240 - - 239 - - 232 - - 229 - - 224 - - 230 - - 237 - - 236 - - 238 - - 239 - - 247 - - 262 - - 268 - - 263 - - 268 - - 269 - - 263 - - 269 - - 269 - - 273 - - 278 - - 268 - - 265 - - 259 - - 261 - - 266 - - 270 - - 278 - - 279 - - 273 - - 264 - - 261 - - 257 - - 258 - - 258 - - 253 - - 254 - - 259 - - 268 - - 271 - - 270 - - 272 - - 268 - - 272 - - 280 - - 284 - - 291 - - 292 - - 295 - - 297 - - 295 - - 292 - - 287 - - 286 - - 276 - - 269 - - 281 - - 288 - - 291 - - 285 - - 280 - - 268 - - 242 - - 231 - - 215 - - 232 - - 246 - - 250 - - 257 - - 264 - - 271 - - 286 - - 289 - - 293 - - 292 - - 291 - - 284 - - 289 - - 305 - - 309 - - 311 - - 310 - - 309 - - 311 - - 311 - - 309 - - 309 - - 301 - - 309 - - 314 - - 312 - - 310 - - 314 - - 314 - - 314 - - 309 - - 306 - - 307 - - 307 - - 309 - - 308 - - 317 - - 315 - - 315 - - 317 - - 318 - - 317 - - 314 - - 308 - - 299 - - 300 - - 300 - - 301 - - 300 - - 309 - - 309 - - 310 - - 305 - - 308 - - 311 - - 310 - - 312 - - 302 - - 304 - - 306 - - 305 - - 304 - - 299 - - 293 - - 278 - - 259 - - 255 - - 241 - - 218 - - 195 - - 169 - - 149 - - 139 - - 137 - - 145 - - 162 - - 198 - - 244 - - 250 - - 250 - - 232 - - 249 - - 249 - - 258 - - 263 - - 275 - - 275 - - 270 - - 270 - - 265 - - 262 - - 262 - - 269 - - 279 - - 273 - - 270 - - 264 - - 271 - - 275 - - 277 - - 279 - - 280 - - 282 - - 285 - - 283 - - 282 - - 280 - - 275 - - 272 - - 274 - - 269 - - 259 - - 234 - - 228 - - 185 - - 143 - - 141 - - 243 - - 256 - - 259 - - 296 - - 338 - - 316 - - 312 - - 303 - - 298 - - 295 - - 295 - - 293 - - 284 - - 286 - - 284 - - 289 - - 295 - - 299 - - 301 - - 297 - - 301 - - 305 - - 299 - - 296 - - 304 - - 301 - - 299 - - 297 - - 297 - - 300 - - 306 - - 326 - - 333 - - 315 - - 159 - - 166 - - 118 - - 124 - - 126 - - 127 - - 123 - - 121 - - 122 - - 129 - - 137 - - 141 - - 157 - - 181 - - 228 - - 235 - - 225 - - 220 - - 211 - - 217 - - 232 - - 233 - - 236 - - 241 - - 254 - - 248 - - 240 - - 240 - - 232 - - 229 - - 228 - - 221 - - 221 - - 216 - - 231 - - 241 - - 245 - - 242 - - 236 - - 232 - - 229 - - 234 - - 239 - - 244 - - 245 - - 242 - - 244 - - 243 - - 238 - - 235 - - 233 - - 232 - - 267 - - 277 - - 266 - - 260 - - 248 - - 230 - - 243 - - 255 - - 257 - - 258 - - 261 - - 258 - - 254 - - 255 - - 254 - - 252 - - 248 - - 250 - - 239 - - 246 - - 245 - - 245 - - 251 - - 251 - - 253 - - 254 - - 256 - - 258 - - 255 - - 246 - - 230 - - 224 - - 194 - - 159 - - 140 - - 140 - - 142 - - 144 - - 145 - - 141 - - 135 - - 137 - - 132 - - 132 - - 129 - - 127 - - 126 - - 125 - - 128 - - 127 - - 132 - - 137 - - 142 - - 157 - - 162 + - 54 + - 42 + - 71 + - 67 + - 66 + - 65 + - 69 + - 76 + - 84 + - 100 + - 165 + - 234 + - 235 + - 239 + - 244 + - 238 + - 236 + - 237 + - 236 + - 237 + - 235 + - 236 + - 232 + - 227 + - 217 + - 206 + - 201 + - 196 + - 189 + - 183 + - 185 + - 196 + - 223 + - 235 + - 240 + - 235 + - 242 + - 239 + - 233 + - 235 + - 242 + - 234 + - 222 + - 250 + - 264 + - 265 + - 277 + - 277 + - 275 + - 274 + - 277 + - 282 + - 281 + - 282 + - 278 + - 275 + - 271 + - 267 + - 263 + - 258 + - 250 + - 243 + - 233 + - 226 + - 214 + - 198 + - 177 + - 170 + - 167 + - 166 + - 163 + - 166 + - 168 + - 169 + - 163 + - 165 + - 169 + - 166 + - 168 + - 177 + - 188 + - 206 + - 227 + - 243 + - 244 + - 245 + - 242 + - 242 + - 238 + - 241 + - 247 + - 252 + - 255 + - 260 + - 259 + - 266 + - 274 + - 283 + - 291 + - 347 + - 2 + - 10 + - 356 + - 349 + - 340 + - 339 + - 335 + - 340 + - 346 + - 329 + - 347 + - 351 + - 351 + - 22 + - 115 + - 137 + - 142 + - 141 + - 134 + - 139 + - 141 + - 138 + - 138 + - 137 + - 140 + - 144 + - 152 + - 157 + - 167 + - 190 + - 218 + - 268 + - 252 + - 254 + - 252 + - 247 + - 246 + - 243 + - 241 + - 241 + - 240 + - 241 + - 240 + - 238 + - 237 + - 228 + - 222 + - 202 + - 191 + - 194 + - 188 + - 175 + - 167 + - 172 + - 185 + - 197 + - 209 + - 206 + - 201 + - 192 + - 181 + - 174 + - 175 + - 175 + - 175 + - 174 + - 173 + - 173 + - 174 + - 178 + - 178 + - 180 + - 176 + - 187 + - 203 + - 208 + - 210 + - 205 + - 193 + - 185 + - 192 + - 190 + - 198 + - 201 + - 192 + - 183 + - 179 + - 184 + - 179 + - 177 + - 174 + - 171 + - 169 + - 168 + - 160 + - 159 + - 153 + - 155 + - 159 + - 162 + - 163 + - 162 + - 187 + - 206 + - 202 + - 202 + - 209 + - 213 + - 219 + - 214 + - 212 + - 212 + - 214 + - 218 + - 230 + - 239 + - 242 + - 245 + - 245 + - 263 + - 265 + - 265 + - 250 + - 242 + - 238 + - 234 + - 230 + - 222 + - 214 + - 217 + - 213 + - 216 + - 210 + - 203 + - 196 + - 188 + - 183 + - 180 + - 177 + - 172 + - 170 + - 170 + - 175 + - 186 + - 198 + - 217 + - 241 + - 249 + - 245 + - 243 + - 239 + - 241 + - 238 + - 236 + - 235 + - 234 + - 230 + - 229 + - 226 + - 226 + - 227 + - 224 + - 219 + - 214 + - 206 + - 198 + - 209 + - 217 + - 238 + - 247 + - 240 + - 229 + - 219 + - 204 + - 186 + - 182 + - 175 + - 131 + - 258 + - 247 + - 226 + - 213 + - 206 + - 194 + - 196 + - 187 + - 174 + - 177 + - 200 + - 236 + - 241 + - 228 + - 226 + - 228 + - 222 + - 211 + - 210 + - 208 + - 207 + - 206 + - 206 + - 215 + - 219 + - 233 + - 250 + - 253 + - 246 + - 244 + - 265 + - 281 + - 292 + - 295 + - 291 + - 283 + - 279 + - 276 + - 271 + - 271 + - 265 + - 259 + - 257 + - 243 + - 238 + - 228 + - 207 + - 190 + - 176 + - 163 + - 157 + - 150 + - 144 + - 153 + - 171 + - 235 + - 246 + - 240 + - 240 + - 240 + - 235 + - 232 + - 229 + - 227 + - 228 + - 230 + - 230 + - 222 + - 221 + - 220 + - 214 + - 208 + - 210 + - 244 + - 249 + - 262 + - 275 + - 278 + - 277 + - 273 + - 278 + - 275 + - 272 + - 269 + - 260 + - 256 + - 250 + - 248 + - 241 + - 245 + - 240 + - 189 + - 170 + - 174 + - 175 + - 167 + - 162 + - 150 + - 151 + - 146 + - 137 + - 134 + - 128 + - 122 + - 113 + - 133 + - 146 + - 149 + - 142 + - 143 + - 140 + - 139 + - 136 + - 132 + - 133 + - 142 + - 150 + - 169 + - 190 + - 273 + - 289 + - 284 + - 284 + - 270 + - 252 + - 245 + - 239 + - 239 + - 236 + - 229 + - 231 + - 225 + - 229 + - 255 + - 235 + - 254 + - 252 + - 242 + - 240 + - 239 + - 227 + - 205 + - 198 + - 194 + - 195 + - 176 + - 171 + - 171 + - 168 + - 162 + - 159 + - 154 + - 150 + - 146 + - 140 + - 129 + - 121 + - 99 + - 97 + - 83 + - 64 + - 56 + - 46 + - 27 + - 14 + - 357 + - 348 + - 351 + - 356 + - 322 + - 329 + - 350 + - 39 + - 90 + - 188 + - 203 + - 219 + - 236 + - 255 + - 270 + - 252 + - 250 + - 249 + - 242 + - 216 + - 104 + - 98 + - 84 + - 59 + - 45 + - 44 + - 46 + - 58 + - 34 + - 17 + - 13 + - 18 + - 15 + - 15 + - 19 + - 28 + - 27 + - 11 + - 11 + - 22 + - 33 + - 37 + - 40 + - 50 + - 56 + - 66 + - 72 + - 73 + - 75 + - 61 + - 60 + - 80 + - 87 + - 83 + - 61 + - 64 + - 78 + - 82 + - 82 + - 76 + - 48 + - 46 + - 58 + - 63 + - 57 + - 58 + - 64 + - 62 + - 60 + - 70 + - 75 + - 75 + - 77 + - 86 + - 94 + - 113 + - 118 + - 117 + - 111 + - 108 + - 113 + - 114 + - 101 + - 103 + - 107 + - 111 + - 125 + - 131 + - 150 + - 129 + - 118 + - 109 + - 97 + - 115 + - 117 + - 124 + - 126 + - 141 + - 149 + - 149 + - 158 + - 153 + - 161 + - 177 + - 199 + - 209 + - 207 + - 213 + - 207 + - 199 + - 196 + - 196 + - 197 + - 199 + - 202 + - 209 + - 213 + - 212 + - 213 + - 217 + - 219 + - 220 + - 229 + - 224 + - 224 + - 226 + - 223 + - 223 + - 228 + - 233 + - 232 + - 231 + - 231 + - 230 + - 226 + - 224 + - 224 + - 226 + - 228 + - 227 + - 226 + - 225 + - 224 + - 225 + - 223 + - 223 + - 222 + - 213 + - 221 + - 222 + - 219 + - 218 + - 217 + - 220 + - 228 + - 256 + - 332 + - 320 + - 315 + - 316 + - 317 + - 317 + - 315 + - 315 + - 313 + - 321 + - 332 + - 344 + - 350 + - 3 + - 2 + - 17 + - 20 + - 25 + - 26 + - 33 + - 39 + - 42 + - 43 + - 39 + - 38 + - 38 + - 35 + - 40 + - 41 + - 42 + - 44 + - 46 + - 50 + - 52 + - 54 + - 68 + - 77 + - 63 + - 43 + - 37 + - 35 + - 54 + - 120 + - 176 + - 208 + - 218 + - 228 + - 230 + - 236 + - 234 + - 227 + - 226 + - 224 + - 217 + - 211 + - 220 + - 242 + - 252 + - 254 + - 253 + - 254 + - 259 + - 267 + - 270 + - 295 + - 296 + - 291 + - 293 + - 297 + - 288 + - 280 + - 282 + - 281 + - 278 + - 277 + - 272 + - 269 + - 269 + - 268 + - 266 + - 264 + - 249 + - 246 + - 246 + - 253 + - 256 + - 255 + - 250 + - 249 + - 245 + - 246 + - 242 + - 236 + - 239 + - 241 + - 243 + - 248 + - 255 + - 305 + - 282 + - 286 + - 287 + - 284 + - 288 + - 282 + - 281 + - 283 + - 290 + - 295 + - 298 + - 301 + - 306 + - 321 + - 317 + - 312 + - 316 + - 313 + - 311 + - 309 + - 312 + - 309 + - 311 + - 310 + - 306 + - 301 + - 294 + - 291 + - 280 + - 259 + - 238 + - 237 + - 238 + - 256 + - 270 + - 270 + - 268 + - 278 + - 285 + - 286 + - 289 + - 292 + - 287 + - 284 + - 288 + - 290 + - 288 + - 286 + - 283 + - 280 + - 273 + - 274 + - 279 + - 283 + - 286 + - 281 + - 275 + - 270 + - 275 + - 275 + - 278 + - 279 + - 281 + - 279 + - 278 + - 286 + - 309 + - 328 + - 335 + - 336 + - 335 + - 327 + - 319 + - 317 + - 318 + - 326 + - 338 + - 349 + - 352 + - 340 + - 339 + - 325 + - 323 + - 238 + - 195 + - 208 + - 229 + - 228 + - 214 + - 199 + - 188 + - 187 + - 190 + - 180 + - 171 + - 177 + - 252 + - 259 + - 257 + - 266 + - 271 + - 286 + - 295 + - 297 + - 301 + - 301 + - 302 + - 301 + - 302 + - 308 + - 317 + - 350 + - 359 + - 352 + - 354 + - 9 + - 12 + - 7 + - 14 + - 21 + - 49 + - 52 + - 47 + - 58 + - 69 + - 79 + - 89 + - 95 + - 101 + - 107 + - 118 + - 126 + - 129 + - 145 + - 145 + - 150 + - 152 + - 148 + - 152 + - 158 + - 168 + - 170 + - 169 + - 173 + - 174 + - 177 + - 181 + - 178 + - 180 + - 183 + - 196 + - 209 + - 257 + - 324 + - 337 + - 335 + - 345 + - 344 + - 344 + - 342 + - 345 + - 345 + - 335 + - 335 + - 334 + - 327 + - 322 + - 314 + - 323 + - 329 + - 318 + - 321 + - 316 + - 312 + - 305 + - 304 + - 312 + - 305 + - 299 + - 157 + - 153 + - 171 + - 180 + - 181 + - 179 + - 181 + - 194 + - 202 + - 199 + - 201 + - 205 + - 201 + - 196 + - 204 + - 210 + - 212 + - 208 + - 204 + - 204 + - 213 + - 221 + - 227 + - 237 + - 242 + - 233 + - 232 + - 229 + - 224 + - 220 + - 217 + - 218 + - 215 + - 214 + - 216 + - 221 + - 221 + - 214 + - 207 + - 206 + - 206 + - 205 + - 203 + - 201 + - 197 + - 196 + - 202 + - 208 + - 213 + - 210 + - 202 + - 198 + - 191 + - 188 + - 196 + - 196 + - 198 + - 201 + - 203 + - 203 + - 206 + - 206 + - 205 + - 210 + - 215 + - 219 + - 225 + - 233 + - 238 + - 242 + - 244 + - 256 + - 262 + - 266 + - 261 + - 261 + - 260 + - 257 + - 257 + - 261 + - 268 + - 276 + - 288 + - 286 + - 287 + - 288 + - 287 + - 286 + - 285 + - 294 + - 305 + - 302 + - 286 + - 251 + - 238 + - 240 + - 241 + - 233 + - 232 + - 236 + - 234 + - 238 + - 239 + - 248 + - 254 + - 259 + - 268 + - 270 + - 272 + - 274 + - 271 + - 274 + - 279 + - 280 + - 291 + - 289 + - 296 + - 303 + - 304 + - 306 + - 305 + - 304 + - 303 + - 290 + - 296 + - 302 + - 297 + - 298 + - 299 + - 298 + - 302 + - 303 + - 296 + - 295 + - 291 + - 285 + - 286 + - 280 + - 280 + - 277 + - 268 + - 264 + - 262 + - 258 + - 269 + - 263 + - 266 + - 266 + - 264 + - 263 + - 265 + - 275 + - 278 + - 280 + - 276 + - 274 + - 272 + - 268 + - 264 + - 264 + - 269 + - 274 + - 277 + - 279 + - 276 + - 282 + - 284 + - 276 + - 274 + - 278 + - 273 + - 268 + - 262 + - 257 + - 259 + - 262 + - 263 + - 262 + - 261 + - 257 + - 250 + - 215 + - 213 + - 205 + - 194 + - 199 + - 191 + - 196 + - 202 + - 194 + - 187 + - 189 + - 191 + - 215 + - 230 + - 213 + - 133 + - 136 + - 145 + - 152 + - 159 + - 165 + - 169 + - 172 + - 174 + - 164 + - 167 + - 171 + - 176 + - 182 + - 184 + - 187 + - 190 + - 188 + - 186 + - 193 + - 198 + - 184 + - 187 + - 193 + - 188 + - 189 + - 187 + - 189 + - 194 + - 190 + - 202 + - 207 + - 214 + - 216 + - 226 + - 234 + - 235 + - 243 + - 250 + - 249 + - 246 + - 243 + - 238 + - 239 + - 237 + - 228 + - 223 + - 229 + - 218 + - 219 + - 218 + - 221 + - 220 + - 217 + - 209 + - 196 + - 193 + - 201 + - 211 + - 224 + - 228 + - 228 + - 227 + - 224 + - 220 + - 226 + - 246 + - 253 + - 253 + - 261 + - 258 + - 261 + - 267 + - 273 + - 280 + - 282 + - 285 + - 287 + - 290 + - 289 + - 289 + - 291 + - 290 + - 286 + - 286 + - 285 + - 285 + - 283 + - 281 + - 288 + - 300 + - 303 + - 306 + - 314 + - 314 + - 314 + - 310 + - 309 + - 306 + - 309 + - 307 + - 309 + - 310 + - 311 + - 311 + - 320 + - 323 + - 329 + - 332 + - 329 + - 329 + - 328 + - 321 + - 309 + - 296 + - 296 + - 293 + - 283 + - 277 + - 269 + - 261 + - 262 + - 258 + - 251 + - 244 + - 243 + - 234 + - 238 + - 237 + - 246 + - 244 + - 247 + - 251 + - 250 + - 254 + - 260 + - 264 + - 266 + - 270 + - 277 + - 284 + - 288 + - 282 + - 284 + - 288 + - 289 + - 291 + - 288 + - 280 + - 281 + - 284 + - 286 + - 287 + - 290 + - 291 + - 292 + - 294 + - 294 + - 292 + - 293 + - 294 + - 298 + - 299 + - 307 + - 308 + - 303 + - 304 + - 302 + - 301 + - 293 + - 292 + - 281 + - 297 + - 294 + - 227 + - 202 + - 195 + - 174 + - 169 + - 159 + - 154 + - 159 + - 158 + - 163 + - 162 + - 156 + - 168 + - 175 + - 167 + - 149 + - 129 + - 128 + - 133 + - 140 + - 143 + - 152 + - 150 + - 150 + - 150 + - 156 + - 162 + - 154 + - 166 + - 187 + - 207 + - 229 + - 271 + - 297 + - 305 + - 306 + - 310 + - 316 + - 318 + - 315 + - 317 + - 314 + - 313 + - 313 + - 312 + - 310 + - 307 + - 297 + - 285 + - 271 + - 264 + - 250 + - 249 + - 243 + - 243 + - 242 + - 303 + - 306 + - 300 + - 299 + - 302 + - 311 + - 326 + - 335 + - 340 + - 345 + - 349 + - 355 + - 1 + - 2 + - 357 + - 4 + - 8 + - 11 + - 13 + - 11 + - 7 + - 12 + - 12 + - 13 + - 14 + - 11 + - 12 + - 11 + - 12 + - 15 + - 13 + - 13 + - 14 + - 14 + - 12 + - 10 + - 13 + - 20 + - 21 + - 19 + - 16 + - 19 + - 6 + - 15 + - 13 + - 14 + - 16 + - 12 + - 8 + - 6 + - 1 + - 360 + - 356 + - 1 + - 5 + - 17 + - 16 + - 15 + - 13 + - 7 + - 2 + - 355 + - 353 + - 352 + - 351 + - 349 + - 347 + - 348 + - 344 + - 333 + - 325 + - 317 + - 317 + - 313 + - 314 + - 310 + - 301 + - 296 + - 303 + - 320 + - 321 + - 335 + - 344 + - 344 + - 343 + - 351 + - 6 + - 22 + - 21 + - 16 + - 22 + - 30 + - 31 + - 29 + - 16 + - 2 + - 336 + - 315 + - 311 + - 299 + - 274 + - 247 + - 242 + - 253 + - 261 + - 270 + - 278 + - 278 + - 253 + - 246 + - 257 + - 254 + - 243 + - 242 + - 239 + - 226 + - 215 + - 216 + - 200 + - 166 + - 79 + - 47 + - 47 + - 45 + - 35 + - 9 + - 11 + - 11 + - 18 + - 11 + - 360 + - 2 + - 10 + - 20 + - 27 + - 39 + - 48 + - 49 + - 48 + - 55 + - 54 + - 51 + - 49 + - 37 + - 33 + - 26 + - 17 + - 4 + - 345 + - 322 + - 314 + - 311 + - 310 + - 316 + - 322 + - 327 + - 333 + - 331 + - 312 + - 307 + - 301 + - 297 + - 293 + - 290 + - 280 + - 277 + - 276 + - 279 + - 292 + - 309 + - 308 + - 289 + - 281 + - 287 + - 286 + - 286 + - 295 + - 301 + - 312 + - 316 + - 316 + - 317 + - 314 + - 312 + - 311 + - 312 + - 311 + - 313 + - 315 + - 318 + - 322 + - 325 + - 327 + - 330 + - 334 + - 339 + - 347 + - 352 + - 342 + - 340 + - 330 + - 321 + - 319 + - 325 + - 322 + - 321 + - 321 + - 324 + - 327 + - 327 + - 327 + - 329 + - 331 + - 335 + - 332 + - 327 + - 328 + - 333 + - 332 + - 329 + - 324 + - 320 + - 322 + - 317 + - 310 + - 315 + - 312 + - 307 + - 303 + - 309 + - 307 + - 299 + - 303 + - 303 + - 308 + - 316 + - 320 + - 313 + - 311 + - 314 + - 313 + - 315 + - 319 + - 323 + - 320 + - 316 + - 308 + - 296 + - 279 + - 252 + - 202 + - 167 + - 150 + - 154 + - 154 + - 158 + - 167 + - 165 + - 179 + - 192 + - 204 + - 202 + - 201 + - 256 + - 268 + - 278 + - 292 + - 308 + - 317 + - 325 + - 331 + - 329 + - 326 + - 325 + - 328 + - 328 + - 325 + - 323 + - 319 + - 306 + - 301 + - 302 + - 288 + - 290 + - 277 + - 273 + - 274 + - 278 + - 289 + - 292 + - 301 + - 56 + - 113 + - 166 + - 233 + - 225 + - 225 + - 233 + - 243 + - 251 + - 252 + - 258 + - 257 + - 250 + - 234 + - 210 + - 197 + - 208 + - 204 + - 206 + - 211 + - 209 + - 211 + - 207 + - 206 + - 208 + - 210 + - 230 + - 241 + - 243 + - 240 + - 244 + - 246 + - 253 + - 258 + - 243 + - 236 + - 234 + - 239 + - 253 + - 253 + - 230 + - 261 + - 343 + - 21 + - 28 + - 27 + - 31 + - 36 + - 27 + - 24 + - 23 + - 36 + - 38 + - 43 + - 48 + - 39 + - 25 + - 14 + - 14 + - 10 + - 4 + - 4 + - 3 + - 358 + - 352 + - 345 + - 341 + - 335 + - 330 + - 305 + - 293 + - 290 + - 270 + - 271 + - 271 + - 278 + - 297 + - 311 + - 306 + - 302 + - 300 + - 305 + - 305 + - 305 + - 308 + - 309 + - 310 + - 308 + - 310 + - 315 + - 316 + - 314 + - 316 + - 327 + - 291 + - 166 + - 162 + - 158 + - 167 + - 174 + - 166 + - 165 + - 154 + - 163 + - 157 + - 156 + - 155 + - 164 + - 197 + - 240 + - 236 + - 236 + - 226 + - 215 + - 205 + - 205 + - 207 + - 202 + - 194 + - 184 + - 196 + - 222 + - 227 + - 231 + - 227 + - 225 + - 224 + - 223 + - 228 + - 227 + - 230 + - 233 + - 234 + - 232 + - 230 + - 228 + - 239 + - 251 + - 323 + - 325 + - 327 + - 323 + - 319 + - 313 + - 309 + - 307 + - 305 + - 300 + - 292 + - 294 + - 295 + - 292 + - 301 + - 310 + - 314 + - 313 + - 311 + - 306 + - 304 + - 296 + - 290 + - 289 + - 286 + - 279 + - 277 + - 281 + - 276 + - 279 + - 276 + - 276 + - 280 + - 273 + - 268 + - 253 + - 267 + - 267 + - 262 + - 284 + - 297 + - 304 + - 304 + - 300 + - 299 + - 276 + - 353 + - 159 + - 172 + - 175 + - 155 + - 154 + - 153 + - 156 + - 154 + - 148 + - 154 + - 157 + - 152 + - 151 + - 154 + - 157 + - 160 + - 159 + - 160 + - 159 + - 164 + - 163 + - 162 + - 163 + - 155 + - 159 + - 167 + - 160 + - 161 + - 167 + - 172 + - 178 + - 179 + - 182 + - 190 + - 194 + - 190 + - 195 + - 192 + - 193 + - 200 + - 199 + - 197 + - 200 + - 197 + - 193 + - 203 + - 195 + - 200 + - 205 + - 208 + - 220 + - 228 + - 223 + - 223 + - 224 + - 224 + - 223 + - 238 + - 235 + - 262 + - 248 + - 245 + - 241 + - 223 + - 212 + - 202 + - 188 + - 186 + - 184 + - 173 + - 161 + - 144 + - 142 + - 143 + - 145 + - 144 + - 139 + - 142 + - 151 + - 155 + - 168 + - 189 + - 213 + - 219 + - 220 + - 224 + - 229 + - 217 + - 214 + - 212 + - 212 + - 222 + - 221 + - 232 + - 241 + - 241 + - 251 + - 258 + - 258 + - 258 + - 263 + - 280 + - 288 + - 284 + - 277 + - 283 + - 287 + - 281 + - 285 + - 288 + - 291 + - 288 + - 288 + - 290 + - 289 + - 283 + - 283 + - 285 + - 259 + - 243 + - 175 + - 178 + - 178 + - 170 + - 174 + - 172 + - 168 + - 163 + - 157 + - 155 + - 153 + - 160 + - 173 + - 190 + - 197 + - 206 + - 210 + - 212 + - 209 + - 208 + - 209 + - 213 + - 207 + - 199 + - 198 + - 199 + - 199 + - 198 + - 199 + - 202 + - 206 + - 208 + - 207 + - 206 + - 208 + - 212 + - 219 + - 227 + - 235 + - 240 + - 231 + - 225 + - 218 + - 215 + - 207 + - 204 + - 203 + - 195 + - 193 + - 193 + - 183 + - 200 + - 200 + - 201 + - 209 + - 213 + - 230 + - 236 + - 244 + - 239 + - 237 + - 237 + - 225 + - 220 + - 220 + - 218 + - 214 + - 215 + - 211 + - 207 + - 205 + - 195 + - 192 + - 181 + - 170 + - 154 + - 167 + - 193 + - 220 + - 242 + - 246 + - 242 + - 243 + - 247 + - 242 + - 238 + - 238 + - 236 + - 237 + - 232 + - 229 + - 224 + - 220 + - 218 + - 216 + - 225 + - 219 + - 216 + - 218 + - 232 + - 227 + - 220 + - 218 + - 228 + - 235 + - 234 + - 234 + - 236 + - 246 + - 248 + - 252 + - 267 + - 277 + - 284 + - 292 + - 302 + - 310 + - 301 + - 293 + - 291 + - 286 + - 289 + - 295 + - 304 + - 309 + - 318 + - 328 + - 331 + - 334 + - 334 + - 334 + - 327 + - 323 + - 324 + - 329 + - 333 + - 325 + - 323 + - 325 + - 326 + - 329 + - 331 + - 354 + - 47 + - 310 + - 277 + - 285 + - 314 + - 320 + - 321 + - 320 + - 313 + - 311 + - 311 + - 309 + - 309 + - 311 + - 314 + - 324 + - 330 + - 339 + - 356 + - 355 + - 354 + - 1 + - 352 + - 331 + - 296 + - 281 + - 297 + - 339 + - 57 + - 87 + - 108 + - 131 + - 153 + - 168 + - 191 + - 235 + - 240 + - 236 + - 231 + - 223 + - 220 + - 212 + - 201 + - 189 + - 192 + - 205 + - 205 + - 200 + - 198 + - 197 + - 204 + - 215 + - 211 + - 216 + - 216 + - 214 + - 215 + - 211 + - 212 + - 223 + - 203 + - 211 + - 215 + - 208 + - 199 + - 189 + - 180 + - 158 + - 151 + - 147 + - 150 + - 143 + - 145 + - 139 + - 127 + - 120 + - 122 + - 131 + - 136 + - 142 + - 152 + - 180 + - 212 + - 216 + - 217 + - 218 + - 220 + - 223 + - 231 + - 235 + - 240 + - 229 + - 230 + - 233 + - 243 + - 249 + - 258 + - 258 + - 272 + - 290 + - 295 + - 315 + - 342 + - 7 + - 22 + - 36 + - 58 + - 72 + - 72 + - 68 + - 58 + - 53 + - 50 + - 50 + - 56 + - 61 + - 69 + - 65 + - 67 + - 64 + - 72 + - 70 + - 70 + - 68 + - 69 + - 69 + - 67 + - 65 + - 65 + - 67 + - 69 + - 68 + - 66 + - 66 + - 66 + - 66 + - 65 + - 63 + - 60 + - 57 + - 53 + - 55 + - 63 + - 71 + - 70 + - 66 + - 66 + - 67 + - 61 + - 60 + - 56 + - 54 + - 51 + - 57 + - 58 + - 57 + - 60 + - 60 + - 61 + - 63 + - 63 + - 69 + - 83 + - 82 + - 70 + - 71 + - 72 + - 75 + - 75 + - 73 + - 72 + - 71 + - 71 + - 67 + - 69 + - 75 + - 82 + - 90 + - 93 + - 93 + - 88 + - 88 + - 75 + - 68 + - 79 + - 107 + - 126 + - 325 + - 5 + - 69 + - 189 + - 216 + - 215 + - 224 + - 236 + - 250 + - 262 + - 272 + - 275 + - 286 + - 292 + - 300 + - 305 + - 313 + - 321 + - 328 + - 333 + - 335 + - 338 + - 332 + - 337 + - 339 + - 348 + - 2 + - 25 + - 43 + - 44 + - 45 + - 30 + - 360 + - 7 + - 31 + - 38 + - 28 + - 23 + - 28 + - 57 + - 74 + - 72 + - 68 + - 43 + - 331 + - 312 + - 315 + - 339 + - 357 + - 12 + - 31 + - 63 + - 113 + - 133 + - 144 + - 149 + - 147 + - 140 + - 130 + - 126 + - 138 + - 145 + - 151 + - 161 + - 165 + - 165 + - 155 + - 150 + - 144 + - 136 + - 124 + - 127 + - 116 + - 119 + - 120 + - 120 + - 121 + - 117 + - 118 + - 117 + - 116 + - 115 + - 112 + - 109 + - 102 + - 102 + - 101 + - 97 + - 88 + - 77 + - 75 + - 75 + - 73 + - 70 + - 72 + - 76 + - 73 + - 69 + - 69 + - 70 + - 71 + - 70 + - 67 + - 69 + - 61 + - 59 + - 64 + - 71 + - 76 + - 78 + - 81 + - 85 + - 87 + - 80 + - 80 + - 83 + - 90 + - 93 + - 89 + - 91 + - 94 + - 98 + - 105 + - 112 + - 122 + - 135 + - 140 + - 149 + - 158 + - 149 + - 139 + - 141 + - 146 + - 159 + - 158 + - 147 + - 130 + - 124 + - 132 + - 153 + - 184 + - 184 + - 151 + - 153 + - 155 + - 155 + - 157 + - 150 + - 145 + - 143 + - 142 + - 142 + - 142 + - 145 + - 142 + - 143 + - 141 + - 138 + - 142 + - 146 + - 154 + - 169 + - 168 + - 160 + - 142 + - 144 + - 145 + - 147 + - 155 + - 157 + - 162 + - 170 + - 165 + - 177 + - 172 + - 187 + - 212 + - 217 + - 210 + - 218 + - 222 + - 226 + - 239 + - 247 + - 250 + - 262 + - 258 + - 254 + - 252 + - 250 + - 245 + - 236 + - 228 + - 215 + - 206 + - 206 + - 194 + - 177 + - 162 + - 148 + - 144 + - 142 + - 137 + - 138 + - 136 + - 128 + - 135 + - 126 + - 130 + - 139 + - 138 + - 139 + - 141 + - 141 + - 139 + - 133 + - 132 + - 130 + - 127 + - 123 + - 120 + - 111 + - 152 + - 179 + - 170 + - 171 + - 159 + - 150 + - 143 + - 132 + - 142 + - 140 + - 151 + - 151 + - 145 + - 166 + - 166 + - 171 + - 172 + - 174 + - 167 + - 168 + - 173 + - 176 + - 174 + - 177 + - 168 + - 159 + - 159 + - 158 + - 159 + - 153 + - 156 + - 151 + - 155 + - 137 + - 128 + - 102 + - 85 + - 79 + - 74 + - 69 + - 76 + - 74 + - 68 + - 57 + - 47 + - 32 + - 32 + - 30 + - 24 + - 16 + - 14 + - 19 + - 29 + - 40 + - 48 + - 62 + - 72 + - 80 + - 81 + - 76 + - 76 + - 71 + - 66 + - 69 + - 71 + - 67 + - 60 + - 54 + - 43 + - 53 + - 71 + - 65 + - 69 + - 65 + - 49 + - 50 + - 59 + - 71 + - 81 + - 77 + - 65 + - 62 + - 66 + - 76 + - 76 + - 69 + - 60 + - 67 + - 68 + - 51 + - 39 + - 44 + - 65 + - 62 + - 54 + - 50 + - 42 + - 44 + - 44 + - 49 + - 48 + - 48 + - 50 + - 50 + - 54 + - 62 + - 59 + - 65 + - 61 + - 59 + - 58 + - 60 + - 65 + - 70 + - 72 + - 72 + - 58 + - 47 + - 48 + - 52 + - 53 + - 61 + - 80 + - 83 + - 77 + - 72 + - 70 + - 62 + - 62 + - 65 + - 65 + - 64 + - 63 + - 63 + - 64 + - 66 + - 65 + - 58 + - 54 + - 53 + - 52 + - 58 + - 66 + - 67 + - 77 + - 85 + - 79 + - 54 + - 36 + - 38 + - 43 + - 46 + - 54 + - 57 + - 61 + - 62 + - 61 + - 58 + - 61 + - 62 + - 56 + - 47 + - 41 + - 41 + - 48 + - 59 + - 60 + - 61 + - 53 + - 48 + - 49 + - 51 + - 51 + - 56 + - 58 + - 55 + - 59 + - 62 + - 65 + - 64 + - 68 + - 72 + - 73 + - 68 + - 64 + - 60 + - 59 + - 60 + - 65 + - 71 + - 75 + - 76 + - 81 + - 87 + - 91 + - 93 + - 92 + - 88 + - 88 + - 78 + - 81 + - 83 + - 85 + - 86 + - 90 + - 91 + - 93 + - 94 + - 97 + - 100 + - 99 + - 99 + - 108 + - 117 + - 117 + - 110 + - 104 + - 105 + - 106 + - 106 + - 109 + - 107 + - 109 + - 107 + - 113 + - 118 + - 126 + - 123 + - 136 + - 157 + - 174 + - 158 + - 146 + - 139 + - 128 + - 134 + - 177 + - 147 + - 168 + - 207 + - 239 + - 250 + - 251 + - 246 + - 239 + - 245 + - 244 + - 241 + - 236 + - 234 + - 227 + - 223 + - 216 + - 210 + - 195 + - 190 + - 201 + - 205 + - 197 + - 192 + - 187 + - 183 + - 149 + - 111 + - 118 + - 128 + - 123 + - 117 + - 110 + - 117 + - 129 + - 160 + - 164 + - 186 + - 205 + - 258 + - 295 + - 309 + - 313 + - 316 + - 319 + - 317 + - 307 + - 299 + - 294 + - 294 + - 295 + - 294 + - 301 + - 302 + - 299 + - 297 + - 299 + - 298 + - 301 + - 302 + - 305 + - 304 + - 302 + - 299 + - 303 + - 304 + - 304 + - 303 + - 303 + - 303 + - 302 + - 302 + - 302 + - 302 + - 301 + - 300 + - 301 + - 301 + - 304 + - 305 + - 305 + - 306 + - 306 + - 303 + - 300 + - 297 + - 296 + - 293 + - 293 + - 289 + - 287 + - 288 + - 291 + - 297 + - 298 + - 294 + - 290 + - 291 + - 289 + - 290 + - 286 + - 290 + - 289 + - 291 + - 292 + - 297 + - 298 + - 300 + - 301 + - 300 + - 299 + - 291 + - 290 + - 289 + - 291 + - 296 + - 296 + - 297 + - 298 + - 297 + - 293 + - 284 + - 268 + - 252 + - 272 + - 287 + - 273 + - 231 + - 135 + - 128 + - 121 + - 113 + - 117 + - 121 + - 121 + - 117 + - 111 + - 131 + - 138 + - 124 + - 117 + - 107 + - 100 + - 102 + - 103 + - 110 + - 120 + - 159 + - 188 + - 225 + - 247 + - 267 + - 287 + - 285 + - 281 + - 296 + - 303 + - 310 + - 306 + - 306 + - 305 + - 306 + - 307 + - 308 + - 309 + - 307 + - 307 + - 308 + - 306 + - 309 + - 312 + - 313 + - 313 + - 311 + - 308 + - 308 + - 307 + - 308 + - 307 + - 305 + - 302 + - 298 + - 294 + - 285 + - 285 + - 284 + - 277 + - 260 + - 244 + - 232 + - 222 + - 210 + - 204 + - 201 + - 198 + - 193 + - 195 + - 192 + - 193 + - 196 + - 198 + - 202 + - 200 + - 208 + - 216 + - 219 + - 222 + - 230 + - 236 + - 237 + - 244 + - 248 + - 251 + - 277 + - 305 + - 311 + - 312 + - 312 + - 310 + - 313 + - 315 + - 317 + - 318 + - 320 + - 321 + - 321 + - 322 + - 321 + - 317 + - 316 + - 312 + - 307 + - 308 + - 313 + - 311 + - 312 + - 309 + - 308 + - 301 + - 300 + - 301 + - 302 + - 301 + - 301 + - 304 + - 307 + - 309 + - 310 + - 308 + - 312 + - 313 + - 313 + - 311 + - 312 + - 310 + - 308 + - 307 + - 306 + - 306 + - 304 + - 306 + - 305 + - 301 + - 303 + - 301 + - 294 + - 289 + - 288 + - 287 + - 282 + - 293 + - 292 + - 275 + - 180 + - 117 + - 114 + - 109 + - 107 + - 111 + - 103 + - 106 + - 106 + - 95 + - 89 + - 90 + - 81 + - 77 + - 78 + - 82 + - 79 + - 89 + - 100 + - 105 + - 106 + - 105 + - 104 + - 105 + - 105 + - 100 + - 98 + - 96 + - 101 + - 103 + - 100 + - 100 + - 103 + - 101 + - 103 + - 101 + - 105 + - 107 + - 106 + - 104 + - 106 + - 105 + - 102 + - 104 + - 104 + - 104 + - 100 + - 100 + - 101 + - 97 + - 107 + - 106 + - 105 + - 105 + - 104 + - 106 + - 106 + - 112 + - 112 + - 111 + - 114 + - 112 + - 112 + - 113 + - 112 + - 114 + - 113 + - 113 + - 112 + - 113 + - 111 + - 113 + - 118 + - 117 + - 119 + - 123 + - 125 + - 128 + - 129 + - 131 + - 128 + - 124 + - 124 + - 121 + - 117 + - 120 + - 122 + - 121 + - 123 + - 125 + - 127 + - 130 + - 134 + - 135 + - 135 + - 136 + - 137 + - 137 + - 137 + - 135 + - 138 + - 141 + - 143 + - 141 + - 145 + - 149 + - 150 + - 150 + - 147 + - 147 + - 145 + - 145 + - 147 + - 150 + - 150 + - 153 + - 152 + - 154 + - 154 + - 151 + - 149 + - 149 + - 149 + - 153 + - 144 + - 142 + - 143 + - 144 + - 146 + - 144 + - 138 + - 137 + - 137 + - 139 + - 140 + - 140 + - 141 + - 142 + - 141 + - 139 + - 137 + - 135 + - 134 + - 136 + - 131 + - 133 + - 135 + - 135 + - 139 + - 141 + - 145 + - 148 + - 159 + - 165 + - 161 + - 160 + - 162 + - 195 + - 225 + - 232 + - 251 + - 273 + - 276 + - 268 + - 273 + - 273 + - 267 + - 288 + - 353 + - 22 + - 18 + - 21 + - 27 + - 48 + - 54 + - 62 + - 71 + - 75 + - 76 + - 40 + - 22 + - 25 + - 28 + - 37 + - 52 + - 66 + - 89 + - 89 + - 90 + - 87 + - 82 + - 83 + - 89 + - 85 + - 81 + - 80 + - 88 + - 97 + - 116 + - 111 + - 100 + - 86 + - 70 + - 72 + - 110 + - 130 + - 137 + - 143 + - 149 + - 146 + - 152 + - 164 + - 171 + - 159 + - 129 + - 86 + - 81 + - 63 + - 54 + - 75 + - 92 + - 101 + - 105 + - 146 + - 312 + - 328 + - 345 + - 350 + - 357 + - 1 + - 21 + - 41 + - 63 + - 124 + - 147 + - 178 + - 164 + - 145 + - 129 + - 117 + - 118 + - 114 + - 125 + - 145 + - 153 + - 161 + - 166 + - 168 + - 175 + - 181 + - 159 + - 187 + - 202 + - 180 + - 191 + - 165 + - 134 + - 137 + - 69 + - 355 + - 49 + - 45 + - 52 + - 72 + - 24 + - 41 + - 65 + - 157 + - 261 + - 297 + - 315 + - 318 + - 316 + - 319 + - 323 + - 325 + - 323 + - 321 + - 314 + - 308 + - 306 + - 306 + - 300 + - 298 + - 297 + - 298 + - 300 + - 300 + - 302 + - 304 + - 305 + - 309 + - 310 + - 313 + - 312 + - 315 + - 313 + - 309 + - 306 + - 304 + - 300 + - 297 + - 300 + - 302 + - 303 + - 306 + - 307 + - 307 + - 310 + - 313 + - 314 + - 315 + - 315 + - 312 + - 313 + - 314 + - 312 + - 311 + - 314 + - 311 + - 307 + - 306 + - 305 + - 303 + - 303 + - 301 + - 297 + - 296 + - 297 + - 298 + - 285 + - 296 + - 303 + - 302 + - 302 + - 303 + - 312 + - 313 + - 304 + - 302 + - 303 + - 297 + - 298 + - 301 + - 306 + - 304 + - 303 + - 305 + - 306 + - 300 + - 301 + - 301 + - 307 + - 311 + - 31 + - 56 + - 72 + - 79 + - 92 + - 94 + - 92 + - 81 + - 67 + - 58 + - 59 + - 76 + - 90 + - 96 + - 104 + - 105 + - 103 + - 86 + - 50 + - 33 + - 40 + - 61 + - 82 + - 88 + - 68 + - 61 + - 66 + - 66 + - 67 + - 65 + - 65 + - 65 + - 67 + - 70 + - 69 + - 75 + - 81 + - 89 + - 89 + - 89 + - 83 + - 94 + - 122 + - 134 + - 139 + - 134 + - 123 + - 118 + - 95 + - 88 + - 81 + - 71 + - 66 + - 70 + - 72 + - 71 + - 65 + - 73 + - 77 + - 81 + - 84 + - 87 + - 84 + - 93 + - 88 + - 81 + - 68 + - 65 + - 74 + - 83 + - 38 + - 42 + - 72 + - 104 + - 90 + - 84 + - 71 + - 75 + - 79 + - 81 + - 86 + - 75 + - 72 + - 76 + - 129 + - 74 + - 87 + - 88 + - 87 + - 104 + - 120 + - 113 + - 102 + - 360 + - 360 + - 350 + - 355 + - 348 + - 348 + - 332 + - 326 + - 321 + - 324 + - 319 + - 321 + - 319 + - 319 + - 318 + - 313 + - 314 + - 319 + - 316 + - 320 + - 311 + - 305 + - 310 + - 316 + - 323 + - 322 + - 323 + - 329 + - 330 + - 328 + - 331 + - 337 + - 338 + - 338 + - 328 + - 312 + - 318 + - 317 + - 314 + - 311 + - 315 + - 324 + - 321 + - 313 + - 312 + - 309 + - 311 + - 307 + - 300 + - 304 + - 314 + - 313 + - 313 + - 318 + - 322 + - 328 + - 330 + - 336 + - 336 + - 334 + - 330 + - 327 + - 324 + - 321 + - 319 + - 320 + - 319 + - 317 + - 318 + - 316 + - 315 + - 316 + - 317 + - 318 + - 319 + - 319 + - 319 + - 315 + - 314 + - 313 + - 312 + - 316 + - 317 + - 319 + - 318 + - 318 + - 319 + - 320 + - 319 + - 320 + - 319 + - 323 + - 324 + - 320 + - 314 + - 311 + - 310 + - 309 + - 313 + - 316 + - 315 + - 314 + - 315 + - 312 + - 310 + - 307 + - 294 + - 286 + - 279 + - 271 + - 263 + - 251 + - 244 + - 248 + - 254 + - 256 + - 253 + - 246 + - 242 + - 244 + - 232 + - 245 + - 262 + - 269 + - 268 + - 276 + - 290 + - 294 + - 301 + - 318 + - 303 + - 304 + - 306 + - 310 + - 312 + - 309 + - 310 + - 312 + - 316 + - 319 + - 317 + - 312 + - 311 + - 310 + - 312 + - 313 + - 315 + - 321 + - 324 + - 327 + - 332 + - 329 + - 323 + - 320 + - 319 + - 318 + - 317 + - 322 + - 325 + - 326 + - 325 + - 324 + - 322 + - 322 + - 321 + - 316 + - 321 + - 317 + - 317 + - 318 + - 319 + - 323 + - 328 + - 333 + - 333 + - 328 + - 332 + - 352 + - 4 + - 11 + - 20 + - 29 + - 52 + - 81 + - 86 + - 88 + - 75 + - 27 + - 346 + - 339 + - 336 + - 341 + - 328 + - 314 + - 313 + - 307 + - 303 + - 298 + - 299 + - 298 + - 295 + - 288 + - 292 + - 296 + - 304 + - 306 + - 308 + - 306 + - 309 + - 311 + - 312 + - 313 + - 310 + - 307 + - 305 + - 304 + - 306 + - 308 + - 310 + - 311 + - 312 + - 314 + - 316 + - 316 + - 319 + - 318 + - 314 + - 314 + - 315 + - 317 + - 317 + - 325 + - 330 + - 340 + - 355 + - 15 + - 12 + - 8 + - 356 + - 5 + - 8 + - 9 + - 14 + - 35 + - 40 + - 42 + - 42 + - 48 + - 54 + - 59 + - 69 + - 77 + - 80 + - 78 + - 74 + - 45 + - 38 + - 17 + - 3 + - 346 + - 342 + - 350 + - 351 + - 355 + - 349 + - 3 + - 352 + - 164 + - 193 + - 212 + - 224 + - 243 + - 260 + - 251 + - 257 + - 256 + - 256 + - 258 + - 268 + - 274 + - 274 + - 276 + - 281 + - 288 + - 295 + - 298 + - 298 + - 299 + - 295 + - 291 + - 291 + - 282 + - 277 + - 276 + - 275 + - 266 + - 279 + - 286 + - 287 + - 288 + - 286 + - 282 + - 283 + - 263 + - 261 + - 270 + - 268 + - 254 + - 261 + - 272 + - 292 + - 298 + - 302 + - 286 + - 278 + - 289 + - 284 + - 283 + - 280 + - 281 + - 284 + - 278 + - 260 + - 259 + - 260 + - 258 + - 258 + - 226 + - 240 + - 270 + - 279 + - 282 + - 287 + - 297 + - 302 + - 304 + - 304 + - 299 + - 293 + - 283 + - 281 + - 279 + - 281 + - 284 + - 284 + - 275 + - 274 + - 274 + - 275 + - 273 + - 271 + - 265 + - 260 + - 263 + - 268 + - 271 + - 274 + - 277 + - 282 + - 287 + - 293 + - 298 + - 300 + - 289 + - 290 + - 290 + - 302 + - 312 + - 315 + - 299 + - 243 + - 257 + - 284 + - 297 + - 295 + - 286 + - 292 + - 298 + - 301 + - 303 + - 302 + - 298 + - 298 + - 304 + - 307 + - 312 + - 315 + - 301 + - 300 + - 301 + - 301 + - 303 + - 306 + - 301 + - 301 + - 301 + - 304 + - 306 + - 303 + - 296 + - 298 + - 299 + - 301 + - 304 + - 308 + - 312 + - 317 + - 320 + - 322 + - 319 + - 320 + - 328 + - 323 + - 332 + - 350 + - 60 + - 66 + - 81 + - 105 + - 111 + - 111 + - 111 + - 111 + - 116 + - 114 + - 131 + - 145 + - 150 + - 135 + - 124 + - 128 + - 124 + - 134 + - 141 + - 139 + - 131 + - 125 + - 119 + - 115 + - 109 + - 101 + - 95 + - 92 + - 92 + - 93 + - 95 + - 96 + - 93 + - 94 + - 93 + - 91 + - 94 + - 99 + - 100 + - 100 + - 106 + - 111 + - 110 + - 111 + - 112 + - 112 + - 109 + - 107 + - 106 + - 103 + - 102 + - 104 + - 107 + - 109 + - 112 + - 116 + - 119 + - 120 + - 120 + - 121 + - 121 + - 121 + - 121 + - 121 + - 123 + - 128 + - 127 + - 120 + - 115 + - 108 + - 102 + - 100 + - 97 + - 95 + - 91 + - 89 + - 91 + - 95 + - 98 + - 100 + - 96 + - 101 + - 104 + - 108 + - 110 + - 112 + - 107 + - 102 + - 113 + - 119 + - 130 + - 137 + - 141 + - 141 + - 134 + - 133 + - 131 + - 122 + - 113 + - 103 + - 95 + - 90 + - 85 + - 83 + - 83 + - 86 + - 86 + - 91 + - 94 + - 95 + - 106 + - 121 + - 109 + - 88 + - 90 + - 88 + - 92 + - 116 + - 126 + - 121 + - 117 + - 114 + - 121 + - 111 + - 80 + - 74 + - 76 + - 77 + - 71 + - 70 + - 61 + - 14 + - 358 + - 6 + - 13 + - 17 + - 23 + - 29 + - 29 + - 51 + - 63 + - 56 + - 39 + - 7 + - 336 + - 333 + - 335 + - 327 + - 336 + - 339 + - 355 + - 355 + - 32 + - 317 + - 286 + - 297 + - 301 + - 302 + - 298 + - 296 + - 296 + - 295 + - 300 + - 302 + - 315 + - 312 + - 307 + - 307 + - 312 + - 319 + - 319 + - 310 + - 306 + - 323 + - 332 + - 342 + - 360 + - 24 + - 35 + - 21 + - 7 + - 349 + - 345 + - 348 + - 9 + - 75 + - 149 + - 170 + - 163 + - 170 + - 176 + - 195 + - 211 + - 222 + - 231 + - 284 + - 360 + - 22 + - 41 + - 49 + - 344 + - 219 + - 239 + - 303 + - 297 + - 312 + - 314 + - 301 + - 316 + - 317 + - 315 + - 326 + - 318 + - 343 + - 311 + - 326 + - 347 + - 356 + - 353 + - 328 + - 335 + - 336 + - 43 + - 214 + - 7 + - 27 + - 12 + - 13 + - 21 + - 24 + - 30 + - 28 + - 37 + - 53 + - 63 + - 58 + - 59 + - 65 + - 68 + - 91 + - 102 + - 125 + - 113 + - 109 + - 106 + - 114 + - 122 + - 126 + - 135 + - 135 + - 147 + - 160 + - 147 + - 185 + - 195 + - 187 + - 195 + - 197 + - 206 + - 215 + - 230 + - 235 + - 235 + - 233 + - 222 + - 218 + - 219 + - 221 + - 235 + - 239 + - 235 + - 223 + - 200 + - 125 + - 79 + - 96 + - 127 + - 126 + - 130 + - 131 + - 133 + - 129 + - 119 + - 116 + - 104 + - 109 + - 117 + - 135 + - 137 + - 128 + - 130 + - 169 + - 201 + - 230 + - 237 + - 247 + - 262 + - 267 + - 266 + - 260 + - 254 + - 251 + - 249 + - 250 + - 254 + - 252 + - 247 + - 250 + - 248 + - 244 + - 240 + - 243 + - 250 + - 248 + - 240 + - 245 + - 255 + - 270 + - 275 + - 293 + - 286 + - 291 + - 306 + - 313 + - 314 + - 329 + - 337 + - 332 + - 330 + - 340 + - 355 + - 355 + - 348 + - 342 + - 338 + - 334 + - 336 + - 324 + - 305 + - 310 + - 312 + - 313 + - 309 + - 303 + - 299 + - 298 + - 297 + - 297 + - 299 + - 301 + - 298 + - 297 + - 291 + - 285 + - 284 + - 286 + - 283 + - 283 + - 281 + - 279 + - 276 + - 269 + - 257 + - 252 + - 248 + - 249 + - 247 + - 243 + - 239 + - 232 + - 234 + - 241 + - 241 + - 242 + - 251 + - 253 + - 249 + - 245 + - 245 + - 244 + - 230 + - 227 + - 229 + - 228 + - 225 + - 215 + - 212 + - 194 + - 177 + - 166 + - 163 + - 165 + - 180 + - 183 + - 205 + - 207 + - 184 + - 164 + - 143 + - 130 + - 129 + - 135 + - 142 + - 141 + - 142 + - 142 + - 140 + - 136 + - 137 + - 138 + - 187 + - 176 + - 181 + - 183 + - 212 + - 247 + - 269 + - 268 + - 268 + - 265 + - 276 + - 281 + - 282 + - 284 + - 285 + - 288 + - 290 + - 291 + - 290 + - 291 + - 293 + - 291 + - 287 + - 297 + - 300 + - 298 + - 300 + - 299 + - 300 + - 299 + - 299 + - 298 + - 301 + - 301 + - 300 + - 298 + - 299 + - 298 + - 295 + - 296 + - 296 + - 294 + - 292 + - 291 + - 288 + - 287 + - 288 + - 291 + - 292 + - 288 + - 287 + - 282 + - 268 + - 259 + - 239 + - 238 + - 233 + - 227 + - 226 + - 224 + - 220 + - 217 + - 213 + - 211 + - 213 + - 217 + - 219 + - 220 + - 223 + - 233 + - 244 + - 247 + - 241 + - 236 + - 223 + - 211 + - 210 + - 205 + - 204 + - 213 + - 214 + - 210 + - 218 + - 224 + - 225 + - 229 + - 237 + - 280 + - 293 + - 292 + - 289 + - 286 + - 285 + - 283 + - 285 + - 285 + - 285 + - 279 + - 273 + - 268 + - 263 + - 258 + - 250 + - 248 + - 250 + - 250 + - 247 + - 246 + - 241 + - 229 + - 225 + - 211 + - 207 + - 210 + - 194 + - 183 + - 207 + - 198 + - 181 + - 168 + - 157 + - 152 + - 167 + - 218 + - 233 + - 233 + - 229 + - 232 + - 243 + - 247 + - 250 + - 252 + - 244 + - 244 + - 245 + - 251 + - 250 + - 260 + - 262 + - 267 + - 267 + - 250 + - 257 + - 257 + - 253 + - 257 + - 258 + - 260 + - 261 + - 256 + - 253 + - 257 + - 257 + - 260 + - 261 + - 262 + - 260 + - 258 + - 255 + - 257 + - 256 + - 253 + - 247 + - 261 + - 252 + - 256 + - 263 + - 260 + - 260 + - 261 + - 260 + - 256 + - 255 + - 255 + - 252 + - 253 + - 253 + - 256 + - 244 + - 251 + - 247 + - 247 + - 239 + - 239 + - 218 + - 219 + - 216 + - 225 + - 234 + - 252 + - 247 + - 247 + - 252 + - 248 + - 243 + - 246 + - 253 + - 247 + - 240 + - 240 + - 254 + - 254 + - 268 + - 265 + - 268 + - 265 + - 260 + - 259 + - 254 + - 255 + - 244 + - 226 + - 192 + - 162 + - 155 + - 134 + - 132 + - 115 + - 95 + - 86 + - 94 + - 89 + - 121 + - 139 + - 118 + - 127 + - 74 + - 45 + - 35 + - 358 + - 305 + - 283 + - 271 + - 276 + - 292 + - 291 + - 283 + - 281 + - 276 + - 276 + - 275 + - 271 + - 271 + - 272 + - 266 + - 262 + - 266 + - 268 + - 271 + - 269 + - 266 + - 261 + - 255 + - 250 + - 246 + - 238 + - 237 + - 235 + - 237 + - 236 + - 236 + - 237 + - 229 + - 226 + - 228 + - 234 + - 245 + - 241 + - 236 + - 236 + - 233 + - 235 + - 232 + - 228 + - 221 + - 215 + - 228 + - 250 + - 261 + - 258 + - 234 + - 219 + - 90 + - 102 + - 108 + - 110 + - 117 + - 122 + - 114 + - 107 + - 119 + - 141 + - 165 + - 144 + - 98 + - 96 + - 94 + - 101 + - 117 + - 134 + - 131 + - 142 + - 132 + - 120 + - 124 + - 130 + - 115 + - 130 + - 135 + - 131 + - 129 + - 132 + - 122 + - 118 + - 114 + - 121 + - 120 + - 120 + - 121 + - 121 + - 121 + - 122 + - 120 + - 125 + - 125 + - 129 + - 133 + - 142 + - 156 + - 144 + - 122 + - 100 + - 102 + - 119 + - 174 + - 222 + - 16 + - 242 + - 262 + - 286 + - 280 + - 277 + - 281 + - 273 + - 261 + - 255 + - 259 + - 274 + - 271 + - 251 + - 243 + - 241 + - 240 + - 234 + - 233 + - 226 + - 210 + - 187 + - 181 + - 183 + - 170 + - 165 + - 150 + - 152 + - 145 + - 165 + - 170 + - 171 + - 183 + - 200 + - 211 + - 216 + - 218 + - 216 + - 219 + - 209 + - 196 + - 178 + - 178 + - 191 + - 184 + - 168 + - 165 + - 189 + - 204 + - 235 + - 237 + - 242 + - 245 + - 249 + - 257 + - 263 + - 266 + - 269 + - 268 + - 263 + - 255 + - 248 + - 239 + - 230 + - 227 + - 224 + - 232 + - 232 + - 236 + - 226 + - 233 + - 234 + - 240 + - 241 + - 246 + - 251 + - 252 + - 259 + - 273 + - 283 + - 278 + - 280 + - 284 + - 287 + - 291 + - 286 + - 273 + - 263 + - 262 + - 258 + - 247 + - 239 + - 232 + - 241 + - 244 + - 241 + - 247 + - 244 + - 238 + - 233 + - 227 + - 218 + - 209 + - 203 + - 198 + - 197 + - 194 + - 195 + - 184 + - 180 + - 169 + - 159 + - 148 + - 144 + - 138 + - 143 + - 132 + - 123 + - 120 + - 125 + - 131 + - 143 + - 165 + - 155 + - 197 + - 214 + - 210 + - 212 + - 210 + - 209 + - 198 + - 188 + - 202 + - 164 + - 147 + - 208 + - 181 + - 196 + - 201 + - 201 + - 207 + - 207 + - 202 + - 205 + - 206 + - 209 + - 214 + - 216 + - 218 + - 221 + - 222 + - 224 + - 226 + - 228 + - 227 + - 226 + - 226 + - 227 + - 224 + - 220 + - 219 + - 219 + - 222 + - 222 + - 224 + - 221 + - 227 + - 226 + - 227 + - 234 + - 234 + - 230 + - 239 + - 241 + - 246 + - 250 + - 256 + - 260 + - 260 + - 262 + - 267 + - 268 + - 267 + - 264 + - 265 + - 269 + - 278 + - 271 + - 273 + - 270 + - 260 + - 255 + - 253 + - 258 + - 266 + - 271 + - 273 + - 271 + - 274 + - 275 + - 277 + - 283 + - 284 + - 287 + - 287 + - 283 + - 284 + - 282 + - 281 + - 283 + - 298 + - 303 + - 302 + - 288 + - 265 + - 257 + - 260 + - 275 + - 281 + - 277 + - 274 + - 275 + - 279 + - 283 + - 288 + - 289 + - 290 + - 287 + - 284 + - 281 + - 277 + - 281 + - 280 + - 277 + - 275 + - 282 + - 281 + - 284 + - 286 + - 291 + - 301 + - 289 + - 290 + - 293 + - 290 + - 288 + - 291 + - 289 + - 289 + - 286 + - 283 + - 281 + - 280 + - 277 + - 276 + - 274 + - 276 + - 266 + - 263 + - 265 + - 279 + - 280 + - 278 + - 271 + - 275 + - 279 + - 281 + - 280 + - 273 + - 267 + - 250 + - 243 + - 244 + - 243 + - 247 + - 257 + - 266 + - 248 + - 287 + - 280 + - 281 + - 274 + - 269 + - 247 + - 250 + - 250 + - 262 + - 263 + - 264 + - 279 + - 258 + - 262 + - 260 + - 262 + - 264 + - 263 + - 262 + - 260 + - 256 + - 250 + - 247 + - 243 + - 236 + - 221 + - 195 + - 183 + - 167 + - 147 + - 131 + - 123 + - 122 + - 127 + - 130 + - 128 + - 120 + - 118 + - 127 + - 120 + - 122 + - 181 + - 177 + - 189 + - 218 + - 218 + - 224 + - 218 + - 216 + - 216 + - 216 + - 211 + - 193 + - 199 + - 222 + - 241 + - 278 + - 297 + - 309 + - 307 + - 308 + - 308 + - 307 + - 307 + - 300 + - 301 + - 306 + - 313 + - 324 + - 324 + - 320 + - 307 + - 295 + - 288 + - 292 + - 286 + - 287 + - 287 + - 284 + - 285 + - 289 + - 287 + - 288 + - 286 + - 285 + - 284 + - 281 + - 280 + - 285 + - 280 + - 275 + - 277 + - 277 + - 280 + - 282 + - 281 + - 275 + - 276 + - 280 + - 270 + - 264 + - 272 + - 269 + - 257 + - 267 + - 274 + - 268 + - 269 + - 263 + - 262 + - 268 + - 263 + - 269 + - 264 + - 266 + - 266 + - 261 + - 265 + - 262 + - 267 + - 265 + - 261 + - 257 + - 261 + - 264 + - 259 + - 254 + - 260 + - 262 + - 261 + - 260 + - 262 + - 257 + - 258 + - 263 + - 255 + - 246 + - 250 + - 254 + - 261 + - 282 + - 287 + - 321 + - 2 + - 35 + - 47 + - 49 + - 50 + - 49 + - 63 + - 74 + - 71 + - 55 + - 14 + - 19 + - 23 + - 349 + - 315 + - 289 + - 292 + - 273 + - 274 + - 292 + - 297 + - 289 + - 293 + - 311 + - 355 + - 35 + - 82 + - 148 + - 213 + - 227 + - 204 + - 193 + - 206 + - 202 + - 206 + - 204 + - 204 + - 201 + - 191 + - 187 + - 222 + - 201 + - 219 + - 229 + - 234 + - 234 + - 242 + - 242 + - 244 + - 246 + - 243 + - 238 + - 238 + - 239 + - 238 + - 235 + - 237 + - 231 + - 221 + - 211 + - 198 + - 199 + - 205 + - 187 + - 224 + - 189 + - 225 + - 235 + - 252 + - 251 + - 233 + - 237 + - 233 + - 232 + - 228 + - 230 + - 211 + - 198 + - 212 + - 220 + - 223 + - 219 + - 218 + - 244 + - 245 + - 258 + - 269 + - 281 + - 287 + - 304 + - 289 + - 274 + - 280 + - 283 + - 260 + - 246 + - 260 + - 259 + - 323 + - 52 + - 80 + - 86 + - 100 + - 101 + - 102 + - 109 + - 90 + - 91 + - 87 + - 69 + - 61 + - 63 + - 47 + - 40 + - 31 + - 16 + - 18 + - 12 + - 5 + - 346 + - 341 + - 347 + - 352 + - 349 + - 328 + - 303 + - 292 + - 289 + - 282 + - 278 + - 274 + - 276 + - 268 + - 254 + - 242 + - 176 + - 173 + - 168 + - 144 + - 143 + - 142 + - 142 + - 122 + - 116 + - 100 + - 89 + - 84 + - 81 + - 75 + - 73 + - 64 + - 67 + - 63 + - 58 + - 55 + - 48 + - 41 + - 38 + - 33 + - 13 + - 9 + - 5 + - 6 + - 353 + - 341 + - 341 + - 332 + - 316 + - 308 + - 301 + - 297 + - 296 + - 292 + - 288 + - 284 + - 285 + - 288 + - 290 + - 292 + - 292 + - 295 + - 296 + - 299 + - 300 + - 298 + - 282 + - 287 + - 293 + - 295 + - 296 + - 297 + - 293 + - 294 + - 292 + - 292 + - 291 + - 288 + - 292 + - 287 + - 282 + - 276 + - 266 + - 264 + - 266 + - 265 + - 260 + - 251 + - 249 + - 252 + - 240 + - 243 + - 243 + - 243 + - 249 + - 275 + - 344 + - 18 + - 32 + - 53 + - 62 + - 68 + - 75 + - 78 + - 92 + - 95 + - 94 + - 91 + - 87 + - 84 + - 78 + - 78 + - 74 + - 66 + - 49 + - 36 + - 40 + - 38 + - 24 + - 18 + - 10 + - 1 + - 353 + - 342 + - 334 + - 330 + - 326 + - 312 + - 309 + - 311 + - 311 + - 312 + - 314 + - 311 + - 308 + - 307 + - 302 + - 305 + - 290 + - 294 + - 296 + - 292 + - 290 + - 288 + - 287 + - 286 + - 290 + - 290 + - 289 + - 286 + - 283 + - 287 + - 286 + - 286 + - 285 + - 284 + - 283 + - 283 + - 282 + - 282 + - 284 + - 285 + - 284 + - 286 + - 283 + - 284 + - 282 + - 277 + - 277 + - 279 + - 279 + - 280 + - 280 + - 280 + - 284 + - 281 + - 280 + - 284 + - 283 + - 283 + - 284 + - 286 + - 291 + - 293 + - 292 + - 291 + - 288 + - 288 + - 289 + - 291 + - 287 + - 287 + - 288 + - 291 + - 297 + - 298 + - 298 + - 298 + - 297 + - 292 + - 291 + - 294 + - 292 + - 291 + - 292 + - 292 + - 296 + - 297 + - 294 + - 295 + - 291 + - 291 + - 290 + - 288 + - 288 + - 292 + - 290 + - 284 + - 276 + - 271 + - 273 + - 274 + - 280 + - 273 + - 269 + - 264 + - 263 + - 259 + - 234 + - 240 + - 237 + - 231 + - 231 + - 224 + - 207 + - 197 + - 202 + - 195 + - 197 + - 197 + - 204 + - 212 + - 213 + - 223 + - 233 + - 232 + - 219 + - 212 + - 222 + - 206 + - 188 + - 188 + - 186 + - 163 + - 155 + - 175 + - 169 + - 176 + - 172 + - 184 + - 184 + - 191 + - 197 + - 211 + - 202 + - 218 + - 222 + - 231 + - 236 + - 239 + - 237 + - 228 + - 217 + - 201 + - 196 + - 193 + - 208 + - 211 + - 219 + - 221 + - 222 + - 221 + - 227 + - 229 + - 227 + - 224 + - 223 + - 222 + - 216 + - 207 + - 203 + - 205 + - 208 + - 209 + - 210 + - 201 + - 194 + - 194 + - 189 + - 180 + - 184 + - 184 + - 188 + - 192 + - 191 + - 191 + - 194 + - 207 + - 216 + - 216 + - 197 + - 190 + - 195 + - 203 + - 193 + - 172 + - 171 + - 163 + - 149 + - 134 + - 126 + - 120 + - 123 + - 130 + - 147 + - 159 + - 172 + - 210 + - 219 + - 218 + - 226 + - 227 + - 224 + - 223 + - 223 + - 222 + - 217 + - 221 + - 220 + - 222 + - 225 + - 230 + - 236 + - 242 + - 247 + - 251 + - 254 + - 256 + - 262 + - 271 + - 272 + - 272 + - 279 + - 282 + - 278 + - 288 + - 292 + - 292 + - 290 + - 291 + - 294 + - 296 + - 302 + - 304 + - 294 + - 292 + - 297 + - 288 + - 300 + - 311 + - 312 + - 318 + - 321 + - 318 + - 320 + - 333 + - 79 + - 90 + - 117 + - 90 + - 37 + - 75 + - 81 + - 90 + - 94 + - 95 + - 106 + - 121 + - 113 + - 101 + - 77 + - 75 + - 70 + - 73 + - 80 + - 79 + - 78 + - 76 + - 62 + - 55 + - 57 + - 58 + - 70 + - 81 + - 87 + - 92 + - 93 + - 102 + - 99 + - 95 + - 94 + - 94 + - 95 + - 98 + - 107 + - 104 + - 107 + - 99 + - 91 + - 99 + - 106 + - 125 + - 123 + - 129 + - 118 + - 124 + - 140 + - 129 + - 135 + - 141 + - 142 + - 148 + - 162 + - 172 + - 195 + - 241 + - 255 + - 258 + - 251 + - 244 + - 237 + - 231 + - 227 + - 224 + - 219 + - 223 + - 228 + - 230 + - 231 + - 235 + - 237 + - 242 + - 243 + - 246 + - 251 + - 251 + - 254 + - 256 + - 252 + - 247 + - 244 + - 247 + - 253 + - 250 + - 255 + - 258 + - 255 + - 251 + - 250 + - 255 + - 249 + - 245 + - 243 + - 242 + - 243 + - 243 + - 241 + - 237 + - 235 + - 231 + - 227 + - 219 + - 210 + - 213 + - 219 + - 224 + - 232 + - 235 + - 238 + - 233 + - 230 + - 237 + - 233 + - 226 + - 231 + - 234 + - 238 + - 242 + - 231 + - 235 + - 239 + - 239 + - 245 + - 249 + - 246 + - 239 + - 247 + - 251 + - 254 + - 245 + - 242 + - 241 + - 240 + - 237 + - 239 + - 234 + - 241 + - 256 + - 250 + - 256 + - 258 + - 260 + - 267 + - 266 + - 268 + - 267 + - 271 + - 272 + - 273 + - 273 + - 267 + - 265 + - 270 + - 278 + - 282 + - 282 + - 292 + - 296 + - 293 + - 287 + - 272 + - 257 + - 252 + - 248 + - 248 + - 241 + - 229 + - 223 + - 205 + - 142 + - 141 + - 205 + - 352 + - 97 + - 126 + - 136 + - 142 + - 147 + - 144 + - 164 + - 179 + - 182 + - 195 + - 218 + - 259 + - 259 + - 257 + - 263 + - 264 + - 262 + - 255 + - 259 + - 262 + - 274 + - 287 + - 295 + - 296 + - 314 + - 331 + - 341 + - 351 + - 6 + - 17 + - 37 + - 29 + - 360 + - 7 + - 338 + - 356 + - 37 + - 45 + - 323 + - 340 + - 314 + - 272 + - 285 + - 270 + - 265 + - 263 + - 248 + - 245 + - 257 + - 266 + - 294 + - 90 + - 159 + - 243 + - 218 + - 193 + - 187 + - 189 + - 189 + - 187 + - 202 + - 198 + - 207 + - 195 + - 202 + - 137 + - 162 + - 201 + - 192 + - 178 + - 184 + - 171 + - 174 + - 174 + - 219 + - 288 + - 357 + - 313 + - 297 + - 324 + - 322 + - 328 + - 328 + - 316 + - 306 + - 305 + - 298 + - 295 + - 293 + - 293 + - 294 + - 293 + - 293 + - 290 + - 292 + - 282 + - 281 + - 289 + - 295 + - 298 + - 298 + - 279 + - 286 + - 274 + - 243 + - 196 + - 193 + - 216 + - 194 + - 211 + - 210 + - 219 + - 217 + - 213 + - 215 + - 216 + - 220 + - 221 + - 222 + - 224 + - 221 + - 212 + - 203 + - 192 + - 195 + - 185 + - 196 + - 190 + - 197 + - 170 + - 161 + - 170 + - 173 + - 176 + - 173 + - 185 + - 198 + - 171 + - 177 + - 161 + - 176 + - 186 + - 186 + - 180 + - 155 + - 158 + - 158 + - 150 + - 144 + - 270 + - 71 + - 88 + - 85 + - 71 + - 87 + - 86 + - 76 + - 79 + - 83 + - 89 + - 87 + - 84 + - 98 + - 90 + - 75 + - 79 + - 166 + - 31 + - 16 + - 30 + - 34 + - 7 + - 335 + - 320 + - 327 + - 332 + - 330 + - 329 + - 325 + - 300 + - 281 + - 279 + - 288 + - 294 + - 294 + - 291 + - 294 + - 301 + - 309 + - 312 + - 308 + - 292 + - 297 + - 300 + - 298 + - 294 + - 291 + - 288 + - 290 + - 295 + - 298 + - 298 + - 297 + - 297 + - 295 + - 292 + - 289 + - 286 + - 288 + - 288 + - 288 + - 290 + - 291 + - 293 + - 291 + - 290 + - 290 + - 296 + - 297 + - 293 + - 291 + - 285 + - 285 + - 291 + - 298 + - 298 + - 295 + - 297 + - 283 + - 282 + - 285 + - 274 + - 259 + - 252 + - 256 + - 250 + - 249 + - 253 + - 250 + - 251 + - 256 + - 259 + - 255 + - 259 + - 256 + - 251 + - 252 + - 253 + - 254 + - 253 + - 252 + - 253 + - 247 + - 244 + - 241 + - 239 + - 236 + - 233 + - 236 + - 239 + - 240 + - 239 + - 234 + - 227 + - 230 + - 226 + - 224 + - 222 + - 220 + - 226 + - 230 + - 230 + - 230 + - 231 + - 233 + - 234 + - 229 + - 229 + - 237 + - 254 + - 258 + - 263 + - 272 + - 289 + - 308 + - 315 + - 315 + - 328 + - 339 + - 329 + - 328 + - 327 + - 333 + - 332 + - 318 + - 332 + - 355 + - 9 + - 26 + - 49 + - 81 + - 101 + - 117 + - 121 + - 124 + - 109 + - 107 + - 110 + - 114 + - 118 + - 122 + - 122 + - 124 + - 128 + - 133 + - 137 + - 139 + - 136 + - 138 + - 139 + - 138 + - 139 + - 138 + - 140 + - 141 + - 137 + - 137 + - 137 + - 138 + - 137 + - 138 + - 137 + - 135 + - 133 + - 131 + - 127 + - 128 + - 131 + - 134 + - 134 + - 135 + - 135 + - 137 + - 136 + - 133 + - 132 + - 130 + - 133 + - 136 + - 137 + - 138 + - 138 + - 144 + - 144 + - 148 + - 146 + - 139 + - 126 + - 126 + - 131 + - 135 + - 140 + - 148 + - 156 + - 161 + - 160 + - 158 + - 157 + - 158 + - 157 + - 157 + - 165 + - 168 + - 177 + - 185 + - 196 + - 213 + - 225 + - 237 + - 242 + - 240 + - 236 + - 235 + - 242 + - 256 + - 263 + - 278 + - 282 + - 281 + - 287 + - 287 + - 288 + - 289 + - 295 + - 283 + - 273 + - 290 + - 297 + - 296 + - 286 + - 277 + - 249 + - 247 + - 243 + - 242 + - 235 + - 234 + - 242 + - 232 + - 220 + - 198 + - 191 + - 180 + - 162 + - 165 + - 172 + - 172 + - 169 + - 172 + - 171 + - 172 + - 173 + - 171 + - 175 + - 191 + - 217 + - 165 + - 186 + - 203 + - 216 + - 221 + - 230 + - 247 + - 263 + - 268 + - 267 + - 269 + - 257 + - 255 + - 253 + - 264 + - 273 + - 294 + - 315 + - 319 + - 350 + - 359 + - 356 + - 355 + - 356 + - 349 + - 346 + - 342 + - 339 + - 337 + - 336 + - 334 + - 336 + - 335 + - 335 + - 327 + - 330 + - 333 + - 336 + - 331 + - 324 + - 335 + - 334 + - 336 + - 343 + - 337 + - 341 + - 342 + - 345 + - 336 + - 329 + - 337 + - 334 + - 318 + - 332 + - 327 + - 339 + - 360 + - 344 + - 306 + - 284 + - 296 + - 294 + - 286 + - 290 + - 297 + - 303 + - 256 + - 207 + - 231 + - 234 + - 223 + - 236 + - 213 + - 209 + - 209 + - 198 + - 186 + - 193 + - 205 + - 204 + - 200 + - 198 + - 196 + - 192 + - 191 + - 189 + - 187 + - 184 + - 182 + - 182 + - 177 + - 174 + - 178 + - 181 + - 177 + - 178 + - 182 + - 176 + - 173 + - 179 + - 188 + - 183 + - 154 + - 140 + - 148 + - 147 + - 144 + - 145 + - 149 + - 146 + - 140 + - 130 + - 126 + - 127 + - 131 + - 131 + - 130 + - 137 + - 157 + - 165 + - 169 + - 180 + - 234 + - 295 + - 317 + - 330 + - 349 + - 2 + - 18 + - 20 + - 354 + - 8 + - 21 + - 20 + - 27 + - 32 + - 40 + - 52 + - 64 + - 74 + - 73 + - 80 + - 90 + - 93 + - 106 + - 128 + - 117 + - 102 + - 105 + - 115 + - 121 + - 123 + - 127 + - 121 + - 122 + - 132 + - 133 + - 144 + - 142 + - 144 + - 143 + - 135 + - 130 + - 124 + - 116 + - 144 + - 151 + - 171 + - 180 + - 203 + - 200 + - 206 + - 209 + - 208 + - 202 + - 185 + - 165 + - 167 + - 167 + - 219 + - 252 + - 248 + - 245 + - 236 + - 244 + - 228 + - 231 + - 234 + - 237 + - 230 + - 226 + - 227 + - 216 + - 205 + - 197 + - 225 + - 236 + - 244 + - 249 + - 246 + - 231 + - 236 + - 230 + - 241 + - 241 + - 235 + - 231 + - 234 + - 235 + - 232 + - 235 + - 232 + - 226 + - 224 + - 224 + - 214 + - 210 + - 205 + - 205 + - 199 + - 199 + - 199 + - 196 + - 193 + - 194 + - 191 + - 189 + - 185 + - 178 + - 173 + - 170 + - 168 + - 172 + - 176 + - 180 + - 186 + - 189 + - 193 + - 203 + - 203 + - 196 + - 224 + - 248 + - 216 + - 214 + - 252 + - 270 + - 45 + - 17 + - 17 + - 303 + - 326 + - 318 + - 318 + - 324 + - 337 + - 305 + - 280 + - 288 + - 257 + - 247 + - 182 + - 178 + - 173 + - 171 + - 178 + - 216 + - 243 + - 246 + - 246 + - 232 + - 226 + - 210 + - 195 + - 175 + - 194 + - 217 + - 272 + - 299 + - 270 + - 237 + - 264 + - 283 + - 277 + - 277 + - 270 + - 271 + - 279 + - 285 + - 286 + - 292 + - 287 + - 282 + - 284 + - 288 + - 283 + - 278 + - 279 + - 278 + - 274 + - 271 + - 260 + - 257 + - 258 + - 257 + - 241 + - 224 + - 210 + - 203 + - 210 + - 208 + - 206 + - 210 + - 207 + - 206 + - 200 + - 194 + - 189 + - 184 + - 176 + - 173 + - 174 + - 175 + - 174 + - 175 + - 177 + - 176 + - 175 + - 177 + - 176 + - 179 + - 178 + - 182 + - 197 + - 198 + - 204 + - 203 + - 206 + - 201 + - 193 + - 193 + - 198 + - 207 + - 209 + - 208 + - 205 + - 206 + - 203 + - 194 + - 184 + - 181 + - 173 + - 160 + - 158 + - 159 + - 159 + - 152 + - 155 + - 160 + - 163 + - 160 + - 155 + - 158 + - 163 + - 160 + - 157 + - 159 + - 165 + - 168 + - 173 + - 177 + - 179 + - 182 + - 188 + - 198 + - 205 + - 209 + - 210 + - 219 + - 235 + - 249 + - 259 + - 254 + - 278 + - 291 + - 254 + - 168 + - 151 + - 142 + - 137 + - 136 + - 131 + - 138 + - 140 + - 142 + - 143 + - 149 + - 148 + - 158 + - 160 + - 165 + - 181 + - 191 + - 212 + - 230 + - 231 + - 231 + - 227 + - 230 + - 230 + - 228 + - 223 + - 220 + - 220 + - 211 + - 207 + - 214 + - 211 + - 206 + - 209 + - 203 + - 205 + - 206 + - 205 + - 206 + - 206 + - 194 + - 184 + - 194 + - 203 + - 213 + - 218 + - 264 + - 285 + - 274 + - 277 + - 274 + - 270 + - 263 + - 269 + - 268 + - 267 + - 269 + - 271 + - 267 + - 268 + - 268 + - 274 + - 278 + - 278 + - 275 + - 280 + - 281 + - 277 + - 280 + - 276 + - 274 + - 276 + - 278 + - 279 + - 279 + - 280 + - 281 + - 281 + - 277 + - 276 + - 278 + - 286 + - 283 + - 281 + - 256 + - 254 + - 253 + - 251 + - 240 + - 212 + - 207 + - 201 + - 194 + - 184 + - 171 + - 176 + - 177 + - 201 + - 221 + - 240 + - 244 + - 239 + - 234 + - 230 + - 227 + - 233 + - 244 + - 247 + - 248 + - 244 + - 237 + - 238 + - 232 + - 245 + - 245 + - 249 + - 264 + - 261 + - 272 + - 279 + - 278 + - 270 + - 261 + - 251 + - 245 + - 241 + - 212 + - 202 + - 184 + - 184 + - 170 + - 138 + - 130 + - 96 + - 146 + - 90 + - 353 + - 15 + - 347 + - 326 + - 327 + - 314 + - 302 + - 283 + - 277 + - 274 + - 270 + - 268 + - 277 + - 265 + - 276 + - 275 + - 271 + - 279 + - 281 + - 279 + - 277 + - 283 + - 279 + - 281 + - 275 + - 270 + - 270 + - 262 + - 262 + - 260 + - 253 + - 253 + - 249 + - 250 + - 251 + - 246 + - 248 + - 245 + - 251 + - 267 + - 281 + - 282 + - 283 + - 290 + - 294 + - 294 + - 290 + - 292 + - 295 + - 298 + - 298 + - 296 + - 294 + - 297 + - 295 + - 292 + - 284 + - 281 + - 272 + - 261 + - 249 + - 235 + - 217 + - 193 + - 179 + - 190 + - 226 + - 227 + - 229 + - 237 + - 242 + - 240 + - 251 + - 248 + - 246 + - 247 + - 252 + - 254 + - 258 + - 258 + - 259 + - 260 + - 262 + - 264 + - 265 + - 268 + - 283 + - 290 + - 295 + - 300 + - 304 + - 299 + - 299 + - 303 + - 302 + - 301 + - 301 + - 303 + - 304 + - 308 + - 312 + - 311 + - 307 + - 310 + - 317 + - 321 + - 320 + - 319 + - 323 + - 321 + - 321 + - 319 + - 321 + - 21 + - 19 + - 352 + - 351 + - 357 + - 360 + - 8 + - 15 + - 22 + - 360 + - 252 + - 236 + - 218 + - 240 + - 230 + - 220 + - 232 + - 266 + - 285 + - 233 + - 183 + - 188 + - 161 + - 153 + - 163 + - 167 + - 160 + - 159 + - 146 + - 139 + - 132 + - 122 + - 107 + - 113 + - 105 + - 102 + - 112 + - 99 + - 90 + - 95 + - 63 + - 135 + - 250 + - 275 + - 273 + - 267 + - 238 + - 232 + - 235 + - 237 + - 218 + - 205 + - 194 + - 191 + - 195 + - 196 + - 196 + - 207 + - 195 + - 191 + - 201 + - 217 + - 231 + - 237 + - 230 + - 221 + - 220 + - 224 + - 227 + - 231 + - 225 + - 228 + - 230 + - 227 + - 240 + - 244 + - 244 + - 245 + - 245 + - 248 + - 251 + - 264 + - 264 + - 258 + - 276 + - 268 + - 272 + - 265 + - 261 + - 266 + - 272 + - 274 + - 274 + - 279 + - 278 + - 281 + - 280 + - 281 + - 283 + - 281 + - 278 + - 282 + - 287 + - 291 + - 295 + - 295 + - 295 + - 295 + - 293 + - 295 + - 295 + - 293 + - 282 + - 255 + - 245 + - 243 + - 235 + - 224 + - 221 + - 214 + - 187 + - 178 + - 173 + - 167 + - 167 + - 161 + - 157 + - 158 + - 160 + - 165 + - 172 + - 171 + - 209 + - 222 + - 236 + - 262 + - 257 + - 251 + - 253 + - 252 + - 270 + - 272 + - 266 + - 263 + - 272 + - 267 + - 267 + - 269 + - 273 + - 272 + - 272 + - 263 + - 273 + - 267 + - 268 + - 264 + - 273 + - 274 + - 281 + - 279 + - 277 + - 278 + - 287 + - 290 + - 291 + - 297 + - 295 + - 295 + - 296 + - 297 + - 295 + - 298 + - 297 + - 303 + - 300 + - 302 + - 306 + - 311 + - 312 + - 314 + - 316 + - 315 + - 316 + - 314 + - 309 + - 308 + - 306 + - 307 + - 308 + - 306 + - 306 + - 309 + - 311 + - 313 + - 315 + - 316 + - 317 + - 317 + - 330 + - 326 + - 327 + - 322 + - 318 + - 314 + - 324 + - 326 + - 325 + - 324 + - 323 + - 327 + - 318 + - 302 + - 295 + - 283 + - 273 + - 274 + - 261 + - 268 + - 272 + - 280 + - 277 + - 279 + - 283 + - 278 + - 284 + - 286 + - 288 + - 288 + - 285 + - 287 + - 292 + - 297 + - 289 + - 283 + - 282 + - 286 + - 289 + - 290 + - 288 + - 288 + - 295 + - 294 + - 292 + - 295 + - 297 + - 292 + - 283 + - 288 + - 8 + - 61 + - 78 + - 90 + - 98 + - 100 + - 98 + - 97 + - 96 + - 88 + - 84 + - 87 + - 91 + - 93 + - 95 + - 97 + - 100 + - 97 + - 97 + - 98 + - 96 + - 92 + - 90 + - 89 + - 90 + - 84 + - 83 + - 88 + - 87 + - 87 + - 85 + - 84 + - 82 + - 81 + - 81 + - 79 + - 78 + - 77 + - 78 + - 75 + - 75 + - 73 + - 72 + - 73 + - 73 + - 73 + - 74 + - 74 + - 76 + - 79 + - 80 + - 83 + - 78 + - 75 + - 81 + - 81 + - 80 + - 81 + - 83 + - 83 + - 83 + - 81 + - 83 + - 82 + - 77 + - 77 + - 75 + - 83 + - 83 + - 82 + - 82 + - 86 + - 87 + - 90 + - 93 + - 97 + - 88 + - 87 + - 90 + - 96 + - 102 + - 104 + - 110 + - 114 + - 119 + - 123 + - 126 + - 128 + - 117 + - 118 + - 118 + - 121 + - 123 + - 127 + - 121 + - 129 + - 137 + - 146 + - 145 + - 145 + - 146 + - 147 + - 162 + - 224 + - 242 + - 244 + - 247 + - 252 + - 249 + - 244 + - 243 + - 248 + - 258 + - 257 + - 258 + - 262 + - 264 + - 270 + - 274 + - 280 + - 283 + - 285 + - 288 + - 293 + - 297 + - 302 + - 302 + - 304 + - 309 + - 326 + - 350 + - 6 + - 23 + - 70 + - 112 + - 104 + - 86 + - 88 + - 80 + - 86 + - 89 + - 104 + - 103 + - 100 + - 100 + - 93 + - 91 + - 94 + - 90 + - 89 + - 90 + - 88 + - 90 + - 93 + - 93 + - 92 + - 90 + - 89 + - 88 + - 88 + - 88 + - 91 + - 98 + - 100 + - 100 + - 102 + - 99 + - 105 + - 110 + - 117 + - 120 + - 126 + - 129 + - 116 + - 115 + - 113 + - 97 + - 96 + - 94 + - 91 + - 86 + - 86 + - 82 + - 80 + - 76 + - 72 + - 71 + - 70 + - 69 + - 69 + - 70 + - 70 + - 71 + - 76 + - 78 + - 79 + - 80 + - 76 + - 70 + - 62 + - 61 + - 62 + - 62 + - 63 + - 67 + - 71 + - 69 + - 68 + - 69 + - 67 + - 63 + - 60 + - 60 + - 61 + - 66 + - 70 + - 78 + - 79 + - 89 + - 100 + - 93 + - 79 + - 85 + - 83 + - 82 + - 80 + - 83 + - 85 + - 84 + - 84 + - 84 + - 83 + - 82 + - 78 + - 77 + - 80 + - 88 + - 94 + - 91 + - 95 + - 97 + - 97 + - 106 + - 111 + - 107 + - 111 + - 98 + - 100 + - 103 + - 109 + - 107 + - 110 + - 109 + - 108 + - 108 + - 104 + - 109 + - 116 + - 117 + - 116 + - 111 + - 111 + - 112 + - 107 + - 95 + - 98 + - 112 + - 143 + - 192 + - 189 + - 206 + - 209 + - 215 + - 202 + - 191 + - 192 + - 191 + - 196 + - 197 + - 194 + - 194 + - 198 + - 203 + - 208 + - 196 + - 200 + - 198 + - 206 + - 211 + - 217 + - 219 + - 221 + - 224 + - 225 + - 226 + - 233 + - 233 + - 254 + - 4 + - 21 + - 23 + - 28 + - 32 + - 37 + - 37 + - 35 + - 38 + - 35 + - 34 + - 32 + - 31 + - 25 + - 20 + - 13 + - 5 + - 357 + - 352 + - 355 + - 347 + - 345 + - 341 + - 336 + - 343 + - 330 + - 339 + - 341 + - 341 + - 345 + - 2 + - 62 + - 95 + - 114 + - 120 + - 130 + - 129 + - 126 + - 119 + - 119 + - 115 + - 129 + - 120 + - 132 + - 132 + - 134 + - 139 + - 145 + - 151 + - 162 + - 167 + - 168 + - 175 + - 176 + - 173 + - 171 + - 174 + - 177 + - 165 + - 157 + - 146 + - 138 + - 128 + - 128 + - 121 + - 126 + - 122 + - 127 + - 131 + - 134 + - 132 + - 132 + - 139 + - 134 + - 138 + - 139 + - 141 + - 139 + - 138 + - 139 + - 138 + - 138 + - 140 + - 139 + - 134 + - 137 + - 137 + - 138 + - 138 + - 145 + - 150 + - 147 + - 160 + - 167 + - 170 + - 176 + - 172 + - 176 + - 180 + - 186 + - 188 + - 186 + - 183 + - 183 + - 178 + - 186 + - 191 + - 189 + - 184 + - 182 + - 177 + - 175 + - 173 + - 171 + - 169 + - 153 + - 158 + - 149 + - 151 + - 143 + - 141 + - 138 + - 131 + - 132 + - 126 + - 125 + - 121 + - 114 + - 108 + - 107 + - 108 + - 104 + - 107 + - 114 + - 123 + - 130 + - 130 + - 129 + - 142 + - 159 + - 153 + - 151 + - 149 + - 147 + - 153 + - 167 + - 171 + - 169 + - 171 + - 179 + - 182 + - 194 + - 194 + - 196 + - 231 + - 245 + - 247 + - 250 + - 253 + - 258 + - 257 + - 258 + - 249 + - 253 + - 258 + - 253 + - 232 + - 221 + - 226 + - 224 + - 220 + - 215 + - 212 + - 219 + - 221 + - 225 + - 214 + - 229 + - 245 + - 245 + - 242 + - 240 + - 235 + - 227 + - 227 + - 237 + - 236 + - 244 + - 232 + - 226 + - 226 + - 223 + - 220 + - 212 + - 206 + - 204 + - 204 + - 212 + - 209 + - 214 + - 218 + - 215 + - 223 + - 249 + - 253 + - 264 + - 263 + - 261 + - 259 + - 249 + - 248 + - 243 + - 232 + - 219 + - 196 + - 177 + - 172 + - 167 + - 170 + - 175 + - 183 + - 198 + - 241 + - 262 + - 271 + - 270 + - 275 + - 298 + - 339 + - 153 + - 217 + - 189 + - 225 + - 166 + - 183 + - 186 + - 200 + - 197 + - 185 + - 184 + - 168 + - 155 + - 153 + - 146 + - 151 + - 139 + - 143 + - 147 + - 152 + - 149 + - 151 + - 159 + - 165 + - 189 + - 200 + - 186 + - 191 + - 192 + - 181 + - 167 + - 176 + - 178 + - 159 + - 163 + - 166 + - 166 + - 164 + - 158 + - 150 + - 149 + - 143 + - 139 + - 132 + - 118 + - 109 + - 99 + - 81 + - 70 + - 74 + - 84 + - 82 + - 63 + - 50 + - 54 + - 44 + - 40 + - 49 + - 51 + - 51 + - 58 + - 59 + - 54 + - 56 + - 62 + - 64 + - 84 + - 100 + - 102 + - 98 + - 110 + - 120 + - 120 + - 114 + - 114 + - 106 + - 100 + - 99 + - 98 + - 83 + - 88 + - 88 + - 94 + - 110 + - 122 + - 135 + - 121 + - 113 + - 133 + - 153 + - 131 + - 108 + - 107 + - 111 + - 106 + - 111 + - 111 + - 127 + - 118 + - 113 + - 121 + - 122 + - 128 + - 124 + - 110 + - 118 + - 115 + - 113 + - 105 + - 103 + - 103 + - 105 + - 105 + - 102 + - 103 + - 96 + - 83 + - 76 + - 67 + - 56 + - 50 + - 51 + - 50 + - 43 + - 35 + - 33 + - 38 + - 40 + - 37 + - 38 + - 36 + - 34 + - 30 + - 30 + - 30 + - 35 + - 35 + - 29 + - 29 + - 29 + - 33 + - 35 + - 41 + - 50 + - 53 + - 49 + - 57 + - 80 + - 90 + - 76 + - 93 + - 94 + - 89 + - 85 + - 77 + - 73 + - 67 + - 61 + - 52 + - 46 + - 41 + - 33 + - 29 + - 23 + - 18 + - 19 + - 22 + - 25 + - 18 + - 22 + - 32 + - 39 + - 35 + - 28 + - 34 + - 33 + - 23 + - 21 + - 18 + - 24 + - 24 + - 24 + - 28 + - 30 + - 33 + - 38 + - 37 + - 38 + - 35 + - 33 + - 30 + - 29 + - 32 + - 35 + - 43 + - 43 + - 48 + - 53 + - 58 + - 61 + - 62 + - 56 + - 52 + - 58 + - 71 + - 81 + - 82 + - 87 + - 97 + - 111 + - 99 + - 105 + - 116 + - 123 + - 134 + - 138 + - 138 + - 143 + - 143 + - 142 + - 139 + - 133 + - 137 + - 131 + - 127 + - 129 + - 132 + - 133 + - 134 + - 138 + - 132 + - 129 + - 128 + - 124 + - 128 + - 126 + - 128 + - 124 + - 124 + - 123 + - 119 + - 115 + - 115 + - 112 + - 118 + - 109 + - 116 + - 116 + - 106 + - 99 + - 107 + - 104 + - 100 + - 94 + - 97 + - 92 + - 81 + - 75 + - 102 + - 104 + - 109 + - 105 + - 102 + - 105 + - 103 + - 103 + - 96 + - 91 + - 90 + - 98 + - 93 + - 92 + - 91 + - 87 + - 85 + - 84 + - 76 + - 71 + - 69 + - 66 + - 62 + - 60 + - 56 + - 47 + - 44 + - 38 + - 40 + - 44 + - 42 + - 48 + - 47 + - 47 + - 52 + - 49 + - 56 + - 57 + - 62 + - 71 + - 77 + - 86 + - 90 + - 102 + - 116 + - 136 + - 159 + - 177 + - 183 + - 183 + - 186 + - 193 + - 197 + - 192 + - 189 + - 194 + - 202 + - 207 + - 212 + - 220 + - 226 + - 226 + - 221 + - 224 + - 232 + - 245 + - 256 + - 266 + - 269 + - 270 + - 270 + - 277 + - 272 + - 274 + - 278 + - 278 + - 279 + - 280 + - 278 + - 272 + - 285 + - 284 + - 283 + - 288 + - 292 + - 293 + - 292 + - 296 + - 299 + - 302 + - 311 + - 311 + - 309 + - 309 + - 312 + - 314 + - 313 + - 317 + - 314 + - 317 + - 314 + - 302 + - 302 + - 306 + - 306 + - 307 + - 313 + - 325 + - 356 + - 8 + - 12 + - 13 + - 2 + - 358 + - 347 + - 337 + - 329 + - 319 + - 314 + - 316 + - 327 + - 325 + - 360 + - 3 + - 1 + - 1 + - 353 + - 1 + - 15 + - 18 + - 19 + - 20 + - 11 + - 349 + - 342 + - 3 + - 24 + - 20 + - 25 + - 23 + - 14 + - 19 + - 53 + - 90 + - 146 + - 245 + - 257 + - 255 + - 251 + - 240 + - 231 + - 215 + - 205 + - 204 + - 198 + - 200 + - 201 + - 200 + - 202 + - 198 + - 198 + - 189 + - 175 + - 160 + - 138 + - 128 + - 124 + - 117 + - 109 + - 108 + - 107 + - 99 + - 92 + - 88 + - 88 + - 88 + - 85 + - 76 + - 68 + - 71 + - 75 + - 74 + - 70 + - 68 + - 66 + - 67 + - 64 + - 60 + - 55 + - 51 + - 48 + - 52 + - 50 + - 54 + - 55 + - 53 + - 54 + - 53 + - 54 + - 56 + - 46 + - 48 + - 55 + - 52 + - 75 + - 78 + - 79 + - 104 + - 104 + - 190 + - 151 + - 99 + - 62 + - 67 + - 87 + - 72 + - 79 + - 68 + - 61 + - 56 + - 47 + - 36 + - 35 + - 41 + - 42 + - 38 + - 32 + - 15 + - 11 + - 356 + - 303 + - 263 + - 270 + - 284 + - 339 + - 357 + - 26 + - 37 + - 54 + - 65 + - 70 + - 61 + - 43 + - 31 + - 26 + - 40 + - 49 + - 51 + - 56 + - 56 + - 49 + - 47 + - 52 + - 54 + - 55 + - 59 + - 61 + - 54 + - 48 + - 49 + - 51 + - 47 + - 42 + - 48 + - 39 + - 35 + - 34 + - 27 + - 23 + - 28 + - 34 + - 38 + - 41 + - 43 + - 39 + - 34 + - 24 + - 27 + - 26 + - 27 + - 33 + - 38 + - 42 + - 43 + - 46 + - 46 + - 45 + - 46 + - 57 + - 63 + - 75 + - 87 + - 105 + - 123 + - 153 + - 175 + - 213 + - 235 + - 234 + - 232 + - 90 + - 45 + - 63 + - 360 + - 207 + - 219 + - 227 + - 224 + - 209 + - 196 + - 190 + - 187 + - 176 + - 169 + - 167 + - 167 + - 173 + - 181 + - 189 + - 226 + - 249 + - 238 + - 252 + - 250 + - 228 + - 230 + - 214 + - 187 + - 188 + - 190 + - 185 + - 182 + - 182 + - 181 + - 181 + - 177 + - 171 + - 169 + - 162 + - 148 + - 141 + - 134 + - 130 + - 124 + - 120 + - 122 + - 119 + - 112 + - 107 + - 103 + - 102 + - 99 + - 89 + - 87 + - 86 + - 88 + - 91 + - 93 + - 90 + - 87 + - 85 + - 82 + - 81 + - 86 + - 88 + - 85 + - 86 + - 87 + - 87 + - 85 + - 83 + - 83 + - 83 + - 83 + - 78 + - 73 + - 75 + - 76 + - 77 + - 79 + - 79 + - 77 + - 75 + - 74 + - 69 + - 65 + - 67 + - 66 + - 68 + - 70 + - 68 + - 66 + - 66 + - 63 + - 61 + - 60 + - 63 + - 59 + - 57 + - 56 + - 54 + - 54 + - 56 + - 56 + - 55 + - 55 + - 54 + - 54 + - 63 + - 57 + - 47 + - 45 + - 46 + - 49 + - 55 + - 62 + - 66 + - 69 + - 72 + - 74 + - 81 + - 89 + - 99 + - 112 + - 114 + - 99 + - 96 + - 104 + - 119 + - 115 + - 127 + - 128 + - 121 + - 117 + - 110 + - 108 + - 109 + - 111 + - 108 + - 111 + - 114 + - 116 + - 120 + - 117 + - 106 + - 108 + - 114 + - 116 + - 117 + - 121 + - 125 + - 128 + - 133 + - 134 + - 135 + - 138 + - 139 + - 137 + - 138 + - 133 + - 138 + - 143 + - 144 + - 150 + - 159 + - 163 + - 160 + - 167 + - 156 + - 150 + - 143 + - 134 + - 131 + - 130 + - 125 + - 121 + - 122 + - 119 + - 112 + - 109 + - 101 + - 99 + - 100 + - 101 + - 104 + - 104 + - 102 + - 104 + - 107 + - 102 + - 100 + - 101 + - 107 + - 104 + - 108 + - 107 + - 108 + - 108 + - 114 + - 127 + - 122 + - 119 + - 118 + - 115 + - 112 + - 110 + - 107 + - 96 + - 85 + - 78 + - 72 + - 68 + - 61 + - 54 + - 50 + - 47 + - 47 + - 42 + - 39 + - 41 + - 43 + - 46 + - 47 + - 43 + - 44 + - 44 + - 40 + - 46 + - 57 + - 59 + - 67 + - 74 + - 73 + - 76 + - 83 + - 80 + - 77 + - 84 + - 80 + - 81 + - 78 + - 78 + - 82 + - 86 + - 84 + - 85 + - 83 + - 79 + - 79 + - 79 + - 75 + - 73 + - 72 + - 70 + - 69 + - 70 + - 69 + - 68 + - 65 + - 65 + - 60 + - 57 + - 58 + - 55 + - 59 + - 60 + - 59 + - 58 + - 56 + - 55 + - 57 + - 57 + - 60 + - 63 + - 64 + - 67 + - 67 + - 68 + - 71 + - 69 + - 66 + - 55 + - 41 + - 323 + - 270 + - 264 + - 278 + - 315 + - 174 + - 172 + - 176 + - 179 + - 175 + - 175 + - 180 + - 191 + - 198 + - 201 + - 208 + - 213 + - 213 + - 217 + - 230 + - 260 + - 275 + - 272 + - 271 + - 267 + - 268 + - 269 + - 272 + - 272 + - 264 + - 269 + - 271 + - 271 + - 265 + - 261 + - 263 + - 259 + - 260 + - 258 + - 258 + - 256 + - 250 + - 247 + - 247 + - 245 + - 247 + - 248 + - 250 + - 250 + - 252 + - 254 + - 254 + - 255 + - 246 + - 245 + - 250 + - 257 + - 262 + - 262 + - 264 + - 266 + - 269 + - 269 + - 269 + - 267 + - 257 + - 253 + - 251 + - 251 + - 250 + - 249 + - 244 + - 241 + - 241 + - 246 + - 247 + - 244 + - 245 + - 248 + - 250 + - 251 + - 253 + - 253 + - 253 + - 252 + - 252 + - 254 + - 254 + - 254 + - 252 + - 254 + - 259 + - 260 + - 260 + - 262 + - 257 + - 251 + - 242 + - 242 + - 240 + - 239 + - 232 + - 229 + - 224 + - 230 + - 237 + - 236 + - 238 + - 239 + - 247 + - 262 + - 268 + - 263 + - 268 + - 269 + - 263 + - 269 + - 269 + - 273 + - 278 + - 268 + - 265 + - 259 + - 261 + - 266 + - 270 + - 278 + - 279 + - 273 + - 264 + - 261 + - 257 + - 258 + - 258 + - 253 + - 254 + - 259 + - 268 + - 271 + - 270 + - 272 + - 268 + - 272 + - 280 + - 284 + - 291 + - 292 + - 295 + - 297 + - 295 + - 292 + - 287 + - 286 + - 276 + - 269 + - 281 + - 288 + - 291 + - 285 + - 280 + - 268 + - 242 + - 231 + - 215 + - 232 + - 246 + - 250 + - 257 + - 264 + - 271 + - 286 + - 289 + - 293 + - 292 + - 291 + - 284 + - 289 + - 305 + - 309 + - 311 + - 310 + - 309 + - 311 + - 311 + - 309 + - 309 + - 301 + - 309 + - 314 + - 312 + - 310 + - 314 + - 314 + - 314 + - 309 + - 306 + - 307 + - 307 + - 309 + - 308 + - 317 + - 315 + - 315 + - 317 + - 318 + - 317 + - 314 + - 308 + - 299 + - 300 + - 300 + - 301 + - 300 + - 309 + - 309 + - 310 + - 305 + - 308 + - 311 + - 310 + - 312 + - 302 + - 304 + - 306 + - 305 + - 304 + - 299 + - 293 + - 278 + - 259 + - 255 + - 241 + - 218 + - 195 + - 169 + - 149 + - 139 + - 137 + - 145 + - 162 + - 198 + - 244 + - 250 + - 250 + - 232 + - 249 + - 249 + - 258 + - 263 + - 275 + - 275 + - 270 + - 270 + - 265 + - 262 + - 262 + - 269 + - 279 + - 273 + - 270 + - 264 + - 271 + - 275 + - 277 + - 279 + - 280 + - 282 + - 285 + - 283 + - 282 + - 280 + - 275 + - 272 + - 274 + - 269 + - 259 + - 234 + - 228 + - 185 + - 143 + - 141 + - 243 + - 256 + - 259 + - 296 + - 338 + - 316 + - 312 + - 303 + - 298 + - 295 + - 295 + - 293 + - 284 + - 286 + - 284 + - 289 + - 295 + - 299 + - 301 + - 297 + - 301 + - 305 + - 299 + - 296 + - 304 + - 301 + - 299 + - 297 + - 297 + - 300 + - 306 + - 326 + - 333 + - 315 + - 159 + - 166 + - 118 + - 124 + - 126 + - 127 + - 123 + - 121 + - 122 + - 129 + - 137 + - 141 + - 157 + - 181 + - 228 + - 235 + - 225 + - 220 + - 211 + - 217 + - 232 + - 233 + - 236 + - 241 + - 254 + - 248 + - 240 + - 240 + - 232 + - 229 + - 228 + - 221 + - 221 + - 216 + - 231 + - 241 + - 245 + - 242 + - 236 + - 232 + - 229 + - 234 + - 239 + - 244 + - 245 + - 242 + - 244 + - 243 + - 238 + - 235 + - 233 + - 232 + - 267 + - 277 + - 266 + - 260 + - 248 + - 230 + - 243 + - 255 + - 257 + - 258 + - 261 + - 258 + - 254 + - 255 + - 254 + - 252 + - 248 + - 250 + - 239 + - 246 + - 245 + - 245 + - 251 + - 251 + - 253 + - 254 + - 256 + - 258 + - 255 + - 246 + - 230 + - 224 + - 194 + - 159 + - 140 + - 140 + - 142 + - 144 + - 145 + - 141 + - 135 + - 137 + - 132 + - 132 + - 129 + - 127 + - 126 + - 125 + - 128 + - 127 + - 132 + - 137 + - 142 + - 157 + - 162 wind_speed: - - 1.36 - - 4.46 - - 7.18 - - 7.08 - - 6.67 - - 6.94 - - 6.96 - - 6.5 - - 6.13 - - 5.18 - - 1.96 - - 13.74 - - 13.79 - - 14.08 - - 13.82 - - 13.21 - - 14.31 - - 14.51 - - 13.4 - - 12.34 - - 11.85 - - 10.51 - - 8.9 - - 8.35 - - 8.28 - - 7.92 - - 7.5 - - 7.5 - - 7.4 - - 8.61 - - 7.63 - - 5.51 - - 4.88 - - 4.38 - - 3.22 - - 3.16 - - 3.98 - - 5.47 - - 5.14 - - 6.38 - - 7.16 - - 8.02 - - 9.77 - - 10.09 - - 9.85 - - 10.74 - - 10.88 - - 10.57 - - 10.24 - - 10.43 - - 11.47 - - 11.43 - - 10.89 - - 10.53 - - 9.19 - - 8.53 - - 7.7 - - 7.01 - - 7.06 - - 6.84 - - 6.48 - - 6.4 - - 6.64 - - 6.44 - - 6.63 - - 6.64 - - 7.51 - - 9.44 - - 9.53 - - 10.09 - - 10.66 - - 11.04 - - 11.14 - - 12.24 - - 12.68 - - 12.32 - - 12.85 - - 13.32 - - 12.67 - - 12.52 - - 11.1 - - 10.69 - - 10.75 - - 11.99 - - 12.12 - - 12.39 - - 11.23 - - 10.74 - - 12.62 - - 14.24 - - 13.04 - - 12.52 - - 12.86 - - 13.42 - - 13.63 - - 14.73 - - 16.84 - - 14.97 - - 9.08 - - 6.36 - - 6.1 - - 7.1 - - 7.82 - - 8.26 - - 9.14 - - 8.77 - - 7.96 - - 7.75 - - 6.6 - - 4.8 - - 3.18 - - 2.02 - - 1.22 - - 0.54 - - 1.66 - - 3.68 - - 5.48 - - 6.82 - - 7.78 - - 8.36 - - 8.53 - - 9.49 - - 10.76 - - 11.89 - - 12.06 - - 12.32 - - 12.44 - - 12.28 - - 11.72 - - 11.89 - - 12.76 - - 10.2 - - 10.12 - - 9.88 - - 10.4 - - 11.61 - - 11.15 - - 10.91 - - 11.5 - - 10.83 - - 10.98 - - 10.47 - - 9.95 - - 9.66 - - 9.1 - - 8.85 - - 7.22 - - 6.28 - - 7.33 - - 8.13 - - 8.19 - - 7.62 - - 7.91 - - 8.8 - - 8.64 - - 9.62 - - 10.88 - - 10.91 - - 10.29 - - 9.41 - - 9.7 - - 10.06 - - 10.75 - - 10.95 - - 11.24 - - 11.46 - - 11.99 - - 12.4 - - 12.47 - - 12.81 - - 12.41 - - 12.3 - - 11.93 - - 12.5 - - 13.08 - - 11.99 - - 11.06 - - 9.58 - - 9.14 - - 9.94 - - 10.51 - - 9.75 - - 9.14 - - 7.41 - - 8.18 - - 8.61 - - 9.2 - - 9.62 - - 9.5 - - 9.51 - - 9.35 - - 9.4 - - 9.26 - - 8.79 - - 9.71 - - 9.75 - - 9.97 - - 10.06 - - 9.66 - - 9.77 - - 9.43 - - 9.49 - - 8.36 - - 7.56 - - 7.0 - - 7.32 - - 7.34 - - 7.24 - - 7.54 - - 7.13 - - 6.96 - - 7.1 - - 7.27 - - 6.84 - - 6.39 - - 6.77 - - 6.8 - - 6.75 - - 5.41 - - 5.64 - - 5.52 - - 6.22 - - 6.26 - - 7.11 - - 7.69 - - 7.52 - - 7.73 - - 7.57 - - 7.27 - - 7.92 - - 8.18 - - 8.38 - - 8.34 - - 8.82 - - 9.34 - - 10.49 - - 11.72 - - 12.4 - - 13.41 - - 14.64 - - 15.75 - - 16.14 - - 16.16 - - 16.19 - - 16.95 - - 17.3 - - 14.19 - - 13.71 - - 12.26 - - 11.58 - - 10.94 - - 10.79 - - 10.02 - - 10.59 - - 11.65 - - 11.88 - - 11.86 - - 12.26 - - 11.88 - - 11.24 - - 11.68 - - 11.81 - - 10.53 - - 11.45 - - 11.45 - - 9.17 - - 9.4 - - 10.08 - - 9.74 - - 9.36 - - 9.14 - - 9.21 - - 9.03 - - 8.51 - - 8.85 - - 8.21 - - 5.32 - - 3.47 - - 1.43 - - 3.36 - - 5.59 - - 7.16 - - 7.78 - - 7.74 - - 8.64 - - 8.76 - - 9.85 - - 11.01 - - 11.83 - - 11.95 - - 10.97 - - 10.83 - - 11.81 - - 12.89 - - 12.47 - - 12.97 - - 12.5 - - 12.66 - - 13.42 - - 13.95 - - 12.48 - - 14.29 - - 13.65 - - 12.5 - - 12.37 - - 11.32 - - 9.98 - - 8.1 - - 10.24 - - 11.81 - - 12.65 - - 12.22 - - 12.44 - - 12.22 - - 11.85 - - 11.86 - - 11.4 - - 9.8 - - 9.74 - - 9.88 - - 8.63 - - 7.96 - - 8.13 - - 7.72 - - 7.42 - - 8.63 - - 10.12 - - 10.69 - - 12.09 - - 11.87 - - 12.1 - - 13.55 - - 12.96 - - 11.93 - - 12.67 - - 11.56 - - 12.18 - - 11.92 - - 11.57 - - 12.74 - - 13.32 - - 14.15 - - 13.81 - - 16.81 - - 17.76 - - 16.57 - - 17.29 - - 17.82 - - 17.81 - - 18.88 - - 19.36 - - 14.76 - - 12.98 - - 12.73 - - 12.74 - - 14.03 - - 15.11 - - 14.82 - - 14.84 - - 12.66 - - 11.91 - - 10.8 - - 8.94 - - 8.05 - - 8.38 - - 8.65 - - 8.15 - - 7.83 - - 6.09 - - 6.07 - - 8.22 - - 9.25 - - 7.83 - - 8.51 - - 8.54 - - 7.89 - - 7.65 - - 7.35 - - 7.43 - - 8.63 - - 8.26 - - 7.69 - - 7.84 - - 10.33 - - 7.63 - - 8.88 - - 8.76 - - 8.64 - - 7.87 - - 6.45 - - 5.8 - - 5.24 - - 6.3 - - 4.7 - - 3.0 - - 3.06 - - 2.24 - - 4.5 - - 11.19 - - 9.26 - - 8.25 - - 7.1 - - 8.19 - - 8.63 - - 8.08 - - 8.3 - - 7.71 - - 7.16 - - 7.11 - - 7.21 - - 8.08 - - 7.86 - - 8.41 - - 9.56 - - 8.63 - - 8.64 - - 8.47 - - 7.67 - - 7.14 - - 7.2 - - 7.46 - - 7.74 - - 6.62 - - 6.42 - - 6.69 - - 7.4 - - 7.67 - - 7.78 - - 8.13 - - 8.32 - - 8.11 - - 7.99 - - 6.95 - - 6.33 - - 7.67 - - 7.38 - - 7.65 - - 6.25 - - 6.66 - - 6.77 - - 6.22 - - 5.5 - - 5.46 - - 6.41 - - 5.41 - - 4.36 - - 4.31 - - 4.2 - - 4.44 - - 2.94 - - 2.06 - - 1.6 - - 1.51 - - 1.3 - - 1.92 - - 2.52 - - 2.38 - - 3.2 - - 4.84 - - 3.51 - - 2.56 - - 1.7 - - 0.86 - - 0.41 - - 0.71 - - 1.0 - - 2.11 - - 2.55 - - 3.18 - - 3.89 - - 2.83 - - 2.52 - - 3.35 - - 4.32 - - 5.38 - - 5.89 - - 5.58 - - 5.82 - - 5.55 - - 5.05 - - 5.71 - - 6.53 - - 6.46 - - 6.3 - - 6.14 - - 6.11 - - 6.39 - - 6.41 - - 6.45 - - 6.2 - - 5.54 - - 4.88 - - 4.57 - - 4.97 - - 4.57 - - 4.0 - - 3.93 - - 4.57 - - 5.23 - - 5.63 - - 5.56 - - 5.46 - - 5.26 - - 4.96 - - 5.16 - - 5.66 - - 5.28 - - 4.99 - - 4.94 - - 4.79 - - 4.74 - - 5.06 - - 5.09 - - 4.97 - - 4.97 - - 4.92 - - 5.22 - - 4.21 - - 4.12 - - 3.62 - - 3.71 - - 3.64 - - 3.98 - - 3.81 - - 2.73 - - 2.14 - - 3.69 - - 3.67 - - 3.64 - - 2.8 - - 3.83 - - 0.81 - - 1.92 - - 2.95 - - 3.38 - - 2.32 - - 2.1 - - 2.24 - - 2.66 - - 1.86 - - 2.2 - - 2.11 - - 3.14 - - 2.69 - - 3.49 - - 3.61 - - 3.61 - - 3.38 - - 3.76 - - 4.83 - - 4.63 - - 5.28 - - 5.91 - - 6.65 - - 6.96 - - 7.12 - - 7.21 - - 7.45 - - 7.12 - - 6.8 - - 7.19 - - 7.74 - - 7.78 - - 7.61 - - 7.67 - - 8.08 - - 6.93 - - 7.14 - - 7.71 - - 8.14 - - 8.56 - - 8.57 - - 8.56 - - 8.68 - - 8.82 - - 9.17 - - 9.23 - - 9.27 - - 9.19 - - 9.41 - - 9.62 - - 9.7 - - 9.76 - - 9.69 - - 9.69 - - 9.9 - - 9.97 - - 10.04 - - 10.4 - - 10.62 - - 9.85 - - 10.71 - - 9.84 - - 9.45 - - 9.34 - - 9.2 - - 9.01 - - 7.86 - - 6.18 - - 7.02 - - 6.75 - - 6.79 - - 6.51 - - 7.08 - - 7.14 - - 7.78 - - 8.27 - - 8.07 - - 7.89 - - 7.16 - - 6.55 - - 6.49 - - 6.61 - - 7.6 - - 6.48 - - 6.48 - - 7.29 - - 7.47 - - 8.18 - - 8.46 - - 8.35 - - 8.42 - - 8.18 - - 8.2 - - 7.98 - - 7.77 - - 8.23 - - 7.86 - - 7.43 - - 7.0 - - 6.93 - - 6.39 - - 5.98 - - 5.58 - - 4.75 - - 3.91 - - 3.04 - - 1.91 - - 1.5 - - 1.22 - - 0.86 - - 0.81 - - 1.4 - - 2.15 - - 3.42 - - 4.32 - - 4.55 - - 4.83 - - 5.16 - - 5.87 - - 6.29 - - 6.72 - - 7.36 - - 7.8 - - 6.95 - - 6.71 - - 7.46 - - 8.13 - - 8.16 - - 7.79 - - 8.14 - - 8.01 - - 8.0 - - 6.94 - - 7.02 - - 7.73 - - 8.6 - - 8.27 - - 7.56 - - 7.73 - - 8.28 - - 8.14 - - 8.19 - - 8.46 - - 8.41 - - 8.6 - - 8.2 - - 8.11 - - 7.82 - - 7.13 - - 7.28 - - 7.03 - - 8.33 - - 10.25 - - 10.62 - - 10.48 - - 11.93 - - 11.9 - - 11.36 - - 11.86 - - 11.81 - - 12.37 - - 13.55 - - 14.33 - - 15.03 - - 15.65 - - 15.87 - - 12.65 - - 12.16 - - 12.98 - - 13.6 - - 13.8 - - 14.58 - - 14.34 - - 14.65 - - 14.07 - - 13.32 - - 13.42 - - 13.74 - - 13.91 - - 14.16 - - 17.41 - - 16.77 - - 19.41 - - 16.9 - - 15.99 - - 15.96 - - 15.63 - - 15.37 - - 15.09 - - 14.6 - - 12.98 - - 11.6 - - 10.41 - - 10.43 - - 10.16 - - 8.83 - - 8.04 - - 9.3 - - 11.12 - - 12.21 - - 12.35 - - 13.3 - - 13.1 - - 15.01 - - 13.73 - - 14.41 - - 15.0 - - 14.2 - - 15.3 - - 14.3 - - 14.46 - - 15.75 - - 16.48 - - 15.88 - - 15.85 - - 13.95 - - 14.53 - - 13.72 - - 13.13 - - 12.84 - - 12.52 - - 12.25 - - 12.02 - - 13.45 - - 12.8 - - 13.65 - - 14.25 - - 13.75 - - 15.09 - - 16.3 - - 16.82 - - 18.07 - - 21.11 - - 18.69 - - 15.26 - - 11.77 - - 9.22 - - 7.2 - - 5.63 - - 4.53 - - 6.72 - - 8.85 - - 8.43 - - 6.24 - - 4.69 - - 3.73 - - 2.88 - - 2.47 - - 1.58 - - 0.5 - - 1.3 - - 2.79 - - 3.62 - - 3.97 - - 3.75 - - 4.69 - - 5.91 - - 6.97 - - 8.36 - - 8.83 - - 9.5 - - 11.34 - - 12.02 - - 11.04 - - 11.3 - - 12.2 - - 11.12 - - 11.9 - - 16.33 - - 16.51 - - 16.68 - - 17.22 - - 17.85 - - 18.45 - - 17.9 - - 14.15 - - 13.52 - - 11.96 - - 8.02 - - 8.4 - - 8.27 - - 8.65 - - 7.79 - - 7.16 - - 6.04 - - 5.36 - - 4.81 - - 4.11 - - 3.92 - - 3.54 - - 4.85 - - 6.43 - - 6.12 - - 6.2 - - 6.33 - - 5.9 - - 5.35 - - 4.29 - - 3.94 - - 5.04 - - 5.02 - - 5.46 - - 5.87 - - 5.55 - - 6.47 - - 7.61 - - 8.17 - - 8.28 - - 8.83 - - 9.28 - - 9.98 - - 9.85 - - 10.11 - - 10.2 - - 10.5 - - 10.1 - - 8.91 - - 7.47 - - 7.79 - - 4.32 - - 8.3 - - 9.86 - - 9.04 - - 9.51 - - 8.83 - - 8.83 - - 8.73 - - 8.59 - - 8.08 - - 7.83 - - 8.14 - - 7.56 - - 7.29 - - 6.56 - - 6.37 - - 4.36 - - 4.66 - - 4.82 - - 4.48 - - 4.6 - - 4.82 - - 5.24 - - 4.96 - - 4.46 - - 3.88 - - 2.06 - - 0.76 - - 3.26 - - 3.75 - - 4.3 - - 4.6 - - 5.2 - - 5.8 - - 6.09 - - 6.05 - - 6.67 - - 7.28 - - 7.38 - - 7.82 - - 8.13 - - 8.42 - - 8.34 - - 7.69 - - 7.38 - - 7.88 - - 8.51 - - 8.68 - - 8.65 - - 8.14 - - 9.18 - - 10.06 - - 9.06 - - 8.9 - - 8.08 - - 7.07 - - 7.53 - - 7.72 - - 7.7 - - 7.24 - - 7.13 - - 7.08 - - 6.66 - - 6.66 - - 6.91 - - 7.65 - - 7.65 - - 7.78 - - 7.96 - - 8.15 - - 8.45 - - 8.7 - - 8.74 - - 8.43 - - 8.41 - - 8.9 - - 9.09 - - 8.65 - - 8.54 - - 8.86 - - 10.2 - - 10.41 - - 11.33 - - 11.95 - - 12.44 - - 13.0 - - 12.85 - - 12.7 - - 12.57 - - 12.8 - - 12.95 - - 13.12 - - 13.07 - - 12.3 - - 11.78 - - 10.88 - - 9.71 - - 9.12 - - 9.29 - - 8.9 - - 10.33 - - 10.01 - - 11.03 - - 11.08 - - 11.6 - - 11.99 - - 12.26 - - 12.91 - - 13.16 - - 12.9 - - 12.25 - - 11.07 - - 10.5 - - 9.71 - - 8.83 - - 8.39 - - 8.01 - - 7.41 - - 6.11 - - 4.59 - - 5.19 - - 6.74 - - 8.73 - - 10.25 - - 10.22 - - 12.48 - - 12.31 - - 12.54 - - 12.98 - - 13.05 - - 13.15 - - 13.3 - - 13.75 - - 13.81 - - 13.7 - - 13.71 - - 12.92 - - 12.7 - - 13.44 - - 13.76 - - 14.12 - - 14.43 - - 14.48 - - 13.37 - - 11.87 - - 11.32 - - 11.38 - - 11.35 - - 11.51 - - 10.98 - - 9.14 - - 10.02 - - 9.74 - - 8.77 - - 8.95 - - 8.91 - - 8.41 - - 8.63 - - 8.1 - - 7.56 - - 6.84 - - 6.87 - - 7.16 - - 7.06 - - 7.22 - - 7.41 - - 7.76 - - 7.2 - - 7.03 - - 7.48 - - 6.55 - - 7.2 - - 7.16 - - 7.82 - - 8.02 - - 8.45 - - 8.06 - - 8.43 - - 8.33 - - 8.19 - - 7.81 - - 7.64 - - 7.82 - - 7.61 - - 7.61 - - 7.74 - - 8.15 - - 8.3 - - 8.22 - - 8.57 - - 8.7 - - 8.05 - - 7.45 - - 7.01 - - 6.13 - - 6.72 - - 6.56 - - 6.01 - - 5.8 - - 5.66 - - 5.85 - - 6.0 - - 5.95 - - 5.64 - - 5.56 - - 5.26 - - 4.92 - - 4.78 - - 4.16 - - 5.27 - - 4.43 - - 4.54 - - 5.19 - - 5.1 - - 4.46 - - 4.31 - - 4.95 - - 4.23 - - 4.04 - - 3.77 - - 3.3 - - 2.48 - - 1.66 - - 2.33 - - 3.89 - - 5.46 - - 6.66 - - 7.41 - - 7.25 - - 7.14 - - 7.27 - - 7.13 - - 7.06 - - 6.67 - - 6.38 - - 6.31 - - 6.1 - - 5.61 - - 5.23 - - 5.79 - - 5.46 - - 4.02 - - 4.61 - - 4.93 - - 4.41 - - 4.74 - - 5.53 - - 6.05 - - 6.38 - - 6.96 - - 8.01 - - 7.93 - - 8.63 - - 11.22 - - 10.73 - - 8.88 - - 8.58 - - 8.2 - - 7.44 - - 6.96 - - 7.16 - - 6.48 - - 5.79 - - 5.69 - - 5.81 - - 5.66 - - 5.75 - - 5.58 - - 6.09 - - 6.72 - - 6.52 - - 6.06 - - 7.04 - - 7.76 - - 8.3 - - 7.81 - - 7.28 - - 6.76 - - 7.18 - - 7.59 - - 7.95 - - 8.3 - - 8.7 - - 8.85 - - 9.63 - - 9.62 - - 9.97 - - 11.78 - - 12.16 - - 14.68 - - 15.4 - - 17.3 - - 19.94 - - 20.48 - - 21.49 - - 23.54 - - 21.13 - - 18.68 - - 17.98 - - 17.08 - - 18.12 - - 18.73 - - 17.4 - - 15.59 - - 12.41 - - 12.02 - - 11.33 - - 11.21 - - 10.26 - - 10.26 - - 8.93 - - 9.06 - - 7.91 - - 7.62 - - 6.8 - - 7.16 - - 7.78 - - 8.42 - - 8.91 - - 9.37 - - 9.46 - - 9.74 - - 9.75 - - 9.0 - - 8.75 - - 8.31 - - 8.16 - - 8.16 - - 7.87 - - 7.86 - - 7.67 - - 8.19 - - 8.44 - - 8.25 - - 7.77 - - 7.04 - - 6.82 - - 7.42 - - 9.12 - - 9.05 - - 9.05 - - 8.76 - - 8.9 - - 8.4 - - 8.9 - - 9.41 - - 9.65 - - 10.65 - - 10.78 - - 11.68 - - 12.18 - - 12.43 - - 13.03 - - 14.45 - - 14.97 - - 15.88 - - 16.57 - - 15.85 - - 15.04 - - 14.98 - - 15.13 - - 15.0 - - 14.91 - - 14.04 - - 13.35 - - 14.0 - - 14.84 - - 15.94 - - 16.1 - - 16.08 - - 16.07 - - 14.85 - - 15.71 - - 15.89 - - 15.6 - - 14.74 - - 15.25 - - 13.84 - - 13.56 - - 12.71 - - 12.27 - - 11.88 - - 11.61 - - 11.28 - - 10.2 - - 9.04 - - 10.42 - - 9.68 - - 8.74 - - 8.51 - - 7.69 - - 6.64 - - 5.96 - - 5.7 - - 4.37 - - 3.26 - - 1.75 - - 1.91 - - 3.23 - - 5.07 - - 5.63 - - 5.81 - - 5.98 - - 6.44 - - 6.65 - - 6.59 - - 6.39 - - 6.2 - - 6.0 - - 6.04 - - 5.22 - - 6.36 - - 5.11 - - 5.26 - - 6.48 - - 6.16 - - 7.67 - - 8.22 - - 8.28 - - 8.47 - - 7.89 - - 7.53 - - 7.12 - - 6.2 - - 6.13 - - 5.26 - - 4.33 - - 3.58 - - 3.33 - - 3.9 - - 4.25 - - 5.24 - - 5.8 - - 6.95 - - 7.42 - - 8.5 - - 8.91 - - 10.04 - - 10.82 - - 10.75 - - 9.9 - - 9.35 - - 9.3 - - 8.92 - - 8.32 - - 8.39 - - 9.1 - - 9.75 - - 10.53 - - 11.81 - - 12.43 - - 12.7 - - 12.17 - - 11.15 - - 9.94 - - 10.53 - - 10.83 - - 10.07 - - 10.85 - - 10.68 - - 9.35 - - 9.27 - - 10.26 - - 11.61 - - 11.04 - - 10.6 - - 10.9 - - 11.52 - - 12.03 - - 12.12 - - 11.61 - - 10.77 - - 9.26 - - 9.38 - - 10.73 - - 10.73 - - 10.99 - - 10.6 - - 9.88 - - 9.71 - - 9.69 - - 9.61 - - 10.33 - - 10.38 - - 10.58 - - 11.33 - - 11.45 - - 11.02 - - 10.16 - - 9.24 - - 9.36 - - 9.43 - - 9.11 - - 8.64 - - 8.16 - - 7.24 - - 6.53 - - 7.18 - - 7.83 - - 7.28 - - 6.75 - - 6.86 - - 7.13 - - 7.6 - - 7.0 - - 6.51 - - 6.3 - - 6.73 - - 7.65 - - 7.4 - - 7.13 - - 6.57 - - 5.64 - - 4.8 - - 5.22 - - 5.54 - - 5.66 - - 5.57 - - 5.39 - - 5.53 - - 5.51 - - 4.37 - - 4.02 - - 4.52 - - 5.09 - - 5.02 - - 4.67 - - 4.46 - - 3.91 - - 3.5 - - 2.55 - - 2.75 - - 2.62 - - 3.48 - - 3.85 - - 4.05 - - 4.37 - - 5.03 - - 5.67 - - 5.43 - - 4.75 - - 4.27 - - 4.68 - - 4.22 - - 4.61 - - 4.3 - - 3.67 - - 3.23 - - 2.9 - - 2.42 - - 2.4 - - 2.77 - - 2.51 - - 2.61 - - 2.51 - - 2.73 - - 3.13 - - 3.04 - - 2.9 - - 3.03 - - 3.03 - - 2.82 - - 2.95 - - 3.18 - - 3.23 - - 3.58 - - 4.29 - - 4.08 - - 3.47 - - 3.66 - - 2.58 - - 1.17 - - 0.82 - - 0.51 - - 1.77 - - 1.91 - - 1.56 - - 1.22 - - 1.32 - - 2.04 - - 2.55 - - 2.31 - - 2.04 - - 2.1 - - 3.2 - - 4.57 - - 4.59 - - 5.28 - - 4.26 - - 4.04 - - 3.83 - - 4.96 - - 5.46 - - 4.94 - - 4.62 - - 4.25 - - 5.78 - - 5.63 - - 4.88 - - 4.71 - - 4.21 - - 3.83 - - 2.92 - - 3.47 - - 3.83 - - 4.05 - - 4.31 - - 4.56 - - 5.35 - - 5.59 - - 5.37 - - 5.24 - - 7.14 - - 7.49 - - 7.65 - - 7.58 - - 6.26 - - 5.69 - - 5.45 - - 4.63 - - 3.75 - - 3.45 - - 2.84 - - 1.78 - - 2.12 - - 3.26 - - 4.71 - - 5.19 - - 5.73 - - 7.29 - - 8.39 - - 10.62 - - 13.22 - - 13.16 - - 13.02 - - 13.44 - - 13.67 - - 13.55 - - 13.38 - - 13.33 - - 13.3 - - 12.8 - - 12.96 - - 13.4 - - 13.15 - - 12.65 - - 12.06 - - 10.65 - - 8.67 - - 8.73 - - 7.58 - - 6.51 - - 5.85 - - 6.23 - - 6.97 - - 7.44 - - 8.77 - - 8.7 - - 9.53 - - 10.17 - - 9.8 - - 9.1 - - 8.46 - - 8.1 - - 7.0 - - 7.29 - - 6.4 - - 5.77 - - 5.85 - - 5.88 - - 6.08 - - 5.77 - - 5.69 - - 6.16 - - 6.67 - - 6.62 - - 4.67 - - 4.97 - - 5.09 - - 4.96 - - 5.0 - - 4.77 - - 4.26 - - 3.86 - - 4.12 - - 4.27 - - 4.63 - - 5.7 - - 6.29 - - 5.89 - - 4.88 - - 5.32 - - 5.8 - - 5.87 - - 6.22 - - 6.31 - - 5.78 - - 5.75 - - 5.02 - - 4.34 - - 4.56 - - 3.75 - - 2.85 - - 2.92 - - 4.0 - - 5.78 - - 7.69 - - 8.59 - - 10.14 - - 12.13 - - 11.88 - - 12.7 - - 10.73 - - 8.55 - - 7.85 - - 6.84 - - 5.97 - - 5.0 - - 5.56 - - 6.69 - - 11.12 - - 16.35 - - 17.09 - - 15.08 - - 13.77 - - 13.45 - - 12.62 - - 11.18 - - 9.3 - - 8.18 - - 6.92 - - 5.81 - - 5.58 - - 5.61 - - 4.58 - - 3.48 - - 3.51 - - 3.32 - - 3.31 - - 3.21 - - 2.83 - - 2.44 - - 1.62 - - 0.58 - - 0.36 - - 0.76 - - 0.41 - - 0.5 - - 0.28 - - 0.85 - - 1.5 - - 1.79 - - 2.12 - - 2.85 - - 2.35 - - 1.75 - - 1.49 - - 1.72 - - 1.97 - - 2.4 - - 4.43 - - 4.61 - - 4.79 - - 4.89 - - 5.37 - - 5.69 - - 6.08 - - 6.57 - - 7.56 - - 5.92 - - 6.39 - - 6.85 - - 7.38 - - 7.26 - - 7.69 - - 7.34 - - 5.63 - - 4.71 - - 5.72 - - 6.27 - - 6.16 - - 5.83 - - 5.22 - - 4.4 - - 4.05 - - 3.04 - - 2.72 - - 3.32 - - 3.98 - - 5.14 - - 5.47 - - 4.58 - - 4.25 - - 3.49 - - 3.27 - - 3.08 - - 2.92 - - 2.62 - - 3.11 - - 4.62 - - 5.19 - - 5.68 - - 6.5 - - 6.49 - - 6.62 - - 7.22 - - 8.51 - - 8.71 - - 7.37 - - 7.88 - - 7.21 - - 7.07 - - 5.06 - - 4.74 - - 5.74 - - 5.95 - - 5.9 - - 8.5 - - 8.5 - - 9.08 - - 7.42 - - 7.23 - - 9.24 - - 9.13 - - 9.45 - - 9.49 - - 8.99 - - 9.77 - - 10.68 - - 10.53 - - 10.01 - - 9.12 - - 8.94 - - 8.34 - - 6.93 - - 5.59 - - 4.03 - - 2.02 - - 0.85 - - 2.06 - - 6.74 - - 5.92 - - 6.36 - - 8.65 - - 9.36 - - 10.55 - - 9.48 - - 10.03 - - 10.4 - - 10.74 - - 10.74 - - 9.46 - - 8.48 - - 9.59 - - 10.43 - - 11.09 - - 10.04 - - 9.9 - - 10.56 - - 10.78 - - 10.96 - - 10.58 - - 10.21 - - 11.73 - - 11.65 - - 13.45 - - 14.93 - - 17.07 - - 16.49 - - 18.31 - - 18.53 - - 19.67 - - 19.82 - - 19.82 - - 19.46 - - 18.94 - - 17.98 - - 16.45 - - 15.62 - - 15.15 - - 13.99 - - 9.39 - - 5.5 - - 7.32 - - 8.24 - - 8.5 - - 8.3 - - 9.84 - - 10.17 - - 11.72 - - 13.43 - - 13.84 - - 12.39 - - 12.99 - - 12.61 - - 11.4 - - 11.22 - - 9.58 - - 9.83 - - 10.05 - - 9.5 - - 9.24 - - 9.6 - - 9.79 - - 9.27 - - 8.98 - - 7.69 - - 7.99 - - 7.76 - - 8.14 - - 7.34 - - 7.89 - - 8.65 - - 9.45 - - 10.14 - - 10.21 - - 9.61 - - 8.07 - - 11.32 - - 10.82 - - 13.72 - - 14.04 - - 12.97 - - 11.09 - - 8.79 - - 6.9 - - 4.79 - - 2.72 - - 1.71 - - 3.01 - - 6.26 - - 6.83 - - 8.28 - - 9.48 - - 9.53 - - 9.94 - - 9.7 - - 9.13 - - 11.81 - - 12.15 - - 12.75 - - 13.3 - - 13.73 - - 13.67 - - 13.19 - - 12.82 - - 14.01 - - 13.17 - - 13.04 - - 12.68 - - 12.59 - - 11.93 - - 11.63 - - 11.77 - - 12.44 - - 11.04 - - 10.82 - - 10.79 - - 10.61 - - 10.71 - - 10.4 - - 9.4 - - 9.44 - - 9.7 - - 7.73 - - 8.78 - - 8.49 - - 7.28 - - 7.02 - - 7.18 - - 6.8 - - 6.3 - - 5.63 - - 5.14 - - 4.88 - - 4.88 - - 5.09 - - 4.2 - - 4.52 - - 4.47 - - 3.89 - - 3.68 - - 3.54 - - 3.32 - - 3.61 - - 2.19 - - 1.89 - - 2.8 - - 2.83 - - 3.23 - - 3.53 - - 3.54 - - 3.4 - - 3.91 - - 2.92 - - 3.44 - - 4.12 - - 3.91 - - 3.32 - - 3.7 - - 5.3 - - 6.98 - - 8.06 - - 7.82 - - 7.94 - - 9.36 - - 10.84 - - 8.6 - - 7.7 - - 6.04 - - 5.06 - - 4.19 - - 7.25 - - 6.67 - - 6.65 - - 6.31 - - 5.64 - - 6.13 - - 6.69 - - 6.96 - - 7.15 - - 7.16 - - 7.62 - - 8.01 - - 7.34 - - 8.35 - - 7.57 - - 7.26 - - 6.55 - - 6.85 - - 6.2 - - 5.88 - - 5.87 - - 6.35 - - 7.18 - - 7.43 - - 7.12 - - 6.62 - - 6.51 - - 6.33 - - 5.88 - - 4.93 - - 4.59 - - 4.33 - - 4.51 - - 4.1 - - 2.79 - - 3.06 - - 1.79 - - 2.11 - - 3.1 - - 3.6 - - 4.06 - - 4.63 - - 5.66 - - 6.43 - - 6.8 - - 7.08 - - 6.98 - - 6.48 - - 7.56 - - 7.76 - - 7.81 - - 8.7 - - 9.57 - - 9.81 - - 9.71 - - 9.27 - - 8.86 - - 8.91 - - 9.4 - - 9.39 - - 8.66 - - 8.95 - - 9.3 - - 10.15 - - 9.96 - - 9.65 - - 10.77 - - 11.23 - - 11.45 - - 13.24 - - 13.42 - - 14.67 - - 14.73 - - 14.07 - - 13.94 - - 13.23 - - 10.93 - - 9.53 - - 9.69 - - 9.26 - - 8.99 - - 8.99 - - 8.77 - - 8.6 - - 7.16 - - 7.79 - - 7.18 - - 7.41 - - 8.6 - - 10.31 - - 11.24 - - 9.71 - - 12.23 - - 11.57 - - 12.73 - - 13.1 - - 12.11 - - 11.98 - - 10.57 - - 10.82 - - 9.87 - - 10.64 - - 10.26 - - 10.32 - - 10.85 - - 10.41 - - 10.33 - - 9.84 - - 9.82 - - 8.98 - - 9.1 - - 7.73 - - 8.99 - - 7.81 - - 9.24 - - 12.48 - - 13.74 - - 13.79 - - 13.29 - - 12.75 - - 15.23 - - 14.14 - - 13.07 - - 13.35 - - 11.95 - - 11.98 - - 10.98 - - 11.49 - - 11.46 - - 11.57 - - 11.46 - - 11.52 - - 9.62 - - 9.95 - - 10.44 - - 10.6 - - 9.68 - - 7.99 - - 8.23 - - 8.7 - - 8.43 - - 9.49 - - 8.66 - - 9.1 - - 8.93 - - 8.96 - - 7.35 - - 6.93 - - 6.81 - - 5.74 - - 5.77 - - 6.05 - - 6.96 - - 7.59 - - 6.86 - - 7.62 - - 8.23 - - 8.32 - - 8.98 - - 10.02 - - 10.23 - - 9.95 - - 9.14 - - 9.13 - - 8.68 - - 8.23 - - 8.45 - - 8.14 - - 7.16 - - 8.0 - - 8.02 - - 8.75 - - 8.45 - - 7.46 - - 7.42 - - 7.55 - - 7.21 - - 5.39 - - 3.67 - - 2.82 - - 1.91 - - 0.78 - - 3.13 - - 4.97 - - 7.07 - - 7.73 - - 7.47 - - 7.59 - - 7.71 - - 10.0 - - 10.07 - - 11.03 - - 11.51 - - 11.48 - - 12.38 - - 10.82 - - 10.03 - - 9.08 - - 7.52 - - 6.73 - - 5.83 - - 5.0 - - 3.54 - - 3.54 - - 3.22 - - 4.69 - - 4.92 - - 5.57 - - 4.27 - - 4.4 - - 4.93 - - 4.61 - - 3.94 - - 3.79 - - 3.67 - - 5.46 - - 6.45 - - 7.85 - - 8.46 - - 7.85 - - 8.94 - - 8.63 - - 8.9 - - 9.12 - - 8.98 - - 9.62 - - 10.06 - - 9.59 - - 9.77 - - 9.81 - - 8.19 - - 7.55 - - 7.94 - - 8.52 - - 8.44 - - 7.99 - - 8.1 - - 7.36 - - 7.32 - - 6.44 - - 6.85 - - 6.5 - - 5.82 - - 4.43 - - 4.02 - - 3.85 - - 4.0 - - 4.53 - - 5.37 - - 5.71 - - 6.09 - - 6.22 - - 6.96 - - 7.3 - - 6.78 - - 7.48 - - 8.8 - - 9.71 - - 9.62 - - 9.68 - - 8.86 - - 7.1 - - 8.85 - - 9.02 - - 8.86 - - 8.48 - - 7.53 - - 7.57 - - 7.82 - - 7.32 - - 7.17 - - 7.8 - - 8.94 - - 9.14 - - 8.85 - - 8.54 - - 8.28 - - 7.86 - - 7.0 - - 5.63 - - 4.3 - - 3.82 - - 3.16 - - 3.13 - - 2.38 - - 1.86 - - 1.53 - - 1.58 - - 3.16 - - 4.31 - - 6.02 - - 7.22 - - 8.31 - - 8.17 - - 8.65 - - 9.35 - - 9.62 - - 10.47 - - 11.11 - - 10.42 - - 10.53 - - 10.44 - - 11.61 - - 11.72 - - 11.68 - - 11.59 - - 11.56 - - 11.41 - - 11.45 - - 11.29 - - 11.49 - - 11.18 - - 10.74 - - 10.74 - - 10.7 - - 10.52 - - 10.02 - - 9.17 - - 8.56 - - 8.46 - - 8.0 - - 7.96 - - 7.96 - - 7.62 - - 7.78 - - 7.66 - - 7.66 - - 7.39 - - 7.34 - - 7.31 - - 6.85 - - 7.44 - - 5.12 - - 5.35 - - 6.02 - - 7.52 - - 7.75 - - 7.48 - - 7.29 - - 6.98 - - 6.62 - - 5.98 - - 6.14 - - 5.85 - - 5.0 - - 4.55 - - 4.21 - - 4.34 - - 4.97 - - 5.44 - - 5.06 - - 4.65 - - 4.55 - - 4.88 - - 5.13 - - 4.97 - - 4.14 - - 3.9 - - 3.81 - - 3.31 - - 3.2 - - 3.0 - - 2.38 - - 2.69 - - 3.16 - - 3.04 - - 1.86 - - 1.58 - - 4.32 - - 1.71 - - 3.34 - - 4.72 - - 3.8 - - 4.6 - - 4.69 - - 4.05 - - 3.73 - - 3.5 - - 3.61 - - 3.96 - - 3.45 - - 4.61 - - 5.1 - - 4.53 - - 4.48 - - 4.36 - - 4.16 - - 3.85 - - 3.77 - - 4.52 - - 5.55 - - 6.11 - - 5.92 - - 4.8 - - 4.65 - - 4.24 - - 3.75 - - 2.69 - - 1.61 - - 1.7 - - 2.42 - - 4.08 - - 3.42 - - 2.95 - - 3.05 - - 2.15 - - 2.02 - - 4.68 - - 4.11 - - 3.68 - - 2.33 - - 2.28 - - 4.82 - - 5.8 - - 6.02 - - 6.01 - - 5.22 - - 4.44 - - 3.26 - - 2.82 - - 4.53 - - 3.94 - - 3.72 - - 3.83 - - 4.47 - - 5.39 - - 5.94 - - 6.87 - - 4.16 - - 3.76 - - 5.6 - - 6.72 - - 7.54 - - 7.92 - - 8.34 - - 8.24 - - 7.85 - - 7.49 - - 8.36 - - 8.77 - - 9.71 - - 10.39 - - 10.31 - - 10.22 - - 9.84 - - 9.93 - - 9.84 - - 9.7 - - 9.35 - - 9.06 - - 8.66 - - 7.77 - - 7.35 - - 7.33 - - 7.16 - - 7.3 - - 7.59 - - 7.76 - - 7.98 - - 8.07 - - 7.75 - - 7.46 - - 7.23 - - 6.71 - - 7.06 - - 7.28 - - 6.8 - - 6.45 - - 5.76 - - 5.55 - - 5.48 - - 5.73 - - 5.97 - - 6.22 - - 5.91 - - 5.55 - - 5.22 - - 4.65 - - 4.32 - - 4.0 - - 3.96 - - 4.16 - - 4.13 - - 4.0 - - 3.91 - - 4.0 - - 4.7 - - 5.51 - - 6.05 - - 6.21 - - 5.7 - - 4.94 - - 4.24 - - 3.26 - - 2.92 - - 2.92 - - 2.92 - - 3.19 - - 3.34 - - 2.88 - - 3.01 - - 2.38 - - 2.39 - - 2.98 - - 3.02 - - 4.32 - - 5.14 - - 3.91 - - 3.11 - - 5.01 - - 6.26 - - 7.52 - - 7.74 - - 7.48 - - 8.2 - - 8.41 - - 8.78 - - 9.12 - - 9.32 - - 9.68 - - 9.82 - - 9.84 - - 9.72 - - 8.61 - - 8.57 - - 9.54 - - 9.65 - - 9.88 - - 12.0 - - 11.14 - - 10.41 - - 10.46 - - 13.6 - - 13.51 - - 13.18 - - 12.39 - - 11.33 - - 12.49 - - 12.79 - - 13.49 - - 12.22 - - 9.39 - - 9.27 - - 10.07 - - 9.58 - - 8.65 - - 8.4 - - 8.71 - - 8.7 - - 8.44 - - 7.58 - - 8.07 - - 8.29 - - 8.4 - - 8.23 - - 7.68 - - 8.19 - - 8.28 - - 6.85 - - 6.3 - - 6.1 - - 6.35 - - 6.8 - - 5.87 - - 6.91 - - 7.68 - - 8.77 - - 9.6 - - 10.54 - - 11.32 - - 11.76 - - 10.89 - - 10.4 - - 10.82 - - 10.1 - - 11.78 - - 12.54 - - 12.53 - - 12.13 - - 10.67 - - 9.6 - - 7.86 - - 7.36 - - 7.51 - - 7.73 - - 7.0 - - 6.57 - - 5.42 - - 5.98 - - 4.52 - - 3.9 - - 4.98 - - 5.47 - - 5.98 - - 6.67 - - 5.86 - - 6.23 - - 8.68 - - 10.36 - - 9.22 - - 9.04 - - 9.35 - - 10.21 - - 9.39 - - 9.32 - - 7.88 - - 8.34 - - 8.63 - - 9.39 - - 9.46 - - 9.32 - - 8.85 - - 8.61 - - 9.0 - - 9.34 - - 9.3 - - 8.3 - - 7.69 - - 7.2 - - 7.34 - - 4.57 - - 4.74 - - 4.1 - - 3.92 - - 3.47 - - 4.32 - - 4.18 - - 5.0 - - 5.57 - - 5.55 - - 5.19 - - 5.29 - - 5.27 - - 5.23 - - 6.11 - - 6.11 - - 5.78 - - 5.82 - - 5.82 - - 6.18 - - 6.67 - - 6.98 - - 6.95 - - 6.37 - - 7.16 - - 7.68 - - 7.73 - - 6.99 - - 5.97 - - 5.68 - - 5.6 - - 6.04 - - 6.43 - - 5.91 - - 5.2 - - 5.2 - - 5.08 - - 5.38 - - 5.28 - - 5.5 - - 5.06 - - 4.72 - - 3.85 - - 3.69 - - 4.19 - - 4.89 - - 4.87 - - 3.85 - - 2.77 - - 3.31 - - 4.29 - - 3.94 - - 4.03 - - 3.3 - - 2.79 - - 2.78 - - 3.36 - - 2.69 - - 2.2 - - 3.84 - - 5.59 - - 5.73 - - 4.65 - - 4.72 - - 4.33 - - 4.6 - - 5.02 - - 5.66 - - 6.52 - - 7.15 - - 7.65 - - 6.75 - - 5.33 - - 5.3 - - 6.13 - - 6.5 - - 6.62 - - 6.54 - - 7.0 - - 7.05 - - 6.95 - - 6.17 - - 6.58 - - 7.24 - - 6.74 - - 6.38 - - 6.44 - - 6.73 - - 6.56 - - 6.78 - - 7.29 - - 7.71 - - 7.85 - - 8.22 - - 7.97 - - 8.1 - - 6.22 - - 6.8 - - 7.96 - - 8.37 - - 8.59 - - 8.94 - - 8.94 - - 8.77 - - 8.42 - - 7.61 - - 7.41 - - 8.16 - - 8.06 - - 8.2 - - 8.41 - - 8.64 - - 8.29 - - 7.4 - - 6.12 - - 4.88 - - 4.8 - - 6.94 - - 7.7 - - 7.0 - - 6.29 - - 7.52 - - 7.96 - - 8.24 - - 7.92 - - 8.32 - - 8.77 - - 9.13 - - 8.72 - - 7.99 - - 7.78 - - 8.16 - - 8.65 - - 8.85 - - 8.44 - - 7.98 - - 7.65 - - 7.72 - - 8.64 - - 9.36 - - 9.59 - - 9.75 - - 9.29 - - 8.35 - - 8.54 - - 8.83 - - 9.44 - - 9.26 - - 10.15 - - 10.14 - - 9.96 - - 9.74 - - 9.6 - - 9.44 - - 9.54 - - 9.83 - - 9.67 - - 9.48 - - 9.01 - - 8.68 - - 7.93 - - 7.6 - - 7.71 - - 7.8 - - 7.71 - - 7.51 - - 7.4 - - 7.91 - - 5.22 - - 5.67 - - 6.95 - - 7.62 - - 7.22 - - 6.9 - - 6.5 - - 6.31 - - 6.21 - - 6.04 - - 6.61 - - 7.3 - - 7.09 - - 7.15 - - 7.6 - - 7.6 - - 7.97 - - 8.66 - - 9.0 - - 9.05 - - 9.15 - - 9.11 - - 9.84 - - 10.02 - - 7.75 - - 8.29 - - 8.41 - - 8.44 - - 9.18 - - 9.83 - - 9.68 - - 6.94 - - 5.61 - - 4.6 - - 7.52 - - 6.98 - - 3.89 - - 2.1 - - 7.02 - - 8.79 - - 6.26 - - 6.55 - - 6.58 - - 6.36 - - 6.45 - - 6.28 - - 6.49 - - 6.35 - - 6.54 - - 6.41 - - 6.08 - - 6.01 - - 6.79 - - 6.88 - - 7.53 - - 6.43 - - 6.3 - - 6.96 - - 5.95 - - 5.12 - - 5.12 - - 4.84 - - 3.71 - - 4.08 - - 5.79 - - 6.66 - - 5.98 - - 6.44 - - 7.16 - - 7.02 - - 7.51 - - 6.4 - - 5.09 - - 4.68 - - 4.73 - - 5.5 - - 4.71 - - 4.52 - - 5.9 - - 5.87 - - 7.28 - - 8.16 - - 8.63 - - 8.78 - - 9.18 - - 9.27 - - 9.85 - - 10.34 - - 10.97 - - 11.97 - - 12.21 - - 11.33 - - 10.2 - - 10.43 - - 10.74 - - 12.88 - - 12.04 - - 12.98 - - 12.98 - - 13.07 - - 12.94 - - 13.81 - - 13.62 - - 13.7 - - 14.04 - - 14.23 - - 13.15 - - 12.9 - - 12.9 - - 12.9 - - 12.85 - - 12.69 - - 11.25 - - 11.35 - - 10.99 - - 10.82 - - 10.35 - - 10.04 - - 10.32 - - 11.82 - - 11.84 - - 11.78 - - 11.63 - - 12.08 - - 11.2 - - 11.29 - - 10.97 - - 10.44 - - 10.28 - - 9.94 - - 9.21 - - 8.95 - - 8.68 - - 9.27 - - 9.62 - - 9.93 - - 9.55 - - 9.9 - - 10.0 - - 9.93 - - 9.75 - - 9.42 - - 9.84 - - 10.69 - - 10.34 - - 10.36 - - 10.53 - - 10.38 - - 8.67 - - 8.92 - - 8.76 - - 8.45 - - 7.56 - - 6.57 - - 5.5 - - 4.74 - - 4.16 - - 3.36 - - 2.89 - - 2.9 - - 3.48 - - 3.3 - - 2.72 - - 1.8 - - 1.28 - - 0.42 - - 1.64 - - 2.33 - - 3.58 - - 4.61 - - 4.89 - - 5.25 - - 4.83 - - 4.49 - - 3.69 - - 2.97 - - 4.69 - - 5.81 - - 5.35 - - 5.08 - - 5.41 - - 5.65 - - 5.09 - - 3.94 - - 3.42 - - 3.03 - - 3.68 - - 4.79 - - 5.71 - - 6.26 - - 5.7 - - 6.51 - - 9.26 - - 9.54 - - 9.37 - - 9.94 - - 9.38 - - 9.77 - - 9.96 - - 10.58 - - 10.96 - - 11.09 - - 10.7 - - 10.2 - - 10.12 - - 9.94 - - 9.81 - - 9.7 - - 9.13 - - 8.77 - - 8.5 - - 7.98 - - 7.84 - - 7.56 - - 8.54 - - 8.72 - - 8.41 - - 7.77 - - 7.25 - - 6.67 - - 5.99 - - 6.43 - - 6.6 - - 5.94 - - 5.28 - - 4.79 - - 4.42 - - 4.6 - - 5.33 - - 6.04 - - 6.74 - - 7.24 - - 7.71 - - 8.17 - - 8.49 - - 9.02 - - 9.15 - - 9.58 - - 9.15 - - 8.01 - - 8.41 - - 9.38 - - 9.6 - - 9.7 - - 9.65 - - 9.43 - - 8.74 - - 8.77 - - 8.17 - - 7.31 - - 7.06 - - 7.96 - - 8.36 - - 9.77 - - 10.2 - - 10.36 - - 10.47 - - 10.25 - - 10.04 - - 9.98 - - 9.37 - - 8.61 - - 7.96 - - 8.04 - - 7.54 - - 8.07 - - 8.7 - - 8.5 - - 7.28 - - 7.98 - - 8.49 - - 9.21 - - 10.56 - - 9.81 - - 9.04 - - 8.16 - - 7.98 - - 7.94 - - 8.35 - - 8.61 - - 8.08 - - 7.99 - - 7.86 - - 7.68 - - 7.53 - - 6.98 - - 7.29 - - 8.28 - - 7.71 - - 7.23 - - 6.73 - - 6.67 - - 5.98 - - 6.0 - - 5.94 - - 5.66 - - 5.41 - - 5.16 - - 5.02 - - 4.66 - - 4.41 - - 4.3 - - 4.39 - - 4.24 - - 2.85 - - 2.72 - - 2.35 - - 2.06 - - 1.62 - - 1.2 - - 0.5 - - 0.89 - - 1.97 - - 2.75 - - 3.35 - - 3.64 - - 3.59 - - 3.54 - - 4.05 - - 5.02 - - 6.0 - - 7.0 - - 7.38 - - 7.81 - - 9.2 - - 8.29 - - 8.04 - - 8.2 - - 9.65 - - 10.67 - - 10.73 - - 11.47 - - 12.25 - - 13.05 - - 11.91 - - 11.59 - - 12.73 - - 12.68 - - 13.34 - - 13.54 - - 14.52 - - 14.5 - - 14.17 - - 13.94 - - 13.32 - - 12.85 - - 12.54 - - 12.75 - - 12.79 - - 13.1 - - 12.82 - - 12.73 - - 11.85 - - 11.33 - - 11.25 - - 11.33 - - 10.85 - - 10.85 - - 10.28 - - 9.36 - - 11.26 - - 10.63 - - 10.55 - - 10.65 - - 10.21 - - 10.6 - - 10.73 - - 11.03 - - 10.58 - - 10.51 - - 11.19 - - 10.72 - - 10.23 - - 10.18 - - 10.23 - - 10.16 - - 9.59 - - 9.64 - - 9.42 - - 9.05 - - 8.58 - - 8.15 - - 8.81 - - 9.21 - - 9.63 - - 10.04 - - 10.18 - - 10.54 - - 10.23 - - 10.07 - - 9.62 - - 9.43 - - 9.24 - - 8.88 - - 8.63 - - 9.14 - - 9.13 - - 9.38 - - 9.68 - - 9.85 - - 9.42 - - 9.44 - - 9.33 - - 9.26 - - 9.26 - - 8.84 - - 8.7 - - 7.0 - - 8.42 - - 9.83 - - 9.14 - - 8.61 - - 9.2 - - 10.31 - - 9.85 - - 9.55 - - 9.54 - - 9.0 - - 8.96 - - 9.82 - - 10.18 - - 10.54 - - 10.57 - - 10.75 - - 10.7 - - 10.29 - - 10.06 - - 9.79 - - 9.57 - - 9.27 - - 9.69 - - 8.88 - - 8.66 - - 7.51 - - 6.08 - - 7.7 - - 9.42 - - 9.74 - - 10.32 - - 10.16 - - 10.9 - - 11.46 - - 11.6 - - 11.05 - - 10.86 - - 10.86 - - 10.95 - - 10.82 - - 10.17 - - 10.13 - - 9.77 - - 9.69 - - 9.76 - - 9.62 - - 8.44 - - 8.49 - - 8.98 - - 9.05 - - 9.07 - - 8.89 - - 8.68 - - 8.22 - - 7.06 - - 6.43 - - 6.04 - - 4.37 - - 3.48 - - 2.69 - - 3.25 - - 3.92 - - 4.02 - - 4.1 - - 2.82 - - 2.3 - - 2.0 - - 1.7 - - 1.9 - - 1.26 - - 0.81 - - 1.08 - - 1.58 - - 1.93 - - 2.24 - - 2.41 - - 3.44 - - 4.21 - - 4.65 - - 4.56 - - 3.81 - - 4.19 - - 4.85 - - 5.5 - - 6.35 - - 6.64 - - 6.56 - - 6.13 - - 7.0 - - 6.7 - - 6.6 - - 6.61 - - 6.66 - - 6.55 - - 7.4 - - 5.22 - - 4.65 - - 4.77 - - 4.7 - - 4.74 - - 5.32 - - 4.49 - - 3.86 - - 3.01 - - 2.88 - - 3.57 - - 4.78 - - 4.83 - - 4.1 - - 3.78 - - 3.86 - - 3.74 - - 3.62 - - 2.5 - - 1.92 - - 1.71 - - 1.28 - - 1.3 - - 2.02 - - 1.79 - - 1.86 - - 2.38 - - 3.1 - - 3.57 - - 1.55 - - 0.36 - - 2.83 - - 6.16 - - 5.89 - - 4.06 - - 3.41 - - 4.2 - - 5.03 - - 5.95 - - 5.05 - - 5.05 - - 3.69 - - 3.6 - - 2.91 - - 2.94 - - 3.48 - - 5.37 - - 4.65 - - 2.73 - - 2.8 - - 2.94 - - 3.26 - - 3.92 - - 4.54 - - 4.71 - - 6.22 - - 5.5 - - 4.49 - - 1.71 - - 2.92 - - 2.9 - - 2.14 - - 1.55 - - 3.04 - - 2.33 - - 0.85 - - 1.1 - - 0.92 - - 2.12 - - 2.78 - - 2.31 - - 1.21 - - 0.92 - - 1.66 - - 1.3 - - 1.82 - - 3.49 - - 5.23 - - 5.24 - - 6.93 - - 6.8 - - 6.14 - - 6.46 - - 7.28 - - 7.89 - - 8.49 - - 8.62 - - 8.24 - - 8.24 - - 8.06 - - 8.64 - - 8.9 - - 9.08 - - 9.32 - - 10.39 - - 10.43 - - 10.23 - - 9.99 - - 11.01 - - 11.56 - - 12.67 - - 12.88 - - 14.0 - - 13.44 - - 13.43 - - 13.3 - - 14.76 - - 13.57 - - 12.97 - - 14.25 - - 14.68 - - 14.62 - - 15.04 - - 14.84 - - 14.5 - - 14.12 - - 14.29 - - 14.57 - - 14.07 - - 14.71 - - 13.74 - - 13.3 - - 12.38 - - 12.04 - - 11.69 - - 11.1 - - 10.42 - - 10.36 - - 10.3 - - 10.35 - - 10.04 - - 9.76 - - 9.83 - - 7.96 - - 7.78 - - 7.74 - - 7.38 - - 6.53 - - 7.02 - - 7.74 - - 7.63 - - 7.32 - - 6.57 - - 5.95 - - 4.88 - - 3.97 - - 3.64 - - 3.69 - - 4.25 - - 4.43 - - 4.44 - - 4.44 - - 4.69 - - 4.63 - - 4.16 - - 3.44 - - 3.58 - - 4.08 - - 4.22 - - 3.64 - - 2.27 - - 1.75 - - 1.8 - - 1.99 - - 2.04 - - 2.4 - - 2.71 - - 2.9 - - 2.02 - - 2.06 - - 2.25 - - 2.56 - - 2.98 - - 3.6 - - 4.53 - - 5.04 - - 4.88 - - 4.41 - - 4.21 - - 5.39 - - 6.66 - - 7.17 - - 5.73 - - 4.24 - - 3.2 - - 4.75 - - 5.51 - - 5.82 - - 6.0 - - 5.87 - - 5.64 - - 5.86 - - 3.98 - - 4.12 - - 4.14 - - 4.49 - - 6.31 - - 6.38 - - 7.5 - - 8.0 - - 7.7 - - 7.26 - - 5.81 - - 5.52 - - 5.59 - - 5.17 - - 4.74 - - 4.99 - - 5.32 - - 6.43 - - 6.3 - - 6.08 - - 6.36 - - 7.21 - - 8.1 - - 7.24 - - 5.6 - - 6.26 - - 6.58 - - 7.18 - - 7.28 - - 6.84 - - 6.81 - - 6.64 - - 6.31 - - 6.1 - - 5.36 - - 6.24 - - 7.52 - - 8.23 - - 9.38 - - 5.84 - - 7.29 - - 7.68 - - 6.79 - - 6.9 - - 6.23 - - 5.6 - - 5.89 - - 5.9 - - 5.67 - - 5.81 - - 5.89 - - 6.2 - - 6.4 - - 4.12 - - 2.5 - - 3.31 - - 4.6 - - 5.41 - - 5.36 - - 4.39 - - 3.27 - - 1.94 - - 3.0 - - 5.1 - - 6.2 - - 5.92 - - 7.35 - - 7.96 - - 7.83 - - 8.57 - - 8.11 - - 9.88 - - 9.85 - - 11.65 - - 12.63 - - 13.04 - - 12.53 - - 13.44 - - 12.59 - - 12.47 - - 10.75 - - 10.22 - - 9.28 - - 8.82 - - 9.94 - - 9.97 - - 9.0 - - 8.54 - - 8.14 - - 6.19 - - 6.0 - - 6.24 - - 6.54 - - 5.87 - - 4.85 - - 4.31 - - 3.05 - - 4.46 - - 4.68 - - 5.09 - - 5.02 - - 4.61 - - 5.8 - - 6.52 - - 6.54 - - 7.57 - - 7.22 - - 7.11 - - 7.72 - - 7.28 - - 7.98 - - 9.15 - - 10.18 - - 9.77 - - 10.4 - - 10.26 - - 10.18 - - 10.15 - - 8.42 - - 9.67 - - 9.63 - - 9.21 - - 9.0 - - 9.04 - - 9.16 - - 8.61 - - 8.93 - - 9.58 - - 9.78 - - 10.12 - - 10.55 - - 10.4 - - 10.39 - - 10.26 - - 10.47 - - 10.34 - - 10.49 - - 9.14 - - 9.0 - - 8.63 - - 8.7 - - 8.7 - - 9.35 - - 10.54 - - 10.97 - - 10.77 - - 10.26 - - 10.26 - - 10.56 - - 8.8 - - 9.07 - - 8.8 - - 8.44 - - 8.64 - - 7.58 - - 7.45 - - 6.79 - - 6.74 - - 6.67 - - 6.97 - - 6.94 - - 6.72 - - 6.65 - - 6.44 - - 5.94 - - 5.1 - - 4.47 - - 4.0 - - 3.94 - - 4.05 - - 4.04 - - 4.0 - - 4.23 - - 4.24 - - 4.56 - - 4.98 - - 5.32 - - 5.04 - - 4.9 - - 4.83 - - 5.19 - - 5.77 - - 6.48 - - 6.75 - - 6.66 - - 5.8 - - 5.2 - - 4.93 - - 4.9 - - 4.61 - - 4.66 - - 5.88 - - 4.77 - - 5.19 - - 7.02 - - 7.73 - - 7.72 - - 7.11 - - 7.59 - - 7.72 - - 7.85 - - 8.93 - - 8.7 - - 8.57 - - 8.72 - - 8.95 - - 9.14 - - 8.77 - - 8.13 - - 7.11 - - 7.3 - - 7.52 - - 7.16 - - 6.41 - - 6.72 - - 5.61 - - 5.81 - - 6.73 - - 7.64 - - 8.76 - - 9.13 - - 8.88 - - 8.99 - - 9.02 - - 8.98 - - 9.96 - - 11.09 - - 10.47 - - 11.59 - - 9.84 - - 9.98 - - 10.2 - - 9.78 - - 8.14 - - 7.32 - - 6.4 - - 4.83 - - 4.13 - - 3.98 - - 2.73 - - 2.81 - - 2.55 - - 2.66 - - 2.87 - - 3.42 - - 3.65 - - 4.01 - - 3.3 - - 2.69 - - 2.24 - - 5.26 - - 7.19 - - 6.13 - - 6.04 - - 6.24 - - 6.72 - - 7.0 - - 6.92 - - 7.6 - - 8.14 - - 8.96 - - 9.17 - - 9.84 - - 9.49 - - 10.05 - - 10.2 - - 10.73 - - 10.44 - - 10.82 - - 10.24 - - 10.67 - - 11.05 - - 11.83 - - 12.38 - - 12.0 - - 12.08 - - 12.57 - - 12.45 - - 12.32 - - 12.46 - - 12.36 - - 11.35 - - 11.19 - - 10.89 - - 10.32 - - 9.69 - - 9.99 - - 8.57 - - 7.28 - - 6.79 - - 6.51 - - 6.44 - - 6.51 - - 5.88 - - 6.95 - - 7.02 - - 6.53 - - 7.25 - - 7.67 - - 7.68 - - 7.32 - - 7.83 - - 7.47 - - 7.28 - - 6.91 - - 7.32 - - 6.81 - - 6.3 - - 6.09 - - 6.16 - - 6.88 - - 5.39 - - 4.94 - - 4.41 - - 3.55 - - 2.86 - - 2.6 - - 3.11 - - 2.78 - - 3.04 - - 4.3 - - 6.18 - - 7.46 - - 5.79 - - 5.36 - - 5.42 - - 4.08 - - 1.7 - - 0.71 - - 1.77 - - 2.67 - - 2.83 - - 3.75 - - 4.83 - - 4.98 - - 3.61 - - 4.73 - - 5.26 - - 5.77 - - 5.73 - - 6.1 - - 6.21 - - 6.52 - - 6.54 - - 6.51 - - 6.96 - - 7.07 - - 6.8 - - 6.89 - - 7.07 - - 7.07 - - 7.41 - - 7.19 - - 6.55 - - 6.35 - - 6.34 - - 6.53 - - 6.11 - - 6.18 - - 6.33 - - 5.63 - - 5.15 - - 4.68 - - 4.39 - - 4.32 - - 3.22 - - 3.04 - - 2.5 - - 3.5 - - 4.46 - - 5.16 - - 4.9 - - 4.62 - - 4.43 - - 2.83 - - 2.5 - - 2.83 - - 2.75 - - 3.3 - - 3.18 - - 2.94 - - 3.16 - - 3.2 - - 2.22 - - 2.24 - - 2.65 - - 2.94 - - 3.47 - - 3.98 - - 2.76 - - 2.78 - - 5.0 - - 5.97 - - 5.73 - - 5.63 - - 5.37 - - 5.08 - - 6.05 - - 5.91 - - 5.59 - - 5.74 - - 6.06 - - 6.51 - - 6.99 - - 7.43 - - 7.23 - - 6.91 - - 5.82 - - 5.71 - - 5.71 - - 5.72 - - 5.81 - - 5.9 - - 5.62 - - 5.79 - - 5.84 - - 5.6 - - 5.2 - - 4.91 - - 4.33 - - 3.79 - - 4.08 - - 4.12 - - 3.98 - - 3.81 - - 3.7 - - 3.83 - - 3.73 - - 3.64 - - 2.97 - - 1.84 - - 1.03 - - 0.67 - - 0.92 - - 0.82 - - 0.89 - - 1.43 - - 1.77 - - 3.23 - - 4.43 - - 4.8 - - 4.63 - - 4.36 - - 4.43 - - 4.52 - - 5.05 - - 5.28 - - 5.38 - - 5.52 - - 4.8 - - 5.2 - - 5.75 - - 6.33 - - 6.71 - - 6.52 - - 4.8 - - 4.66 - - 4.8 - - 5.41 - - 5.8 - - 5.71 - - 5.77 - - 6.71 - - 6.49 - - 6.55 - - 6.27 - - 5.48 - - 4.82 - - 4.81 - - 4.55 - - 4.34 - - 4.11 - - 4.47 - - 4.36 - - 2.5 - - 1.7 - - 1.12 - - 0.81 - - 1.21 - - 1.82 - - 1.96 - - 2.56 - - 2.47 - - 2.79 - - 3.42 - - 3.67 - - 3.49 - - 3.19 - - 2.44 - - 1.61 - - 1.13 - - 4.96 - - 8.34 - - 8.21 - - 7.78 - - 7.47 - - 7.44 - - 7.38 - - 8.04 - - 8.32 - - 8.37 - - 8.13 - - 8.45 - - 6.73 - - 6.4 - - 6.6 - - 7.31 - - 7.62 - - 8.04 - - 7.61 - - 8.02 - - 8.31 - - 8.3 - - 8.52 - - 9.11 - - 9.34 - - 8.93 - - 8.74 - - 8.8 - - 9.14 - - 9.4 - - 9.95 - - 10.32 - - 10.34 - - 10.34 - - 10.19 - - 9.14 - - 8.69 - - 8.46 - - 8.45 - - 8.7 - - 8.75 - - 8.68 - - 8.6 - - 8.56 - - 8.78 - - 9.02 - - 8.97 - - 8.88 - - 8.83 - - 8.75 - - 8.54 - - 8.12 - - 7.86 - - 7.75 - - 8.05 - - 8.0 - - 8.08 - - 8.34 - - 8.57 - - 9.53 - - 6.9 - - 6.3 - - 6.4 - - 6.63 - - 6.56 - - 6.1 - - 5.53 - - 5.2 - - 4.95 - - 4.11 - - 4.05 - - 4.53 - - 5.35 - - 6.94 - - 7.84 - - 8.01 - - 7.87 - - 7.85 - - 7.61 - - 7.18 - - 7.14 - - 6.86 - - 6.31 - - 6.16 - - 4.44 - - 4.0 - - 4.42 - - 5.3 - - 5.72 - - 5.74 - - 6.04 - - 5.91 - - 5.41 - - 5.3 - - 5.61 - - 5.72 - - 5.6 - - 5.25 - - 3.07 - - 2.4 - - 2.4 - - 2.8 - - 2.5 - - 5.1 - - 5.3 - - 4.89 - - 4.16 - - 3.62 - - 2.92 - - 1.39 - - 1.73 - - 2.5 - - 3.2 - - 3.49 - - 3.38 - - 4.59 - - 4.92 - - 5.36 - - 7.4 - - 8.45 - - 8.0 - - 7.31 - - 7.52 - - 7.65 - - 6.76 - - 5.9 - - 5.05 - - 4.24 - - 3.2 - - 2.52 - - 3.49 - - 4.92 - - 4.97 - - 3.47 - - 3.62 - - 4.27 - - 4.62 - - 4.42 - - 2.61 - - 2.05 - - 4.37 - - 5.14 - - 5.39 - - 5.08 - - 4.21 - - 4.11 - - 4.34 - - 4.74 - - 4.75 - - 4.85 - - 3.96 - - 3.75 - - 4.14 - - 4.78 - - 4.32 - - 3.83 - - 3.69 - - 3.12 - - 3.58 - - 4.0 - - 4.52 - - 4.84 - - 4.7 - - 5.37 - - 5.6 - - 4.94 - - 5.64 - - 5.3 - - 4.66 - - 6.14 - - 5.77 - - 3.01 - - 4.66 - - 4.47 - - 5.03 - - 4.67 - - 4.61 - - 3.93 - - 3.5 - - 2.55 - - 1.42 - - 0.41 - - 0.5 - - 1.08 - - 1.84 - - 2.27 - - 2.18 - - 1.28 - - 1.75 - - 3.69 - - 3.71 - - 3.89 - - 2.76 - - 3.5 - - 3.61 - - 4.1 - - 3.96 - - 3.61 - - 3.75 - - 2.82 - - 2.13 - - 2.16 - - 3.08 - - 2.61 - - 2.32 - - 2.25 - - 2.64 - - 2.73 - - 2.48 - - 0.36 - - 3.93 - - 2.01 - - 3.28 - - 4.41 - - 4.18 - - 5.46 - - 6.9 - - 5.55 - - 5.5 - - 6.28 - - 5.64 - - 5.3 - - 5.61 - - 5.64 - - 6.05 - - 5.3 - - 5.63 - - 6.69 - - 5.02 - - 4.96 - - 5.82 - - 6.45 - - 6.96 - - 7.88 - - 8.41 - - 7.92 - - 7.24 - - 6.8 - - 7.24 - - 8.03 - - 7.54 - - 6.96 - - 7.86 - - 7.84 - - 7.42 - - 7.55 - - 7.53 - - 7.41 - - 6.38 - - 5.28 - - 5.1 - - 4.92 - - 4.48 - - 4.25 - - 4.02 - - 3.72 - - 3.16 - - 1.91 - - 1.17 - - 1.22 - - 1.63 - - 2.82 - - 3.78 - - 4.72 - - 5.11 - - 6.8 - - 6.16 - - 6.47 - - 7.21 - - 7.56 - - 8.46 - - 7.84 - - 7.2 - - 6.08 - - 4.88 - - 5.56 - - 5.25 - - 4.88 - - 6.52 - - 8.09 - - 8.82 - - 8.29 - - 9.08 - - 10.62 - - 9.32 - - 9.24 - - 8.93 - - 7.81 - - 7.06 - - 6.26 - - 6.65 - - 6.83 - - 7.04 - - 6.8 - - 5.83 - - 6.22 - - 6.14 - - 6.26 - - 5.85 - - 5.16 - - 4.39 - - 4.74 - - 5.58 - - 5.8 - - 5.62 - - 5.33 - - 4.78 - - 5.13 - - 5.44 - - 4.67 - - 3.89 - - 4.3 - - 4.12 - - 3.85 - - 4.03 - - 3.73 - - 4.52 - - 4.32 - - 4.2 - - 3.89 - - 4.22 - - 4.88 - - 4.39 - - 4.3 - - 3.8 - - 4.97 - - 5.88 - - 6.44 - - 6.4 - - 7.07 - - 6.62 - - 6.89 - - 7.2 - - 7.42 - - 7.57 - - 7.67 - - 7.69 - - 6.71 - - 6.2 - - 6.53 - - 7.74 - - 7.69 - - 7.3 - - 7.38 - - 7.53 - - 6.89 - - 6.23 - - 6.1 - - 5.14 - - 5.15 - - 5.7 - - 5.48 - - 5.11 - - 5.64 - - 5.02 - - 5.7 - - 5.8 - - 5.28 - - 5.24 - - 4.96 - - 4.33 - - 3.86 - - 3.64 - - 3.98 - - 4.3 - - 4.11 - - 4.19 - - 3.68 - - 3.47 - - 3.11 - - 2.55 - - 1.58 - - 1.53 - - 1.65 - - 1.9 - - 2.47 - - 2.82 - - 2.79 - - 2.3 - - 1.8 - - 1.43 - - 1.79 - - 1.6 - - 1.87 - - 2.0 - - 2.48 - - 3.48 - - 5.94 - - 7.76 - - 8.32 - - 8.54 - - 8.68 - - 8.87 - - 9.48 - - 9.9 - - 11.54 - - 4.94 - - 5.12 - - 6.8 - - 6.71 - - 7.27 - - 8.06 - - 8.8 - - 9.8 - - 9.5 - - 9.84 - - 10.56 - - 10.81 - - 9.9 - - 10.02 - - 10.58 - - 11.23 - - 10.85 - - 10.48 - - 9.9 - - 9.43 - - 9.14 - - 9.08 - - 10.06 - - 10.69 - - 11.15 - - 11.76 - - 12.14 - - 12.13 - - 12.23 - - 12.04 - - 12.0 - - 12.21 - - 12.78 - - 12.69 - - 12.45 - - 11.36 - - 11.05 - - 9.48 - - 9.48 - - 9.44 - - 8.9 - - 8.68 - - 7.89 - - 7.28 - - 6.93 - - 6.68 - - 6.51 - - 6.2 - - 5.29 - - 5.25 - - 4.9 - - 3.88 - - 3.8 - - 4.59 - - 5.75 - - 6.52 - - 6.78 - - 6.86 - - 6.86 - - 7.21 - - 6.95 - - 6.64 - - 5.58 - - 5.11 - - 4.91 - - 4.78 - - 5.83 - - 5.75 - - 5.59 - - 5.78 - - 6.13 - - 4.57 - - 4.12 - - 4.1 - - 4.24 - - 4.8 - - 5.87 - - 6.31 - - 6.45 - - 7.96 - - 8.49 - - 7.89 - - 8.12 - - 7.78 - - 6.93 - - 6.8 - - 7.43 - - 8.34 - - 8.6 - - 8.17 - - 7.21 - - 7.09 - - 7.16 - - 7.28 - - 7.03 - - 6.62 - - 7.35 - - 6.79 - - 6.91 - - 7.11 - - 7.67 - - 8.28 - - 8.07 - - 8.52 - - 8.64 - - 8.19 - - 8.02 - - 7.66 - - 6.54 - - 5.95 - - 5.8 - - 5.11 - - 5.95 - - 6.09 - - 5.77 - - 7.51 - - 8.32 - - 6.83 - - 6.7 - - 7.45 - - 8.29 - - 8.5 - - 7.59 - - 8.4 - - 8.22 - - 8.0 - - 8.22 - - 7.76 - - 8.68 - - 8.02 - - 9.49 - - 9.96 - - 8.59 - - 10.02 - - 10.11 - - 9.74 - - 9.68 - - 9.75 - - 9.18 - - 9.11 - - 8.31 - - 8.86 - - 8.2 - - 9.75 - - 8.89 - - 10.38 - - 11.85 - - 11.57 - - 12.84 - - 13.17 - - 13.79 - - 15.6 - - 15.21 - - 15.83 - - 15.59 - - 15.36 - - 14.02 - - 12.77 - - 12.23 - - 11.81 - - 11.86 - - 10.85 - - 11.96 - - 11.66 - - 10.44 - - 9.99 - - 9.97 - - 9.65 - - 10.14 - - 10.42 - - 11.89 - - 12.66 - - 12.35 - - 12.54 - - 12.27 - - 12.84 - - 12.68 - - 13.68 - - 10.65 - - 8.89 - - 10.98 - - 10.03 - - 8.83 - - 8.08 - - 7.9 - - 7.96 - - 6.3 - - 7.07 - - 7.38 - - 9.8 - - 9.1 - - 9.64 - - 10.31 - - 10.58 - - 10.78 - - 11.28 - - 11.51 - - 12.32 - - 12.95 - - 11.06 - - 10.7 - - 8.64 - - 8.41 - - 8.43 - - 9.2 - - 7.93 - - 7.0 - - 6.51 - - 6.04 - - 5.39 - - 3.67 - - 3.04 - - 2.96 - - 4.3 - - 5.28 - - 6.44 - - 7.65 - - 5.86 - - 6.83 - - 8.62 - - 10.92 - - 10.5 - - 9.06 - - 6.88 - - 4.21 - - 4.5 - - 3.96 - - 5.8 - - 5.24 - - 6.3 - - 7.6 - - 8.2 - - 7.1 - - 7.13 - - 11.66 - - 12.98 - - 13.12 - - 12.32 - - 10.97 - - 10.46 - - 9.73 - - 10.0 - - 9.4 - - 9.7 - - 9.13 - - 8.49 - - 9.33 - - 10.2 - - 9.8 - - 9.6 - - 9.23 - - 8.01 - - 7.88 - - 7.02 - - 6.13 - - 6.16 - - 7.07 - - 7.41 - - 6.8 - - 6.49 - - 6.63 - - 6.3 - - 5.74 - - 5.59 - - 5.1 - - 5.3 - - 4.65 - - 5.15 - - 4.96 - - 4.83 - - 5.14 - - 5.02 - - 4.84 - - 4.46 - - 3.33 - - 2.44 - - 2.41 - - 2.97 - - 3.14 - - 2.96 - - 2.58 - - 2.56 - - 0.9 - - 2.45 - - 2.85 - - 3.29 - - 3.94 - - 4.0 - - 3.94 - - 2.72 - - 2.28 - - 2.06 - - 1.96 - - 0.86 - - 1.41 - - 2.01 - - 2.81 - - 3.26 - - 3.35 - - 3.47 - - 3.19 - - 4.06 - - 4.18 - - 3.81 - - 3.74 - - 4.19 - - 3.98 - - 4.47 - - 5.09 - - 5.67 - - 6.26 - - 6.16 - - 7.19 - - 6.8 - - 5.37 - - 5.61 - - 5.92 - - 6.36 - - 6.19 - - 6.28 - - 6.5 - - 6.69 - - 7.17 - - 7.18 - - 7.32 - - 8.03 - - 7.29 - - 6.56 - - 7.03 - - 4.94 - - 3.41 - - 4.67 - - 4.81 - - 4.57 - - 3.11 - - 3.11 - - 0.73 - - 6.13 - - 6.26 - - 3.64 - - 5.79 - - 6.55 - - 6.12 - - 5.91 - - 6.68 - - 6.94 - - 6.82 - - 6.11 - - 4.6 - - 5.41 - - 4.83 - - 4.92 - - 4.84 - - 4.72 - - 5.5 - - 5.16 - - 5.06 - - 6.25 - - 6.4 - - 6.51 - - 5.79 - - 4.97 - - 6.67 - - 9.08 - - 7.82 - - 9.12 - - 7.73 - - 8.6 - - 9.71 - - 9.46 - - 9.83 - - 9.3 - - 8.9 - - 7.58 - - 7.32 - - 6.26 - - 5.82 - - 5.5 - - 5.2 - - 4.79 - - 4.91 - - 5.0 - - 4.88 - - 5.26 - - 3.62 - - 4.52 - - 3.69 - - 4.52 - - 6.08 - - 7.41 - - 8.1 - - 8.66 - - 9.13 - - 9.5 - - 8.71 - - 7.96 - - 7.76 - - 7.22 - - 6.5 - - 6.95 - - 7.22 - - 7.0 - - 5.56 - - 7.2 - - 6.85 - - 6.72 - - 6.86 - - 6.3 - - 6.45 - - 6.31 - - 6.58 - - 6.77 - - 6.93 - - 7.63 - - 7.01 - - 6.57 - - 6.86 - - 7.0 - - 7.83 - - 7.62 - - 6.96 - - 5.82 - - 5.61 - - 6.04 - - 5.95 - - 5.92 - - 4.88 - - 6.33 - - 5.42 - - 5.15 - - 4.88 - - 4.48 - - 5.2 - - 5.1 - - 5.3 - - 5.64 - - 5.31 - - 5.06 - - 5.24 - - 5.78 - - 6.2 - - 5.63 - - 5.97 - - 4.97 - - 4.61 - - 3.8 - - 4.37 - - 5.79 - - 6.38 - - 6.88 - - 6.16 - - 8.22 - - 8.43 - - 8.9 - - 10.98 - - 10.57 - - 10.0 - - 9.5 - - 7.88 - - 7.16 - - 9.08 - - 10.51 - - 10.98 - - 11.77 - - 9.54 - - 9.63 - - 8.22 - - 4.75 - - 3.45 - - 3.23 - - 4.99 - - 5.46 - - 7.1 - - 8.74 - - 9.97 - - 10.51 - - 11.14 - - 11.18 - - 11.09 - - 12.57 - - 14.27 - - 15.0 - - 15.48 - - 15.68 - - 16.16 - - 16.45 - - 15.72 - - 15.84 - - 15.06 - - 15.01 - - 15.5 - - 14.21 - - 13.65 - - 12.66 - - 11.74 - - 10.79 - - 10.45 - - 10.45 - - 10.55 - - 10.26 - - 9.55 - - 10.13 - - 8.56 - - 7.99 - - 7.71 - - 7.58 - - 7.3 - - 8.45 - - 8.88 - - 10.38 - - 11.02 - - 10.98 - - 11.64 - - 11.08 - - 10.85 - - 10.59 - - 9.41 - - 9.5 - - 8.51 - - 8.85 - - 8.73 - - 9.1 - - 7.78 - - 7.5 - - 8.01 - - 7.4 - - 7.1 - - 7.03 - - 7.12 - - 8.37 - - 8.22 - - 8.3 - - 8.21 - - 8.0 - - 6.31 - - 7.33 - - 6.85 - - 7.91 - - 8.05 - - 7.62 - - 7.31 - - 6.36 - - 5.87 - - 5.92 - - 6.02 - - 6.06 - - 5.19 - - 4.99 - - 4.49 - - 3.79 - - 3.41 - - 4.32 - - 4.16 - - 4.42 - - 4.88 - - 4.74 - - 5.12 - - 5.42 - - 5.26 - - 5.94 - - 6.32 - - 6.23 - - 6.93 - - 6.8 - - 7.01 - - 7.02 - - 6.96 - - 7.04 - - 7.32 - - 7.45 - - 7.22 - - 7.45 - - 7.14 - - 6.5 - - 6.04 - - 6.74 - - 7.13 - - 5.82 - - 8.1 - - 8.47 - - 8.95 - - 9.55 - - 9.56 - - 10.47 - - 10.66 - - 10.8 - - 10.67 - - 10.18 - - 8.73 - - 7.75 - - 7.24 - - 7.12 - - 7.03 - - 7.42 - - 7.06 - - 6.43 - - 6.18 - - 6.2 - - 5.66 - - 5.2 - - 5.92 - - 6.68 - - 7.84 - - 7.71 - - 7.41 - - 6.71 - - 7.34 - - 7.65 - - 8.01 - - 7.65 - - 7.93 - - 6.77 - - 4.31 - - 4.53 - - 4.4 - - 3.35 - - 3.57 - - 4.61 - - 4.0 - - 5.33 - - 5.22 - - 6.48 - - 6.36 - - 6.45 - - 5.83 - - 6.07 - - 5.51 - - 5.66 - - 6.3 - - 6.56 - - 7.84 - - 7.65 - - 7.37 - - 7.0 - - 6.69 - - 5.95 - - 5.42 - - 4.61 - - 3.61 - - 3.33 - - 4.15 - - 5.31 - - 4.92 - - 4.99 - - 5.32 - - 6.3 - - 5.88 - - 6.64 - - 6.75 - - 5.7 - - 6.0 - - 6.13 - - 6.72 - - 7.84 - - 5.3 - - 6.1 - - 4.5 - - 4.26 - - 6.98 - - 7.34 - - 7.07 - - 6.76 - - 7.16 - - 8.24 - - 8.52 - - 7.94 - - 5.53 - - 4.33 - - 3.61 - - 3.76 - - 5.46 - - 7.16 - - 9.17 - - 9.2 - - 8.48 - - 7.98 - - 7.64 - - 7.64 - - 5.92 - - 5.39 - - 5.44 - - 5.59 - - 6.58 - - 7.08 - - 6.75 - - 6.14 - - 5.95 - - 6.29 - - 7.22 - - 7.28 - - 7.65 - - 8.57 - - 8.25 - - 8.81 - - 8.89 - - 8.48 - - 8.95 - - 9.27 - - 9.31 - - 9.29 - - 8.96 - - 9.24 - - 9.41 - - 9.36 - - 9.14 - - 9.17 - - 9.36 - - 9.44 - - 8.88 - - 8.45 - - 7.52 - - 7.64 - - 7.81 - - 7.4 - - 6.94 - - 7.5 - - 7.7 - - 8.2 - - 7.41 - - 7.62 - - 8.21 - - 9.3 - - 9.56 - - 10.2 - - 10.1 - - 10.17 - - 11.4 - - 8.85 - - 9.22 - - 9.62 - - 9.52 - - 9.84 - - 8.9 - - 8.91 - - 8.54 - - 8.52 - - 8.2 - - 7.91 - - 7.34 - - 7.43 - - 7.69 - - 7.22 - - 6.56 - - 6.28 - - 5.89 - - 4.85 - - 3.69 - - 4.2 - - 5.23 - - 5.17 - - 4.48 - - 3.73 - - 3.23 - - 3.04 - - 2.45 - - 2.09 - - 2.2 - - 2.8 - - 4.02 - - 4.24 - - 4.39 - - 4.47 - - 4.25 - - 3.26 - - 2.5 - - 1.8 - - 1.22 - - 1.65 - - 1.8 - - 1.3 - - 1.02 - - 1.13 - - 1.8 - - 2.15 - - 2.1 - - 2.71 - - 2.15 - - 2.01 - - 2.12 - - 2.51 - - 2.77 - - 2.41 - - 2.44 - - 2.12 - - 1.89 - - 3.33 - - 4.53 - - 4.16 - - 4.83 - - 4.34 - - 5.07 - - 4.56 - - 4.39 - - 4.92 - - 4.72 - - 4.37 - - 4.84 - - 4.96 - - 3.96 - - 4.9 - - 6.45 - - 6.02 - - 5.3 - - 6.71 - - 5.99 - - 6.66 - - 5.59 - - 6.17 - - 6.47 - - 7.1 - - 6.5 - - 6.47 - - 6.38 - - 6.8 - - 6.04 - - 5.17 - - 5.25 - - 4.74 - - 5.41 - - 5.95 - - 5.94 - - 6.72 - - 6.69 - - 7.07 - - 7.32 - - 7.46 - - 7.84 - - 6.22 - - 6.88 - - 7.28 - - 7.26 - - 6.73 - - 7.53 - - 6.28 - - 6.83 - - 7.77 - - 7.73 - - 6.51 - - 6.97 - - 6.76 - - 5.9 - - 5.28 - - 5.73 - - 5.4 - - 5.81 - - 5.35 - - 4.83 - - 4.02 - - 4.01 - - 3.45 - - 2.77 - - 2.33 - - 3.18 - - 3.35 - - 2.14 - - 0.5 - - 2.42 - - 2.94 - - 5.71 - - 5.49 - - 5.71 - - 5.22 - - 4.24 - - 4.6 - - 4.4 - - 3.91 - - 3.1 - - 4.12 - - 3.8 - - 3.68 - - 4.69 - - 4.22 - - 4.27 - - 4.84 - - 4.49 - - 4.52 - - 4.12 - - 6.36 - - 7.3 - - 5.95 - - 4.37 - - 3.05 - - 4.05 - - 4.98 - - 5.5 - - 5.73 - - 5.46 - - 4.81 - - 4.12 - - 3.4 - - 2.6 - - 1.7 - - 1.3 - - 3.42 - - 2.45 - - 3.44 - - 4.86 - - 5.06 - - 6.12 - - 5.3 - - 6.13 - - 6.49 - - 7.0 - - 6.94 - - 7.18 - - 7.13 - - 7.94 - - 7.33 - - 7.52 - - 7.6 - - 6.96 - - 6.1 - - 5.95 - - 6.24 - - 6.12 - - 6.44 - - 6.16 - - 7.09 - - 7.33 - - 7.54 - - 5.54 - - 7.08 - - 7.84 - - 8.05 - - 6.86 - - 7.26 - - 7.44 - - 7.87 - - 7.87 - - 7.89 - - 8.29 - - 8.15 - - 8.59 - - 8.82 - - 8.38 - - 7.98 - - 8.65 - - 10.25 - - 10.56 - - 11.19 - - 10.75 - - 10.15 - - 9.41 - - 10.06 - - 10.98 - - 11.68 - - 10.87 - - 10.51 - - 9.81 - - 9.63 - - 8.84 - - 8.17 - - 7.82 - - 7.59 - - 7.85 - - 7.12 - - 6.75 - - 6.03 - - 5.71 - - 5.12 - - 5.22 - - 4.82 - - 4.98 - - 4.65 - - 4.94 - - 5.25 - - 5.92 - - 5.14 - - 3.94 - - 3.71 - - 3.01 - - 2.11 - - 1.87 - - 2.94 - - 6.02 - - 5.86 - - 6.71 - - 6.91 - - 7.16 - - 6.94 - - 6.9 - - 6.63 - - 6.62 - - 6.3 - - 6.61 - - 4.02 - - 3.79 - - 3.88 - - 3.74 - - 3.94 - - 5.46 - - 5.66 - - 6.39 - - 6.06 - - 5.69 - - 5.69 - - 6.3 - - 7.1 - - 6.65 - - 7.78 - - 8.36 - - 9.28 - - 8.57 - - 9.42 - - 10.73 - - 11.19 - - 11.91 - - 12.03 - - 12.87 - - 12.77 - - 13.88 - - 15.58 - - 14.79 - - 17.11 - - 13.29 - - 15.67 - - 18.11 - - 16.6 - - 17.46 - - 17.49 - - 17.05 - - 17.18 - - 16.89 - - 16.92 - - 17.3 - - 18.8 - - 17.37 - - 18.12 - - 17.25 - - 16.87 - - 16.86 - - 17.2 - - 17.44 - - 18.0 - - 18.2 - - 17.67 - - 17.71 - - 17.83 - - 17.34 - - 17.09 - - 15.79 - - 15.06 - - 15.44 - - 15.0 - - 16.01 - - 15.88 - - 14.58 - - 14.73 - - 14.71 - - 13.6 - - 13.68 - - 13.43 - - 13.6 - - 13.41 - - 13.97 - - 14.19 - - 14.94 - - 13.61 - - 14.24 - - 14.43 - - 13.59 - - 13.52 - - 13.47 - - 13.47 - - 13.44 - - 13.11 - - 12.43 - - 12.15 - - 11.95 - - 10.38 - - 10.2 - - 9.84 - - 10.29 - - 10.2 - - 9.62 - - 9.28 - - 8.99 - - 8.64 - - 8.93 - - 9.4 - - 9.51 - - 10.58 - - 11.9 - - 11.14 - - 11.86 - - 11.27 - - 11.33 - - 10.92 - - 10.09 - - 10.53 - - 9.68 - - 8.62 - - 6.93 - - 5.55 - - 5.12 - - 5.1 - - 5.11 - - 5.41 - - 4.98 - - 5.11 - - 5.4 - - 5.53 - - 5.14 - - 4.08 - - 3.58 - - 5.06 - - 4.99 - - 5.54 - - 5.83 - - 5.87 - - 4.83 - - 5.54 - - 7.89 - - 8.27 - - 8.26 - - 8.26 - - 9.0 - - 8.85 - - 8.02 - - 7.64 - - 6.92 - - 5.48 - - 5.12 - - 5.16 - - 4.68 - - 4.34 - - 4.85 - - 5.05 - - 3.82 - - 3.45 - - 3.98 - - 4.32 - - 4.88 - - 5.61 - - 6.26 - - 6.11 - - 6.72 - - 5.71 - - 4.18 - - 7.44 - - 4.98 - - 5.98 - - 6.37 - - 7.11 - - 6.91 - - 6.5 - - 5.99 - - 6.87 - - 5.92 - - 6.33 - - 6.55 - - 6.67 - - 7.69 - - 7.0 - - 8.25 - - 7.44 - - 8.35 - - 8.93 - - 9.06 - - 8.65 - - 8.49 - - 8.42 - - 8.28 - - 7.65 - - 7.44 - - 6.26 - - 6.63 - - 6.75 - - 6.58 - - 7.07 - - 6.45 - - 5.57 - - 6.09 - - 6.09 - - 5.87 - - 6.0 - - 5.32 - - 6.01 - - 5.66 - - 6.14 - - 5.3 - - 6.41 - - 7.2 - - 7.74 - - 6.58 - - 3.58 - - 4.9 - - 5.38 - - 5.29 - - 4.79 - - 4.32 - - 5.25 - - 5.57 - - 5.76 - - 6.28 - - 6.72 - - 6.66 - - 6.72 - - 6.44 - - 6.25 - - 6.44 - - 5.79 - - 4.24 - - 5.78 - - 6.04 - - 6.76 - - 7.42 - - 8.49 - - 8.63 - - 9.34 - - 9.55 - - 10.41 - - 9.36 - - 9.14 - - 9.01 - - 9.63 - - 9.9 - - 9.87 - - 9.87 - - 9.44 - - 9.05 - - 8.76 - - 8.64 - - 8.34 - - 8.68 - - 8.8 - - 8.91 - - 8.11 - - 8.01 - - 7.98 - - 7.68 - - 7.78 - - 7.63 - - 7.22 - - 6.71 - - 6.84 - - 6.36 - - 5.68 - - 5.3 - - 4.69 - - 4.39 - - 4.75 - - 3.49 - - 3.48 - - 4.39 - - 5.32 - - 5.1 - - 4.68 - - 2.7 - - 2.83 - - 2.48 - - 1.34 - - 0.51 - - 1.0 - - 0.22 - - 0.4 - - 1.0 - - 2.28 - - 3.14 - - 3.9 - - 4.71 - - 4.82 - - 6.14 - - 6.28 - - 5.55 - - 5.3 - - 4.61 - - 5.8 - - 6.3 - - 5.95 - - 5.89 - - 5.9 - - 6.94 - - 6.6 - - 5.55 - - 5.52 - - 5.94 - - 7.05 - - 8.01 - - 8.71 - - 8.11 - - 8.11 - - 8.61 - - 7.67 - - 7.38 - - 7.62 - - 7.52 - - 7.62 - - 7.93 - - 8.37 - - 7.62 - - 7.62 - - 8.16 - - 7.89 - - 8.5 - - 9.22 - - 10.0 - - 10.85 - - 9.1 - - 9.6 - - 8.86 - - 8.57 - - 10.36 - - 9.45 - - 8.98 - - 9.53 - - 9.26 - - 8.85 - - 8.1 - - 7.98 - - 6.11 - - 5.59 - - 5.07 - - 5.0 - - 5.91 - - 5.46 - - 5.94 - - 6.04 - - 6.65 - - 6.29 - - 5.12 - - 6.01 - - 6.02 - - 5.97 - - 5.04 - - 5.46 - - 5.71 - - 6.13 - - 6.08 - - 5.82 - - 5.6 - - 5.28 - - 5.1 - - 5.36 - - 5.57 - - 5.55 - - 5.55 - - 5.55 - - 5.54 - - 5.63 - - 5.39 - - 5.41 - - 5.48 - - 5.82 - - 5.31 - - 5.8 - - 5.57 - - 6.49 - - 7.07 - - 7.47 - - 7.16 - - 7.16 - - 6.98 - - 6.71 - - 5.82 - - 5.26 - - 5.31 - - 5.76 - - 6.45 - - 6.35 - - 6.26 - - 6.01 - - 6.7 - - 5.88 - - 6.02 - - 5.92 - - 6.17 - - 6.07 - - 6.0 - - 6.08 - - 6.4 - - 6.02 - - 5.8 - - 5.46 - - 5.76 - - 5.96 - - 6.91 - - 6.64 - - 6.53 - - 5.57 - - 5.15 - - 5.25 - - 5.87 - - 5.6 - - 5.19 - - 4.97 - - 5.19 - - 5.51 - - 6.23 - - 5.63 - - 5.61 - - 6.08 - - 5.37 - - 6.18 - - 4.78 - - 5.46 - - 6.24 - - 6.71 - - 7.31 - - 7.42 - - 6.5 - - 6.11 - - 6.3 - - 5.9 - - 5.91 - - 5.51 - - 5.41 - - 5.92 - - 5.7 - - 5.46 - - 5.22 - - 5.22 - - 4.75 - - 4.11 - - 3.81 - - 3.13 - - 3.2 - - 2.57 - - 4.11 - - 4.31 - - 3.99 - - 3.31 - - 3.47 - - 2.05 - - 2.1 - - 1.14 - - 1.42 - - 1.88 - - 0.71 - - 2.42 - - 6.16 - - 7.21 - - 8.48 - - 8.46 - - 8.44 - - 7.79 - - 7.7 - - 7.0 - - 8.3 - - 6.12 - - 5.1 - - 5.1 - - 5.85 - - 5.23 - - 5.43 - - 5.46 - - 6.02 - - 5.9 - - 5.85 - - 5.41 - - 4.4 - - 3.76 - - 3.44 - - 3.75 - - 4.12 - - 3.92 - - 3.65 - - 3.01 - - 3.67 - - 3.0 - - 2.51 - - 3.7 - - 3.42 - - 1.84 - - 1.4 - - 2.5 - - 1.41 - - 2.64 - - 4.05 - - 3.18 - - 2.5 - - 3.01 - - 3.1 - - 4.22 - - 2.62 - - 2.69 - - 3.31 - - 4.32 - - 3.21 - - 1.75 - - 0.2 - - 2.56 - - 3.13 - - 3.42 - - 4.41 - - 5.23 - - 5.06 - - 5.26 - - 5.54 - - 5.92 - - 3.48 - - 3.49 - - 3.83 - - 4.22 - - 2.48 - - 2.21 - - 3.96 - - 2.96 - - 2.6 - - 2.81 - - 2.53 - - 2.82 - - 2.92 - - 2.06 - - 1.26 - - 1.9 - - 1.63 - - 2.24 - - 2.72 - - 4.42 - - 5.88 - - 6.11 - - 6.01 - - 5.44 - - 5.6 - - 5.91 - - 6.94 - - 7.3 - - 7.17 - - 7.34 - - 6.95 - - 6.72 - - 6.39 - - 6.24 - - 5.22 - - 5.1 - - 5.72 - - 4.97 - - 4.74 - - 4.43 - - 3.85 - - 4.27 - - 3.11 - - 2.82 - - 3.64 - - 4.83 - - 4.44 - - 4.12 - - 4.3 - - 4.75 - - 4.9 - - 5.5 - - 4.55 - - 4.88 - - 5.58 - - 5.89 - - 5.67 - - 5.38 - - 4.88 - - 4.75 - - 4.85 - - 5.33 - - 5.51 - - 5.99 - - 6.63 - - 6.87 - - 5.98 - - 7.43 - - 6.71 - - 7.08 - - 7.32 - - 6.14 - - 6.62 - - 5.74 - - 5.72 - - 6.2 - - 5.26 - - 6.11 - - 5.28 - - 5.81 - - 3.72 - - 3.82 - - 3.6 - - 3.76 - - 3.77 - - 3.14 - - 2.78 - - 2.58 - - 0.6 - - 3.38 - - 4.9 - - 5.22 - - 5.41 - - 5.61 - - 4.91 - - 4.85 - - 4.08 - - 3.93 - - 4.0 - - 3.61 - - 3.62 - - 3.44 - - 3.1 - - 3.01 - - 2.04 - - 2.89 - - 0.58 - - 2.18 - - 2.42 - - 2.3 - - 2.52 - - 2.33 - - 3.41 - - 3.83 - - 4.29 - - 4.17 - - 3.72 - - 3.52 - - 3.0 - - 3.77 - - 3.85 - - 4.43 - - 4.7 - - 5.15 - - 6.2 - - 6.67 - - 6.64 - - 6.26 - - 5.81 - - 5.2 - - 6.15 - - 6.4 - - 6.09 - - 5.99 - - 6.04 - - 6.2 - - 6.51 - - 6.71 - - 6.94 - - 7.11 - - 6.94 - - 6.98 - - 6.84 - - 6.62 - - 7.0 - - 7.31 - - 7.47 - - 8.29 - - 7.46 - - 7.87 - - 8.29 - - 7.91 - - 8.29 - - 7.69 - - 7.78 - - 8.29 - - 8.81 - - 9.35 - - 9.36 - - 9.94 - - 9.12 - - 9.41 - - 9.4 - - 9.17 - - 8.14 - - 7.29 - - 6.71 - - 5.75 - - 5.92 - - 7.25 - - 6.62 - - 7.33 - - 7.91 - - 8.15 - - 7.43 - - 7.06 - - 7.84 - - 7.24 - - 7.94 - - 7.93 - - 7.75 - - 7.54 - - 7.43 - - 7.2 - - 7.4 - - 7.56 - - 7.31 - - 6.65 - - 6.8 - - 6.96 - - 6.68 - - 5.42 - - 5.01 - - 5.37 - - 6.28 - - 6.49 - - 6.86 - - 6.91 - - 6.77 - - 6.14 - - 5.97 - - 5.58 - - 5.73 - - 6.39 - - 5.94 - - 5.94 - - 6.02 - - 6.11 - - 5.66 - - 5.47 - - 5.11 - - 4.69 - - 4.4 - - 3.86 - - 3.72 - - 3.69 - - 3.19 - - 2.02 - - 2.18 - - 2.35 - - 2.42 - - 2.9 - - 3.7 - - 4.2 - - 3.82 - - 3.82 - - 4.49 - - 3.64 - - 2.92 - - 3.05 - - 3.11 - - 3.04 - - 2.59 - - 2.97 - - 3.98 - - 4.52 - - 4.26 - - 4.11 - - 3.47 - - 2.02 - - 2.14 - - 2.01 - - 2.56 - - 3.02 - - 3.61 - - 3.67 - - 3.73 - - 3.72 - - 4.43 - - 5.66 - - 6.96 - - 7.99 - - 8.48 - - 8.35 - - 8.21 - - 8.22 - - 7.92 - - 8.0 - - 8.22 - - 8.29 - - 8.5 - - 8.57 - - 8.02 - - 8.75 - - 5.87 - - 5.31 - - 4.81 - - 4.6 - - 4.95 - - 4.74 - - 4.67 - - 4.95 - - 5.17 - - 5.81 - - 6.64 - - 7.26 - - 7.86 - - 7.71 - - 7.36 - - 7.5 - - 7.78 - - 7.29 - - 7.36 - - 7.57 - - 7.57 - - 8.02 - - 8.14 - - 9.27 - - 6.86 - - 5.38 - - 5.24 - - 5.72 - - 6.02 - - 5.22 - - 4.33 - - 3.97 - - 4.44 - - 5.66 - - 6.66 - - 7.07 - - 7.17 - - 7.19 - - 6.89 - - 6.67 - - 6.17 - - 6.15 - - 5.96 - - 5.7 - - 5.87 - - 5.96 - - 6.02 - - 6.33 - - 5.51 - - 3.71 - - 3.54 - - 4.27 - - 4.95 - - 4.91 - - 4.07 - - 3.36 - - 2.88 - - 2.8 - - 3.85 - - 4.44 - - 3.52 - - 4.34 - - 4.49 - - 4.28 - - 4.08 - - 3.67 - - 3.57 - - 3.61 - - 3.53 - - 2.16 - - 2.1 - - 3.29 - - 3.58 - - 3.0 - - 2.18 - - 1.61 - - 2.25 - - 2.28 - - 2.24 - - 2.73 - - 2.8 - - 3.08 - - 3.18 - - 2.92 - - 2.98 - - 3.26 - - 3.77 - - 4.1 - - 5.88 - - 7.03 - - 7.88 - - 8.29 - - 8.77 - - 8.8 - - 9.22 - - 11.2 - - 8.67 - - 7.69 - - 7.32 - - 6.92 - - 6.36 - - 2.69 - - 4.93 - - 4.79 - - 6.52 - - 6.88 - - 5.97 - - 5.78 - - 5.94 - - 5.7 - - 5.21 - - 4.7 - - 4.32 - - 3.93 - - 4.18 - - 3.92 - - 4.2 - - 3.94 - - 3.96 - - 3.33 - - 3.45 - - 4.6 - - 4.81 - - 5.42 - - 6.11 - - 5.39 - - 6.09 - - 5.79 - - 5.98 - - 6.32 - - 6.22 - - 5.99 - - 6.22 - - 6.08 - - 6.53 - - 5.99 - - 6.14 - - 7.16 - - 7.21 - - 7.29 - - 7.74 - - 7.16 - - 6.66 - - 6.76 - - 6.26 - - 5.87 - - 6.14 - - 5.88 - - 5.29 - - 5.15 - - 5.69 - - 5.55 - - 5.32 - - 5.95 - - 5.77 - - 5.71 - - 4.4 - - 3.1 - - 1.87 - - 1.86 - - 3.81 - - 4.79 - - 4.92 - - 5.0 - - 4.9 - - 3.26 - - 2.02 - - 0.41 - - 2.68 - - 3.2 - - 4.22 - - 4.1 - - 5.33 - - 5.99 - - 5.51 - - 6.26 - - 6.51 - - 6.23 - - 7.08 - - 7.83 - - 8.33 - - 8.73 - - 8.29 - - 7.79 - - 7.86 - - 8.35 - - 8.2 - - 7.85 - - 7.42 - - 6.91 - - 7.2 - - 7.81 - - 7.14 - - 6.6 - - 6.5 - - 6.41 - - 6.0 - - 5.1 - - 5.12 - - 5.04 - - 4.6 - - 4.14 - - 3.41 - - 3.44 - - 6.81 - - 7.55 - - 7.88 - - 7.74 - - 7.41 - - 7.13 - - 6.63 - - 6.17 - - 6.25 - - 6.66 - - 6.78 - - 7.16 - - 5.17 - - 4.33 - - 4.1 - - 4.66 - - 5.07 - - 4.08 - - 3.0 - - 0.86 - - 3.09 - - 3.82 - - 4.25 - - 4.69 - - 3.7 - - 2.62 - - 2.34 - - 4.02 - - 6.87 - - 6.2 - - 6.26 - - 6.53 - - 7.19 - - 7.53 - - 7.4 - - 7.33 - - 6.87 - - 7.02 - - 7.2 - - 6.8 - - 6.11 - - 5.92 - - 6.12 - - 5.95 - - 7.16 - - 7.67 - - 9.26 - - 10.99 - - 11.15 - - 11.0 - - 12.02 - - 11.99 - - 13.38 - - 12.88 - - 11.52 - - 10.54 - - 10.1 - - 9.92 - - 9.97 - - 10.29 - - 9.37 - - 9.35 - - 10.3 - - 9.63 - - 9.11 - - 8.9 - - 9.01 - - 10.41 - - 11.23 - - 12.04 - - 9.71 - - 8.39 - - 8.23 - - 8.3 - - 9.95 - - 10.77 - - 10.73 - - 10.85 - - 9.79 - - 9.62 - - 9.57 - - 8.99 - - 9.77 - - 9.95 - - 10.1 - - 8.02 - - 10.51 - - 11.1 - - 9.34 - - 10.94 - - 10.25 - - 11.8 - - 21.57 - - 19.72 - - 17.08 - - 13.35 - - 10.16 - - 7.04 - - 8.65 - - 15.62 - - 14.23 - - 14.1 - - 13.62 - - 13.71 - - 14.3 - - 13.23 - - 12.38 - - 13.43 - - 14.46 - - 13.29 - - 14.14 - - 14.57 - - 15.0 - - 14.43 - - 14.18 - - 14.19 - - 13.25 - - 13.09 - - 13.03 - - 12.5 - - 11.89 - - 11.93 - - 11.63 - - 11.43 - - 11.14 - - 11.51 - - 11.47 - - 11.48 - - 12.08 - - 12.73 - - 12.92 - - 12.8 - - 12.47 - - 11.75 - - 11.28 - - 11.16 - - 9.32 - - 8.01 - - 6.37 - - 3.45 - - 1.36 - - 0.36 - - 0.32 - - 0.9 - - 2.12 - - 2.09 - - 4.49 - - 4.19 - - 3.02 - - 3.61 - - 5.1 - - 2.86 - - 1.52 - - 1.58 - - 1.73 - - 2.21 - - 1.84 - - 0.76 - - 3.7 - - 2.7 - - 3.42 - - 3.04 - - 3.2 - - 5.22 - - 4.7 - - 4.61 - - 4.16 - - 2.78 - - 3.04 - - 3.94 - - 2.69 - - 3.31 - - 2.47 - - 2.5 - - 2.5 - - 2.06 - - 2.0 - - 2.97 - - 4.93 - - 4.92 - - 3.32 - - 3.83 - - 4.3 - - 5.3 - - 4.87 - - 5.58 - - 6.36 - - 7.35 - - 6.68 - - 6.84 - - 7.23 - - 6.96 - - 6.48 - - 6.56 - - 7.09 - - 6.56 - - 6.31 - - 6.5 - - 6.59 - - 6.77 - - 6.43 - - 5.75 - - 5.37 - - 5.8 - - 5.78 - - 6.18 - - 9.28 - - 10.15 - - 10.2 - - 10.31 - - 9.57 - - 9.79 - - 8.92 - - 9.26 - - 9.4 - - 9.43 - - 9.32 - - 9.46 - - 10.05 - - 10.85 - - 11.46 - - 11.54 - - 11.92 - - 11.32 - - 10.94 - - 11.62 - - 11.73 - - 11.9 - - 10.41 - - 9.91 - - 11.61 - - 11.48 - - 11.78 - - 11.29 - - 11.05 - - 9.21 - - 8.83 - - 8.32 - - 8.1 - - 7.42 - - 6.62 - - 6.35 - - 6.17 - - 5.99 - - 5.65 - - 5.36 - - 5.22 - - 5.1 - - 5.04 - - 5.44 - - 6.28 - - 6.84 - - 7.6 - - 5.68 - - 4.97 - - 5.44 - - 5.63 - - 5.63 - - 5.41 - - 5.16 - - 5.12 - - 5.76 - - 6.85 - - 7.69 - - 8.27 - - 8.37 - - 8.57 - - 8.71 - - 8.4 - - 8.21 - - 8.08 - - 7.56 - - 7.38 - - 7.34 - - 6.81 - - 5.9 - - 4.74 - - 4.27 - - 3.57 - - 2.91 - - 3.03 - - 1.39 - - 0.73 - - 1.43 - - 2.51 - - 3.92 - - 5.45 - - 5.73 - - 7.23 - - 8.0 - - 9.23 - - 10.48 - - 10.78 - - 9.91 - - 9.74 - - 9.69 - - 9.68 - - 9.73 - - 10.1 - - 9.67 - - 10.38 - - 9.86 - - 10.03 - - 11.01 - - 11.04 - - 11.14 - - 10.5 - - 9.84 - - 7.36 - - 7.67 - - 7.17 - - 6.77 - - 6.75 - - 7.99 - - 7.22 - - 7.02 - - 7.57 - - 7.62 - - 8.14 - - 7.69 - - 7.61 - - 7.65 - - 7.65 - - 6.82 - - 7.02 - - 8.56 - - 7.93 - - 7.66 - - 11.26 - - 9.14 - - 7.45 - - 7.92 - - 8.97 - - 8.93 - - 9.2 - - 9.17 - - 9.7 - - 10.01 - - 10.32 - - 10.9 - - 10.5 - - 10.21 - - 10.21 - - 10.21 - - 10.02 - - 9.79 - - 9.7 - - 9.04 - - 10.04 - - 10.59 - - 10.38 - - 11.57 - - 10.87 - - 10.33 - - 10.16 - - 9.49 - - 8.5 - - 8.01 - - 7.71 - - 7.55 - - 7.24 - - 7.05 - - 7.23 - - 6.77 - - 5.73 - - 4.92 - - 4.37 - - 4.63 - - 5.32 - - 5.63 - - 4.55 - - 3.45 - - 4.13 - - 3.49 - - 4.94 - - 4.54 - - 5.22 - - 5.26 - - 6.31 - - 6.71 - - 6.43 - - 6.66 - - 7.17 - - 6.57 - - 6.64 - - 6.3 - - 6.25 - - 6.44 - - 6.28 - - 6.44 - - 5.55 - - 5.16 - - 4.88 - - 4.77 - - 4.94 - - 4.84 - - 5.86 - - 5.73 - - 6.11 - - 6.03 - - 6.38 - - 6.91 - - 5.57 - - 4.85 - - 4.0 - - 4.36 - - 4.24 - - 4.43 - - 4.48 - - 4.0 - - 4.22 - - 4.01 - - 4.11 - - 3.55 - - 4.46 - - 3.91 - - 4.73 - - 3.24 - - 1.0 - - 4.94 - - 13.85 - - 8.22 - - 9.07 - - 9.68 - - 9.55 - - 8.63 - - 8.61 - - 9.66 - - 9.23 - - 9.5 - - 9.71 - - 9.48 - - 9.53 - - 8.96 - - 9.94 - - 9.8 - - 10.72 - - 11.22 - - 10.82 - - 10.79 - - 11.38 - - 11.74 - - 12.04 - - 11.14 - - 11.3 - - 12.2 - - 10.9 - - 10.41 - - 10.75 - - 10.76 - - 11.01 - - 11.68 - - 11.8 - - 12.59 - - 12.4 - - 12.29 - - 12.93 - - 14.07 - - 11.32 - - 11.51 - - 9.1 - - 9.53 - - 10.35 - - 10.74 - - 11.15 - - 10.76 - - 10.58 - - 10.02 - - 9.98 - - 10.74 - - 11.36 - - 10.7 - - 10.02 - - 9.62 - - 9.28 - - 8.25 - - 7.04 - - 5.8 - - 6.18 - - 5.98 - - 5.02 - - 5.36 - - 5.94 - - 7.5 - - 9.04 - - 9.33 - - 10.12 - - 10.28 - - 11.65 - - 11.41 - - 12.23 - - 13.66 - - 13.15 - - 14.24 - - 13.89 - - 14.64 - - 15.54 - - 17.28 - - 15.32 - - 15.1 - - 15.11 - - 15.57 - - 16.58 - - 17.77 - - 18.91 - - 16.93 - - 15.18 - - 13.28 - - 12.18 - - 11.76 - - 11.24 - - 11.72 - - 11.62 - - 10.91 - - 10.22 - - 10.19 - - 8.68 - - 10.07 - - 9.68 - - 9.7 - - 6.74 - - 6.64 - - 7.67 - - 7.08 - - 7.04 - - 7.31 - - 7.66 - - 8.0 - - 8.25 - - 7.89 - - 7.66 - - 7.04 - - 5.03 - - 5.28 - - 4.44 - - 6.48 - - 6.61 - - 6.7 - - 5.85 - - 4.15 - - 2.38 - - 0.7 - - 0.95 - - 1.44 - - 1.64 - - 3.45 - - 3.76 - - 3.55 - - 3.28 - - 2.91 - - 1.55 - - 1.0 - - 3.71 - - 4.85 - - 3.38 - - 4.83 - - 4.81 - - 4.73 - - 6.07 - - 6.56 - - 7.13 - - 6.8 - - 6.73 - - 6.6 - - 5.85 - - 6.95 - - 4.75 - - 3.37 - - 2.92 - - 2.53 - - 2.0 - - 1.2 - - 0.67 - - 0.42 - - 1.17 - - 2.11 - - 2.2 - - 2.0 - - 2.47 - - 3.06 - - 4.16 - - 3.69 - - 3.92 - - 4.74 - - 5.55 - - 6.12 - - 7.03 - - 6.96 - - 5.32 - - 5.28 - - 7.25 - - 8.86 - - 10.51 - - 10.72 - - 10.23 - - 9.26 - - 9.09 - - 9.92 - - 12.28 - - 12.87 - - 12.8 - - 13.37 - - 12.23 - - 12.11 - - 10.93 - - 13.02 - - 13.67 - - 12.7 - - 12.88 - - 13.69 - - 14.63 - - 15.25 - - 12.71 - - 12.38 - - 11.96 - - 11.85 - - 10.86 - - 10.61 - - 11.61 - - 11.55 - - 12.13 - - 11.54 - - 11.4 - - 11.23 - - 11.54 - - 11.43 - - 11.81 - - 11.3 - - 11.57 - - 10.9 - - 11.3 - - 11.4 - - 11.92 - - 11.67 - - 12.21 - - 11.65 - - 11.72 - - 11.59 - - 11.85 - - 11.18 - - 9.86 - - 9.26 - - 8.5 - - 6.72 - - 4.9 - - 5.07 - - 6.26 - - 5.95 - - 4.52 - - 4.74 - - 5.46 - - 6.27 - - 6.65 - - 7.71 - - 8.56 - - 9.02 - - 9.22 - - 9.65 - - 9.86 - - 9.82 - - 9.59 - - 10.17 - - 9.69 - - 9.73 - - 13.61 - - 13.52 - - 11.37 - - 9.5 - - 8.61 - - 9.11 - - 10.47 - - 10.59 - - 10.2 - - 8.81 - - 9.52 - - 9.56 - - 8.81 - - 9.51 - - 11.62 - - 12.8 - - 13.62 - - 14.81 - - 15.11 - - 14.6 - - 14.52 - - 14.02 - - 14.81 - - 14.99 - - 15.32 - - 14.73 - - 14.67 - - 13.86 - - 14.0 - - 14.24 - - 13.6 - - 15.12 - - 14.65 - - 15.43 - - 15.39 - - 16.02 - - 13.01 - - 14.62 - - 13.69 - - 14.45 - - 13.77 - - 14.87 - - 14.34 - - 13.29 - - 13.6 - - 13.89 - - 14.09 - - 14.21 - - 13.37 - - 13.72 - - 13.15 - - 13.15 - - 12.01 - - 10.76 - - 10.74 - - 10.36 - - 9.98 - - 9.88 - - 9.94 - - 10.31 - - 8.86 - - 9.41 - - 9.55 - - 9.76 - - 9.55 - - 8.85 - - 8.34 - - 8.29 - - 7.29 - - 8.62 - - 9.49 - - 7.71 - - 7.88 - - 7.85 - - 7.32 - - 6.3 - - 5.28 - - 4.99 - - 4.74 - - 5.8 - - 6.31 - - 5.65 - - 5.31 - - 5.32 - - 5.97 - - 7.2 - - 6.4 - - 5.98 - - 5.45 - - 5.87 - - 6.77 - - 6.56 - - 6.6 - - 7.28 - - 8.29 - - 7.27 - - 7.98 - - 7.84 - - 8.17 - - 7.07 - - 6.23 - - 5.85 - - 5.51 - - 5.32 - - 5.6 - - 5.85 - - 5.38 - - 5.25 - - 6.53 - - 6.36 - - 5.39 - - 4.74 - - 3.94 - - 3.55 - - 2.67 - - 1.58 - - 0.71 - - 1.84 - - 2.45 - - 2.4 - - 3.44 - - 3.96 - - 4.34 - - 5.14 - - 6.54 - - 7.71 - - 9.25 - - 9.71 - - 9.9 - - 9.91 - - 9.73 - - 10.47 - - 11.57 - - 12.39 - - 13.31 - - 14.43 - - 14.58 - - 14.91 - - 15.6 - - 15.31 - - 14.5 - - 12.98 - - 13.89 - - 14.31 - - 13.72 - - 14.22 - - 14.35 - - 15.1 - - 15.15 - - 15.08 - - 15.09 - - 15.36 - - 15.34 - - 15.58 - - 15.65 - - 15.62 - - 15.52 - - 15.12 - - 15.12 - - 15.25 - - 15.15 - - 15.59 - - 15.92 - - 16.3 - - 16.08 - - 15.1 - - 16.24 - - 17.54 - - 16.02 - - 16.66 - - 18.45 - - 18.53 - - 19.09 - - 19.32 - - 19.65 - - 19.93 - - 19.46 - - 19.43 - - 19.34 - - 17.66 - - 19.77 - - 21.05 - - 19.84 - - 16.42 - - 16.52 - - 16.04 - - 15.13 - - 14.53 - - 13.51 - - 12.3 - - 11.12 - - 10.99 - - 10.8 - - 9.71 - - 9.9 - - 9.85 - - 10.32 - - 10.72 - - 10.18 - - 9.49 - - 8.68 - - 8.02 - - 7.66 - - 7.9 - - 8.68 - - 8.95 - - 8.64 - - 8.75 - - 8.9 - - 8.64 - - 8.66 - - 8.46 - - 8.49 - - 8.49 - - 7.96 - - 8.1 - - 6.99 - - 7.24 - - 7.27 - - 7.07 - - 8.5 - - 8.81 - - 8.47 - - 8.32 - - 8.04 - - 7.65 - - 7.29 - - 7.35 - - 7.98 - - 7.5 - - 7.86 - - 8.08 - - 8.35 - - 8.7 - - 9.03 - - 8.94 - - 8.63 - - 8.3 - - 7.87 - - 7.8 - - 6.26 - - 5.52 - - 5.08 - - 4.6 - - 3.62 - - 2.52 - - 2.33 - - 3.11 - - 2.6 - - 2.34 - - 2.38 - - 2.98 - - 2.91 - - 3.5 - - 4.57 - - 5.32 - - 6.1 - - 6.6 - - 7.4 - - 7.92 - - 8.83 - - 8.91 - - 10.6 - - 11.43 - - 12.1 - - 13.1 - - 13.3 - - 13.01 - - 13.1 - - 13.61 - - 13.52 - - 13.51 - - 13.5 - - 13.9 - - 14.01 - - 13.21 - - 12.11 - - 13.2 - - 12.83 - - 12.48 - - 11.46 - - 10.94 - - 11.44 - - 10.89 - - 10.85 - - 10.29 - - 10.17 - - 9.38 - - 9.03 - - 9.88 - - 9.53 - - 8.82 - - 9.36 - - 9.75 - - 9.33 - - 9.2 - - 9.12 - - 9.22 - - 9.29 - - 9.55 - - 9.19 - - 9.17 - - 9.33 - - 9.14 - - 8.77 - - 8.8 - - 8.95 - - 8.86 - - 9.2 - - 9.7 - - 9.71 - - 9.28 - - 9.24 - - 7.52 - - 7.75 - - 7.61 - - 7.12 - - 7.56 - - 8.01 - - 8.05 - - 7.52 - - 6.89 - - 6.52 - - 6.69 - - 6.87 - - 6.18 - - 6.53 - - 7.03 - - 7.26 - - 7.57 - - 7.25 - - 7.15 - - 6.94 - - 6.41 - - 7.4 - - 7.32 - - 7.11 - - 7.24 - - 7.53 - - 7.45 - - 7.78 - - 8.34 - - 8.57 - - 8.54 - - 8.55 - - 8.14 - - 7.74 - - 7.67 - - 7.37 - - 7.57 - - 7.79 - - 8.34 - - 8.31 - - 8.02 - - 8.0 - - 7.62 - - 8.36 - - 8.87 - - 10.41 - - 10.25 - - 9.93 - - 10.83 - - 9.19 - - 9.96 - - 10.28 - - 10.34 - - 10.98 - - 11.35 - - 11.42 - - 11.7 - - 11.57 - - 12.05 - - 12.4 - - 12.25 - - 11.76 - - 11.9 - - 11.81 - - 12.31 - - 12.2 - - 13.16 - - 13.64 - - 14.52 - - 13.5 - - 8.78 - - 10.0 - - 8.1 - - 9.48 - - 10.52 - - 12.07 - - 8.43 - - 8.06 - - 10.43 - - 9.37 - - 8.1 - - 7.72 - - 7.74 - - 6.69 - - 6.61 - - 6.5 - - 8.81 - - 8.83 - - 10.22 - - 11.48 - - 12.7 - - 13.33 - - 14.48 - - 14.93 - - 14.24 - - 14.28 - - 14.21 - - 12.94 - - 11.14 - - 10.5 - - 6.65 - - 5.91 - - 6.43 - - 5.33 - - 6.13 - - 6.83 - - 6.78 - - 7.42 - - 7.82 - - 7.98 - - 8.32 - - 8.21 - - 8.77 - - 8.83 - - 8.95 - - 7.97 - - 8.0 - - 8.23 - - 8.61 - - 8.29 - - 8.73 - - 8.2 - - 7.67 - - 6.89 - - 6.13 - - 6.68 - - 4.97 - - 4.81 - - 3.92 - - 3.38 - - 3.1 - - 2.6 - - 2.95 - - 3.61 - - 4.48 - - 5.87 - - 6.89 - - 7.61 - - 8.16 - - 10.02 - - 11.55 - - 10.92 - - 11.37 - - 9.81 - - 12.39 - - 12.53 - - 12.02 - - 11.83 - - 11.43 - - 10.57 - - 10.91 - - 10.26 - - 11.04 - - 11.75 - - 11.63 - - 11.29 - - 11.43 - - 10.87 - - 9.81 - - 9.22 - - 9.01 - - 9.24 - - 9.06 - - 10.12 - - 10.76 - - 12.24 - - 12.24 - - 12.32 - - 12.7 - - 12.76 - - 12.45 - - 12.89 - - 13.74 - - 12.4 - - 11.32 - - 13.81 - - 13.89 - - 13.43 - - 13.04 - - 13.66 - - 12.19 - - 12.03 - - 11.62 - - 10.93 - - 10.85 - - 11.17 - - 11.4 - - 11.11 - - 11.54 - - 11.68 - - 11.85 - - 12.42 - - 12.15 - - 11.61 - - 11.79 - - 11.06 - - 10.42 - - 10.59 - - 11.02 - - 11.1 - - 9.86 - - 9.5 - - 8.96 - - 9.01 - - 9.21 - - 9.0 - - 9.06 - - 9.06 - - 8.52 - - 8.12 - - 8.91 - - 8.51 - - 8.53 - - 9.58 - - 9.91 - - 10.18 - - 8.27 - - 9.15 - - 9.33 - - 9.22 - - 9.0 - - 9.59 - - 9.63 - - 9.71 - - 9.49 - - 9.1 - - 9.13 - - 9.42 - - 9.18 - - 9.46 - - 9.43 - - 8.63 - - 8.46 - - 8.35 - - 8.68 - - 8.1 - - 7.87 - - 6.81 - - 5.83 - - 6.06 - - 5.35 - - 5.28 - - 5.24 - - 5.39 - - 5.85 - - 6.04 - - 5.65 - - 5.47 - - 5.3 - - 5.47 - - 5.3 - - 5.6 - - 6.6 - - 5.68 - - 6.33 - - 6.04 - - 7.47 - - 8.56 - - 9.49 - - 9.84 - - 9.2 - - 9.44 - - 8.91 - - 8.36 - - 7.12 - - 7.06 - - 4.9 - - 5.2 - - 6.1 - - 6.15 - - 6.44 - - 5.75 - - 5.52 - - 5.44 - - 5.69 - - 5.17 - - 4.24 - - 4.6 - - 5.95 - - 4.97 - - 4.65 - - 5.1 - - 4.97 - - 5.24 - - 5.17 - - 5.38 - - 5.94 - - 5.41 - - 6.8 - - 6.06 - - 7.14 - - 7.36 - - 6.58 - - 7.73 - - 7.19 - - 7.11 - - 7.12 - - 7.34 - - 6.69 - - 6.18 - - 6.05 - - 5.42 - - 4.66 - - 4.39 - - 4.18 - - 5.22 - - 5.02 - - 5.84 - - 4.87 - - 5.2 - - 5.35 - - 6.05 - - 5.72 - - 6.12 - - 6.82 - - 6.04 - - 7.41 - - 8.78 - - 10.36 - - 10.97 - - 12.66 - - 13.11 - - 12.11 - - 7.52 - - 5.56 - - 4.6 - - 3.4 - - 2.51 - - 1.92 - - 0.85 - - 0.67 - - 1.0 - - 1.22 - - 0.57 - - 1.24 - - 1.7 - - 1.91 - - 2.34 - - 3.35 - - 4.22 - - 4.61 - - 5.32 - - 6.4 - - 6.98 - - 7.57 - - 8.1 - - 8.65 - - 8.78 - - 8.9 - - 7.83 - - 6.86 - - 7.21 - - 6.65 - - 5.89 - - 6.08 - - 6.3 - - 7.03 - - 7.75 - - 5.82 - - 5.6 - - 5.24 - - 5.91 - - 4.7 - - 5.26 - - 6.39 - - 7.01 - - 7.2 - - 7.06 - - 7.22 - - 7.26 - - 7.08 - - 6.5 - - 5.74 - - 5.66 - - 5.32 - - 5.72 - - 5.16 - - 5.36 - - 5.95 - - 5.73 - - 4.43 - - 3.73 - - 3.58 - - 4.19 - - 3.08 - - 3.47 - - 3.91 - - 5.03 - - 5.12 - - 5.12 - - 4.58 - - 3.86 - - 3.94 - - 3.97 - - 3.4 - - 3.22 - - 1.91 - - 2.33 - - 2.86 - - 2.93 - - 3.51 - - 3.58 - - 3.36 - - 2.73 - - 2.73 - - 2.6 - - 2.94 - - 2.53 - - 2.12 - - 2.52 - - 3.0 - - 2.6 - - 2.71 - - 2.34 - - 1.89 - - 1.56 - - 1.75 - - 2.28 - - 2.19 - - 2.24 - - 1.84 - - 2.85 - - 3.04 - - 3.42 - - 4.46 - - 5.35 - - 6.43 - - 6.36 - - 6.71 - - 7.39 - - 8.16 - - 8.8 - - 9.76 - - 9.96 - - 10.72 - - 11.18 - - 13.33 - - 13.54 - - 13.37 - - 13.83 - - 16.11 - - 13.34 - - 12.64 - - 12.98 - - 12.01 - - 11.77 - - 12.4 - - 12.15 - - 12.19 - - 12.09 - - 12.07 - - 12.15 - - 11.56 - - 10.47 - - 9.9 - - 10.35 - - 9.54 - - 9.73 - - 9.42 - - 9.32 - - 8.8 - - 8.35 - - 7.89 - - 8.29 - - 8.47 - - 8.18 - - 7.41 - - 7.07 - - 6.54 - - 6.31 - - 6.21 - - 5.46 - - 5.32 - - 5.25 - - 4.78 - - 4.11 - - 3.47 - - 2.84 - - 2.7 - - 2.98 - - 4.2 - - 4.91 - - 5.5 - - 6.33 - - 6.67 - - 7.31 - - 7.48 - - 8.15 - - 8.84 - - 9.05 - - 9.22 - - 9.54 - - 9.85 - - 9.86 - - 9.58 - - 9.3 - - 8.52 - - 7.7 - - 7.37 - - 7.54 - - 7.55 - - 6.26 - - 5.88 - - 4.96 - - 5.91 - - 5.99 - - 5.96 - - 5.66 - - 6.01 - - 6.76 - - 7.25 - - 7.56 - - 7.92 - - 7.75 - - 7.74 - - 7.62 - - 7.36 - - 6.48 - - 6.1 - - 5.99 - - 5.87 - - 6.04 - - 6.02 - - 5.96 - - 5.73 - - 5.45 - - 5.1 - - 4.78 - - 5.52 - - 5.01 - - 4.96 - - 4.24 - - 3.7 - - 3.91 - - 4.33 - - 4.26 - - 4.34 - - 3.41 - - 3.42 - - 3.86 - - 5.87 - - 5.99 - - 5.77 - - 6.44 - - 6.79 - - 7.29 - - 7.57 - - 7.64 - - 8.0 - - 9.98 - - 10.0 - - 8.56 - - 9.41 - - 9.78 - - 10.58 - - 11.37 - - 11.47 - - 11.4 - - 12.09 - - 12.89 - - 12.18 - - 11.87 - - 13.26 - - 12.84 - - 13.04 - - 12.74 - - 12.76 - - 12.04 - - 12.18 - - 11.48 - - 10.61 - - 10.29 - - 8.81 - - 7.76 - - 7.02 - - 6.04 - - 8.14 - - 7.11 - - 6.87 - - 8.01 - - 7.72 - - 6.91 - - 6.4 - - 6.21 - - 5.64 - - 5.3 - - 5.47 - - 6.43 - - 6.43 - - 6.91 - - 7.18 - - 7.13 - - 7.06 - - 7.13 - - 7.18 - - 7.28 - - 7.13 - - 7.7 - - 7.2 - - 7.47 - - 8.01 - - 7.21 - - 7.1 - - 7.31 - - 7.73 - - 7.95 - - 7.52 - - 7.53 - - 7.5 - - 7.25 - - 7.47 - - 7.31 - - 7.35 - - 7.0 - - 6.79 - - 6.62 - - 6.81 - - 6.44 - - 6.3 - - 6.09 - - 5.87 - - 5.59 - - 5.48 - - 4.53 - - 4.47 - - 3.69 - - 4.07 - - 4.02 - - 3.91 - - 4.21 - - 3.5 - - 4.3 - - 4.56 - - 4.31 - - 3.86 - - 5.11 - - 6.41 - - 7.51 - - 8.14 - - 8.73 - - 9.33 - - 9.92 - - 10.52 - - 10.82 - - 11.44 - - 12.43 - - 13.29 - - 14.14 - - 14.64 - - 14.99 - - 15.38 - - 15.49 - - 14.95 - - 14.18 - - 13.27 - - 13.03 - - 13.2 - - 12.7 - - 13.6 - - 14.7 - - 14.81 - - 15.34 - - 15.94 - - 17.56 - - 17.33 - - 16.34 - - 15.46 - - 14.91 - - 17.05 - - 14.46 - - 15.82 - - 16.48 - - 14.58 - - 14.06 - - 14.32 - - 14.94 - - 13.34 - - 14.9 - - 13.68 - - 13.54 - - 14.59 - - 14.37 - - 13.25 - - 14.0 - - 12.38 - - 13.58 - - 14.28 - - 13.09 - - 13.22 - - 11.32 - - 11.41 - - 12.24 - - 12.88 - - 13.86 - - 13.87 - - 14.21 - - 10.33 - - 10.39 - - 11.16 - - 11.62 - - 11.01 - - 10.4 - - 9.46 - - 8.88 - - 8.3 - - 7.86 - - 9.97 - - 10.82 - - 10.57 - - 7.77 - - 8.5 - - 8.91 - - 8.8 - - 8.4 - - 8.16 - - 8.1 - - 7.76 - - 6.32 - - 5.19 - - 5.09 - - 4.37 - - 4.08 - - 5.38 - - 6.51 - - 5.69 - - 5.76 - - 5.19 - - 4.44 - - 3.81 - - 3.61 - - 2.5 - - 1.3 - - 0.72 - - 1.43 - - 1.75 - - 2.79 - - 3.7 - - 4.17 - - 3.84 - - 3.8 - - 5.41 - - 7.03 - - 8.32 - - 7.78 - - 7.91 - - 8.42 - - 7.76 - - 6.32 - - 5.88 - - 5.06 - - 4.72 - - 5.22 - - 6.3 - - 6.84 - - 7.21 - - 7.42 - - 8.03 - - 8.63 - - 8.89 - - 9.11 - - 9.3 - - 9.9 - - 10.01 - - 10.2 - - 9.84 - - 8.97 - - 8.93 - - 9.42 - - 10.26 - - 10.0 - - 9.87 - - 9.06 - - 9.18 - - 8.69 - - 8.14 - - 8.11 - - 8.82 - - 9.95 - - 10.56 - - 10.6 - - 9.37 - - 8.58 - - 7.55 - - 7.36 - - 7.38 - - 7.0 - - 6.44 - - 6.05 - - 5.16 - - 4.04 - - 3.88 - - 2.78 - - 2.28 - - 1.43 - - 1.02 - - 0.41 - - 0.41 - - 1.12 - - 1.03 - - 1.32 - - 2.15 - - 2.28 - - 2.2 - - 2.31 - - 3.26 - - 3.45 - - 3.89 - - 4.33 - - 4.39 - - 4.44 - - 4.88 - - 5.03 - - 5.24 - - 5.06 - - 3.41 - - 2.79 - - 2.55 - - 3.01 - - 1.66 - - 1.61 - - 1.8 - - 1.65 - - 1.39 - - 4.0 - - 5.1 - - 3.78 - - 3.22 - - 4.3 - - 5.31 - - 5.28 - - 5.87 - - 5.83 - - 6.44 - - 6.81 - - 8.5 - - 10.53 - - 10.43 - - 10.37 - - 8.93 - - 8.14 - - 8.9 - - 8.94 - - 8.99 - - 8.3 - - 7.52 - - 7.3 - - 7.93 - - 7.44 - - 6.54 - - 6.01 - - 6.44 - - 5.66 - - 5.83 - - 6.6 - - 6.63 - - 6.53 - - 6.63 - - 5.99 - - 6.05 - - 6.06 - - 5.81 - - 5.31 - - 5.69 - - 4.69 - - 4.39 - - 4.83 - - 4.88 - - 5.59 - - 5.49 - - 4.98 - - 4.6 - - 4.39 - - 4.03 - - 3.61 - - 3.54 - - 3.61 - - 4.19 - - 4.02 - - 3.93 - - 4.1 - - 3.93 - - 2.75 - - 1.34 - - 1.2 - - 1.66 - - 1.94 - - 1.86 - - 1.64 - - 0.4 - - 0.71 - - 0.89 - - 0.1 - - 1.57 - - 2.2 - - 2.19 - - 2.76 - - 2.87 - - 4.05 - - 5.18 - - 5.74 - - 4.81 - - 5.61 - - 6.36 - - 6.87 - - 7.05 - - 6.7 - - 6.89 - - 6.65 - - 5.98 - - 5.52 - - 5.79 - - 5.85 - - 5.66 - - 5.11 - - 5.05 - - 5.84 - - 6.77 - - 6.81 - - 6.73 - - 7.1 - - 7.1 - - 7.6 - - 8.1 - - 8.41 - - 8.2 - - 8.06 - - 7.56 - - 7.27 - - 7.96 - - 7.99 - - 8.23 - - 8.43 - - 8.2 - - 7.69 - - 6.98 - - 7.0 - - 7.34 - - 7.59 - - 8.08 - - 7.79 - - 8.2 - - 8.81 - - 8.72 - - 8.51 - - 8.3 - - 8.21 - - 8.0 - - 7.71 - - 7.93 - - 7.98 - - 7.99 - - 8.02 - - 8.11 - - 8.23 - - 8.52 - - 8.61 - - 8.71 - - 8.74 - - 8.77 - - 8.67 - - 8.67 - - 8.46 - - 8.28 - - 8.35 - - 8.27 - - 8.03 - - 7.79 - - 7.94 - - 8.06 - - 8.2 - - 8.68 - - 8.86 - - 8.58 - - 8.81 - - 8.78 - - 8.73 - - 8.97 - - 9.18 - - 8.93 - - 9.0 - - 9.0 - - 8.41 - - 8.32 - - 8.65 - - 9.12 - - 8.52 - - 8.15 - - 8.13 - - 8.3 - - 8.08 - - 8.07 - - 7.63 - - 7.32 - - 7.05 - - 6.52 - - 6.08 - - 5.64 - - 5.27 - - 5.09 - - 5.66 - - 5.8 - - 6.31 - - 6.24 - - 5.46 - - 4.7 - - 4.27 - - 4.52 - - 4.59 - - 3.85 - - 4.3 - - 4.26 - - 3.45 - - 3.18 - - 4.46 - - 5.93 - - 6.4 - - 6.18 - - 6.08 - - 6.22 - - 7.34 - - 7.58 - - 7.74 - - 8.73 - - 8.92 - - 9.39 - - 8.54 - - 8.6 - - 9.08 - - 9.72 - - 9.88 - - 9.36 - - 9.44 - - 9.05 - - 9.17 - - 8.86 - - 8.9 - - 8.9 - - 8.75 - - 8.1 - - 7.62 - - 7.08 - - 7.0 - - 7.64 - - 8.0 - - 8.16 - - 8.28 - - 8.0 - - 8.42 - - 8.92 - - 8.78 - - 8.88 - - 9.36 - - 9.53 - - 9.81 - - 9.81 - - 10.04 - - 9.44 - - 9.59 - - 9.86 - - 10.4 - - 11.19 - - 11.42 - - 11.76 - - 11.88 - - 11.99 - - 11.64 - - 11.53 - - 12.18 - - 12.55 - - 12.66 - - 11.87 - - 12.53 - - 12.37 - - 12.25 - - 11.94 - - 11.74 - - 10.57 - - 10.43 - - 10.06 - - 9.28 - - 9.3 - - 9.68 - - 9.68 - - 10.25 - - 9.9 - - 10.63 - - 9.76 - - 8.86 - - 8.63 - - 7.34 - - 6.58 - - 6.31 - - 5.92 - - 5.76 - - 5.54 - - 5.43 - - 5.62 - - 5.92 - - 6.32 - - 6.59 - - 6.76 - - 7.02 - - 7.31 - - 7.71 - - 7.78 - - 7.86 - - 6.9 - - 6.94 - - 7.0 - - 6.93 - - 6.3 - - 4.81 - - 4.6 - - 5.52 - - 6.17 - - 6.15 - - 4.55 - - 5.25 - - 4.57 - - 4.68 - - 5.12 - - 4.95 - - 4.84 - - 4.98 - - 5.53 - - 5.83 - - 5.98 - - 6.08 - - 7.06 - - 7.96 - - 8.58 - - 9.03 - - 9.34 - - 9.14 - - 9.58 - - 10.08 - - 9.87 - - 9.47 - - 10.24 - - 10.98 - - 11.54 - - 11.93 - - 11.77 - - 11.61 - - 11.55 - - 11.22 - - 10.29 - - 10.69 - - 9.59 - - 9.4 - - 9.71 - - 9.32 - - 9.69 - - 10.03 - - 9.64 - - 9.43 - - 9.43 - - 8.99 - - 8.54 - - 7.88 - - 6.95 - - 6.31 - - 5.77 - - 5.42 - - 4.79 - - 4.75 - - 4.87 - - 4.27 - - 3.72 - - 1.94 - - 0.92 - - 0.5 - - 1.0 - - 0.91 - - 1.41 - - 0.28 - - 1.91 - - 2.22 - - 3.21 - - 4.2 - - 4.72 - - 6.32 - - 7.7 - - 8.67 - - 9.36 - - 8.77 - - 7.11 - - 6.44 - - 7.38 - - 7.22 - - 6.53 - - 5.79 - - 6.93 - - 7.2 - - 6.6 - - 7.11 - - 8.21 - - 8.0 - - 7.61 - - 7.3 - - 8.05 - - 8.0 - - 8.4 - - 8.0 - - 8.03 - - 8.5 - - 8.16 - - 8.55 - - 8.85 - - 9.61 - - 10.43 - - 10.53 - - 10.44 - - 10.22 - - 9.99 - - 10.11 - - 10.12 - - 10.23 - - 10.35 - - 10.57 - - 10.85 - - 10.95 - - 11.14 - - 11.28 - - 11.6 - - 11.99 - - 12.15 - - 12.01 - - 13.42 - - 13.55 - - 13.77 - - 12.92 - - 13.0 - - 12.6 - - 11.8 - - 11.22 - - 9.56 - - 10.15 - - 11.01 - - 10.97 - - 11.2 - - 11.49 - - 11.32 - - 11.72 - - 12.35 - - 12.99 - - 14.06 - - 13.73 - - 12.53 - - 14.86 - - 14.77 - - 14.52 - - 13.57 - - 13.09 - - 13.41 - - 13.28 - - 12.97 - - 12.82 - - 13.04 - - 13.23 - - 12.62 - - 12.16 - - 11.4 - - 10.16 - - 9.54 - - 9.08 - - 8.63 - - 8.79 - - 8.95 - - 9.75 - - 9.95 - - 10.19 - - 13.04 - - 10.0 - - 10.54 - - 11.42 - - 12.59 - - 12.76 - - 13.71 - - 14.17 - - 14.38 - - 13.73 - - 12.21 - - 11.58 - - 10.9 - - 9.9 - - 9.98 - - 8.9 - - 8.4 - - 7.71 - - 7.27 - - 7.61 - - 7.32 - - 7.02 - - 6.68 - - 6.72 - - 7.5 - - 8.68 - - 8.5 - - 8.31 - - 8.45 - - 8.91 - - 8.83 - - 9.83 - - 8.98 - - 9.43 - - 9.9 - - 10.69 - - 10.31 - - 10.6 - - 9.7 - - 9.6 - - 8.71 - - 8.81 - - 8.53 - - 12.15 - - 13.26 - - 13.82 - - 13.33 - - 13.15 - - 12.35 - - 11.31 - - 10.44 - - 10.92 - - 10.35 - - 7.7 - - 7.04 - - 7.46 - - 7.37 - - 7.16 - - 7.0 - - 7.1 - - 6.8 - - 8.03 - - 9.32 - - 12.18 - - 12.71 - - 13.47 - - 15.38 - - 15.98 - - 16.2 - - 16.84 - - 17.61 - - 19.82 - - 19.46 - - 18.42 - - 22.1 - - 27.16 - - 29.13 - - 25.46 - - 24.52 - - 22.71 - - 19.98 - - 18.71 - - 18.79 - - 18.41 - - 18.93 - - 17.82 - - 19.35 - - 17.82 - - 17.99 - - 16.25 - - 15.91 - - 15.06 - - 14.64 - - 14.09 - - 14.1 - - 13.42 - - 11.92 - - 11.37 - - 10.98 - - 9.27 - - 8.84 - - 9.19 - - 9.77 - - 11.47 - - 12.45 - - 12.3 - - 11.9 - - 10.88 - - 12.5 - - 11.87 - - 11.52 - - 10.89 - - 10.81 - - 9.45 - - 8.94 - - 8.82 - - 9.34 - - 9.5 - - 9.23 - - 9.48 - - 10.15 - - 9.37 - - 8.52 - - 7.6 - - 6.99 - - 6.49 - - 6.18 - - 5.66 - - 5.81 - - 6.11 - - 5.28 - - 4.7 - - 6.02 - - 5.39 - - 6.19 - - 9.14 - - 10.76 - - 9.13 - - 7.87 - - 6.83 - - 8.81 - - 11.8 - - 12.78 - - 12.12 - - 14.75 - - 13.89 - - 12.96 - - 11.08 - - 12.44 - - 13.64 - - 13.9 - - 15.1 - - 14.25 - - 14.84 - - 15.85 - - 15.7 - - 15.98 - - 15.92 - - 16.0 - - 16.49 - - 16.5 - - 16.76 - - 16.83 - - 16.39 - - 14.53 - - 14.34 - - 14.0 - - 12.54 - - 11.55 - - 10.85 - - 10.04 - - 10.51 - - 9.03 - - 8.0 - - 6.53 - - 6.08 - - 5.52 - - 3.71 - - 4.5 - - 4.62 - - 10.42 - - 13.68 - - 12.22 - - 9.97 - - 7.35 - - 5.8 - - 5.38 - - 6.07 - - 7.61 - - 8.14 - - 8.41 - - 10.18 - - 10.62 - - 11.65 - - 11.86 - - 12.3 - - 12.17 - - 12.13 - - 11.8 - - 11.99 - - 11.88 - - 11.21 - - 10.97 - - 11.45 - - 9.57 - - 9.02 - - 9.22 - - 9.3 - - 8.72 - - 8.06 - - 7.08 - - 5.69 - - 2.91 - - 0.42 - - 2.56 - - 5.26 - - 6.66 - - 8.07 - - 9.08 - - 10.0 - - 11.51 - - 13.27 - - 14.37 - - 15.43 - - 15.14 - - 14.59 - - 14.43 - - 13.5 - - 14.72 - - 13.57 - - 13.01 - - 13.2 - - 13.77 - - 16.36 - - 16.32 - - 16.56 - - 13.7 - - 13.2 - - 10.95 - - 11.88 - - 10.98 - - 10.93 - - 11.04 - - 10.21 - - 11.61 - - 10.35 - - 13.46 - - 13.6 - - 16.21 - - 15.04 - - 13.56 - - 12.75 - - 11.73 - - 12.1 - - 13.97 - - 13.9 - - 14.58 - - 14.85 - - 12.39 - - 13.06 - - 13.24 - - 13.77 - - 12.93 - - 13.87 - - 14.84 - - 14.02 - - 12.81 - - 12.5 - - 10.42 - - 9.36 - - 8.3 - - 8.59 - - 9.12 - - 8.27 - - 8.93 - - 8.28 - - 7.18 - - 7.57 - - 8.52 - - 9.41 - - 9.66 - - 9.87 - - 10.72 - - 10.44 - - 9.69 - - 12.94 - - 13.47 - - 13.73 - - 13.79 - - 12.46 - - 11.83 - - 11.24 - - 10.62 - - 9.39 - - 8.71 - - 7.34 - - 7.67 - - 6.15 - - 5.36 - - 6.02 - - 7.73 - - 8.87 - - 8.98 - - 9.1 - - 9.4 - - 9.67 - - 9.97 - - 10.33 - - 10.9 - - 11.11 - - 11.51 - - 11.92 - - 12.38 - - 12.62 - - 12.04 - - 12.2 - - 11.76 - - 10.75 - - 10.12 - - 9.14 - - 7.91 + - 1.36 + - 4.46 + - 7.18 + - 7.08 + - 6.67 + - 6.94 + - 6.96 + - 6.5 + - 6.13 + - 5.18 + - 1.96 + - 13.74 + - 13.79 + - 14.08 + - 13.82 + - 13.21 + - 14.31 + - 14.51 + - 13.4 + - 12.34 + - 11.85 + - 10.51 + - 8.9 + - 8.35 + - 8.28 + - 7.92 + - 7.5 + - 7.5 + - 7.4 + - 8.61 + - 7.63 + - 5.51 + - 4.88 + - 4.38 + - 3.22 + - 3.16 + - 3.98 + - 5.47 + - 5.14 + - 6.38 + - 7.16 + - 8.02 + - 9.77 + - 10.09 + - 9.85 + - 10.74 + - 10.88 + - 10.57 + - 10.24 + - 10.43 + - 11.47 + - 11.43 + - 10.89 + - 10.53 + - 9.19 + - 8.53 + - 7.7 + - 7.01 + - 7.06 + - 6.84 + - 6.48 + - 6.4 + - 6.64 + - 6.44 + - 6.63 + - 6.64 + - 7.51 + - 9.44 + - 9.53 + - 10.09 + - 10.66 + - 11.04 + - 11.14 + - 12.24 + - 12.68 + - 12.32 + - 12.85 + - 13.32 + - 12.67 + - 12.52 + - 11.1 + - 10.69 + - 10.75 + - 11.99 + - 12.12 + - 12.39 + - 11.23 + - 10.74 + - 12.62 + - 14.24 + - 13.04 + - 12.52 + - 12.86 + - 13.42 + - 13.63 + - 14.73 + - 16.84 + - 14.97 + - 9.08 + - 6.36 + - 6.1 + - 7.1 + - 7.82 + - 8.26 + - 9.14 + - 8.77 + - 7.96 + - 7.75 + - 6.6 + - 4.8 + - 3.18 + - 2.02 + - 1.22 + - 0.54 + - 1.66 + - 3.68 + - 5.48 + - 6.82 + - 7.78 + - 8.36 + - 8.53 + - 9.49 + - 10.76 + - 11.89 + - 12.06 + - 12.32 + - 12.44 + - 12.28 + - 11.72 + - 11.89 + - 12.76 + - 10.2 + - 10.12 + - 9.88 + - 10.4 + - 11.61 + - 11.15 + - 10.91 + - 11.5 + - 10.83 + - 10.98 + - 10.47 + - 9.95 + - 9.66 + - 9.1 + - 8.85 + - 7.22 + - 6.28 + - 7.33 + - 8.13 + - 8.19 + - 7.62 + - 7.91 + - 8.8 + - 8.64 + - 9.62 + - 10.88 + - 10.91 + - 10.29 + - 9.41 + - 9.7 + - 10.06 + - 10.75 + - 10.95 + - 11.24 + - 11.46 + - 11.99 + - 12.4 + - 12.47 + - 12.81 + - 12.41 + - 12.3 + - 11.93 + - 12.5 + - 13.08 + - 11.99 + - 11.06 + - 9.58 + - 9.14 + - 9.94 + - 10.51 + - 9.75 + - 9.14 + - 7.41 + - 8.18 + - 8.61 + - 9.2 + - 9.62 + - 9.5 + - 9.51 + - 9.35 + - 9.4 + - 9.26 + - 8.79 + - 9.71 + - 9.75 + - 9.97 + - 10.06 + - 9.66 + - 9.77 + - 9.43 + - 9.49 + - 8.36 + - 7.56 + - 7.0 + - 7.32 + - 7.34 + - 7.24 + - 7.54 + - 7.13 + - 6.96 + - 7.1 + - 7.27 + - 6.84 + - 6.39 + - 6.77 + - 6.8 + - 6.75 + - 5.41 + - 5.64 + - 5.52 + - 6.22 + - 6.26 + - 7.11 + - 7.69 + - 7.52 + - 7.73 + - 7.57 + - 7.27 + - 7.92 + - 8.18 + - 8.38 + - 8.34 + - 8.82 + - 9.34 + - 10.49 + - 11.72 + - 12.4 + - 13.41 + - 14.64 + - 15.75 + - 16.14 + - 16.16 + - 16.19 + - 16.95 + - 17.3 + - 14.19 + - 13.71 + - 12.26 + - 11.58 + - 10.94 + - 10.79 + - 10.02 + - 10.59 + - 11.65 + - 11.88 + - 11.86 + - 12.26 + - 11.88 + - 11.24 + - 11.68 + - 11.81 + - 10.53 + - 11.45 + - 11.45 + - 9.17 + - 9.4 + - 10.08 + - 9.74 + - 9.36 + - 9.14 + - 9.21 + - 9.03 + - 8.51 + - 8.85 + - 8.21 + - 5.32 + - 3.47 + - 1.43 + - 3.36 + - 5.59 + - 7.16 + - 7.78 + - 7.74 + - 8.64 + - 8.76 + - 9.85 + - 11.01 + - 11.83 + - 11.95 + - 10.97 + - 10.83 + - 11.81 + - 12.89 + - 12.47 + - 12.97 + - 12.5 + - 12.66 + - 13.42 + - 13.95 + - 12.48 + - 14.29 + - 13.65 + - 12.5 + - 12.37 + - 11.32 + - 9.98 + - 8.1 + - 10.24 + - 11.81 + - 12.65 + - 12.22 + - 12.44 + - 12.22 + - 11.85 + - 11.86 + - 11.4 + - 9.8 + - 9.74 + - 9.88 + - 8.63 + - 7.96 + - 8.13 + - 7.72 + - 7.42 + - 8.63 + - 10.12 + - 10.69 + - 12.09 + - 11.87 + - 12.1 + - 13.55 + - 12.96 + - 11.93 + - 12.67 + - 11.56 + - 12.18 + - 11.92 + - 11.57 + - 12.74 + - 13.32 + - 14.15 + - 13.81 + - 16.81 + - 17.76 + - 16.57 + - 17.29 + - 17.82 + - 17.81 + - 18.88 + - 19.36 + - 14.76 + - 12.98 + - 12.73 + - 12.74 + - 14.03 + - 15.11 + - 14.82 + - 14.84 + - 12.66 + - 11.91 + - 10.8 + - 8.94 + - 8.05 + - 8.38 + - 8.65 + - 8.15 + - 7.83 + - 6.09 + - 6.07 + - 8.22 + - 9.25 + - 7.83 + - 8.51 + - 8.54 + - 7.89 + - 7.65 + - 7.35 + - 7.43 + - 8.63 + - 8.26 + - 7.69 + - 7.84 + - 10.33 + - 7.63 + - 8.88 + - 8.76 + - 8.64 + - 7.87 + - 6.45 + - 5.8 + - 5.24 + - 6.3 + - 4.7 + - 3.0 + - 3.06 + - 2.24 + - 4.5 + - 11.19 + - 9.26 + - 8.25 + - 7.1 + - 8.19 + - 8.63 + - 8.08 + - 8.3 + - 7.71 + - 7.16 + - 7.11 + - 7.21 + - 8.08 + - 7.86 + - 8.41 + - 9.56 + - 8.63 + - 8.64 + - 8.47 + - 7.67 + - 7.14 + - 7.2 + - 7.46 + - 7.74 + - 6.62 + - 6.42 + - 6.69 + - 7.4 + - 7.67 + - 7.78 + - 8.13 + - 8.32 + - 8.11 + - 7.99 + - 6.95 + - 6.33 + - 7.67 + - 7.38 + - 7.65 + - 6.25 + - 6.66 + - 6.77 + - 6.22 + - 5.5 + - 5.46 + - 6.41 + - 5.41 + - 4.36 + - 4.31 + - 4.2 + - 4.44 + - 2.94 + - 2.06 + - 1.6 + - 1.51 + - 1.3 + - 1.92 + - 2.52 + - 2.38 + - 3.2 + - 4.84 + - 3.51 + - 2.56 + - 1.7 + - 0.86 + - 0.41 + - 0.71 + - 1.0 + - 2.11 + - 2.55 + - 3.18 + - 3.89 + - 2.83 + - 2.52 + - 3.35 + - 4.32 + - 5.38 + - 5.89 + - 5.58 + - 5.82 + - 5.55 + - 5.05 + - 5.71 + - 6.53 + - 6.46 + - 6.3 + - 6.14 + - 6.11 + - 6.39 + - 6.41 + - 6.45 + - 6.2 + - 5.54 + - 4.88 + - 4.57 + - 4.97 + - 4.57 + - 4.0 + - 3.93 + - 4.57 + - 5.23 + - 5.63 + - 5.56 + - 5.46 + - 5.26 + - 4.96 + - 5.16 + - 5.66 + - 5.28 + - 4.99 + - 4.94 + - 4.79 + - 4.74 + - 5.06 + - 5.09 + - 4.97 + - 4.97 + - 4.92 + - 5.22 + - 4.21 + - 4.12 + - 3.62 + - 3.71 + - 3.64 + - 3.98 + - 3.81 + - 2.73 + - 2.14 + - 3.69 + - 3.67 + - 3.64 + - 2.8 + - 3.83 + - 0.81 + - 1.92 + - 2.95 + - 3.38 + - 2.32 + - 2.1 + - 2.24 + - 2.66 + - 1.86 + - 2.2 + - 2.11 + - 3.14 + - 2.69 + - 3.49 + - 3.61 + - 3.61 + - 3.38 + - 3.76 + - 4.83 + - 4.63 + - 5.28 + - 5.91 + - 6.65 + - 6.96 + - 7.12 + - 7.21 + - 7.45 + - 7.12 + - 6.8 + - 7.19 + - 7.74 + - 7.78 + - 7.61 + - 7.67 + - 8.08 + - 6.93 + - 7.14 + - 7.71 + - 8.14 + - 8.56 + - 8.57 + - 8.56 + - 8.68 + - 8.82 + - 9.17 + - 9.23 + - 9.27 + - 9.19 + - 9.41 + - 9.62 + - 9.7 + - 9.76 + - 9.69 + - 9.69 + - 9.9 + - 9.97 + - 10.04 + - 10.4 + - 10.62 + - 9.85 + - 10.71 + - 9.84 + - 9.45 + - 9.34 + - 9.2 + - 9.01 + - 7.86 + - 6.18 + - 7.02 + - 6.75 + - 6.79 + - 6.51 + - 7.08 + - 7.14 + - 7.78 + - 8.27 + - 8.07 + - 7.89 + - 7.16 + - 6.55 + - 6.49 + - 6.61 + - 7.6 + - 6.48 + - 6.48 + - 7.29 + - 7.47 + - 8.18 + - 8.46 + - 8.35 + - 8.42 + - 8.18 + - 8.2 + - 7.98 + - 7.77 + - 8.23 + - 7.86 + - 7.43 + - 7.0 + - 6.93 + - 6.39 + - 5.98 + - 5.58 + - 4.75 + - 3.91 + - 3.04 + - 1.91 + - 1.5 + - 1.22 + - 0.86 + - 0.81 + - 1.4 + - 2.15 + - 3.42 + - 4.32 + - 4.55 + - 4.83 + - 5.16 + - 5.87 + - 6.29 + - 6.72 + - 7.36 + - 7.8 + - 6.95 + - 6.71 + - 7.46 + - 8.13 + - 8.16 + - 7.79 + - 8.14 + - 8.01 + - 8.0 + - 6.94 + - 7.02 + - 7.73 + - 8.6 + - 8.27 + - 7.56 + - 7.73 + - 8.28 + - 8.14 + - 8.19 + - 8.46 + - 8.41 + - 8.6 + - 8.2 + - 8.11 + - 7.82 + - 7.13 + - 7.28 + - 7.03 + - 8.33 + - 10.25 + - 10.62 + - 10.48 + - 11.93 + - 11.9 + - 11.36 + - 11.86 + - 11.81 + - 12.37 + - 13.55 + - 14.33 + - 15.03 + - 15.65 + - 15.87 + - 12.65 + - 12.16 + - 12.98 + - 13.6 + - 13.8 + - 14.58 + - 14.34 + - 14.65 + - 14.07 + - 13.32 + - 13.42 + - 13.74 + - 13.91 + - 14.16 + - 17.41 + - 16.77 + - 19.41 + - 16.9 + - 15.99 + - 15.96 + - 15.63 + - 15.37 + - 15.09 + - 14.6 + - 12.98 + - 11.6 + - 10.41 + - 10.43 + - 10.16 + - 8.83 + - 8.04 + - 9.3 + - 11.12 + - 12.21 + - 12.35 + - 13.3 + - 13.1 + - 15.01 + - 13.73 + - 14.41 + - 15.0 + - 14.2 + - 15.3 + - 14.3 + - 14.46 + - 15.75 + - 16.48 + - 15.88 + - 15.85 + - 13.95 + - 14.53 + - 13.72 + - 13.13 + - 12.84 + - 12.52 + - 12.25 + - 12.02 + - 13.45 + - 12.8 + - 13.65 + - 14.25 + - 13.75 + - 15.09 + - 16.3 + - 16.82 + - 18.07 + - 21.11 + - 18.69 + - 15.26 + - 11.77 + - 9.22 + - 7.2 + - 5.63 + - 4.53 + - 6.72 + - 8.85 + - 8.43 + - 6.24 + - 4.69 + - 3.73 + - 2.88 + - 2.47 + - 1.58 + - 0.5 + - 1.3 + - 2.79 + - 3.62 + - 3.97 + - 3.75 + - 4.69 + - 5.91 + - 6.97 + - 8.36 + - 8.83 + - 9.5 + - 11.34 + - 12.02 + - 11.04 + - 11.3 + - 12.2 + - 11.12 + - 11.9 + - 16.33 + - 16.51 + - 16.68 + - 17.22 + - 17.85 + - 18.45 + - 17.9 + - 14.15 + - 13.52 + - 11.96 + - 8.02 + - 8.4 + - 8.27 + - 8.65 + - 7.79 + - 7.16 + - 6.04 + - 5.36 + - 4.81 + - 4.11 + - 3.92 + - 3.54 + - 4.85 + - 6.43 + - 6.12 + - 6.2 + - 6.33 + - 5.9 + - 5.35 + - 4.29 + - 3.94 + - 5.04 + - 5.02 + - 5.46 + - 5.87 + - 5.55 + - 6.47 + - 7.61 + - 8.17 + - 8.28 + - 8.83 + - 9.28 + - 9.98 + - 9.85 + - 10.11 + - 10.2 + - 10.5 + - 10.1 + - 8.91 + - 7.47 + - 7.79 + - 4.32 + - 8.3 + - 9.86 + - 9.04 + - 9.51 + - 8.83 + - 8.83 + - 8.73 + - 8.59 + - 8.08 + - 7.83 + - 8.14 + - 7.56 + - 7.29 + - 6.56 + - 6.37 + - 4.36 + - 4.66 + - 4.82 + - 4.48 + - 4.6 + - 4.82 + - 5.24 + - 4.96 + - 4.46 + - 3.88 + - 2.06 + - 0.76 + - 3.26 + - 3.75 + - 4.3 + - 4.6 + - 5.2 + - 5.8 + - 6.09 + - 6.05 + - 6.67 + - 7.28 + - 7.38 + - 7.82 + - 8.13 + - 8.42 + - 8.34 + - 7.69 + - 7.38 + - 7.88 + - 8.51 + - 8.68 + - 8.65 + - 8.14 + - 9.18 + - 10.06 + - 9.06 + - 8.9 + - 8.08 + - 7.07 + - 7.53 + - 7.72 + - 7.7 + - 7.24 + - 7.13 + - 7.08 + - 6.66 + - 6.66 + - 6.91 + - 7.65 + - 7.65 + - 7.78 + - 7.96 + - 8.15 + - 8.45 + - 8.7 + - 8.74 + - 8.43 + - 8.41 + - 8.9 + - 9.09 + - 8.65 + - 8.54 + - 8.86 + - 10.2 + - 10.41 + - 11.33 + - 11.95 + - 12.44 + - 13.0 + - 12.85 + - 12.7 + - 12.57 + - 12.8 + - 12.95 + - 13.12 + - 13.07 + - 12.3 + - 11.78 + - 10.88 + - 9.71 + - 9.12 + - 9.29 + - 8.9 + - 10.33 + - 10.01 + - 11.03 + - 11.08 + - 11.6 + - 11.99 + - 12.26 + - 12.91 + - 13.16 + - 12.9 + - 12.25 + - 11.07 + - 10.5 + - 9.71 + - 8.83 + - 8.39 + - 8.01 + - 7.41 + - 6.11 + - 4.59 + - 5.19 + - 6.74 + - 8.73 + - 10.25 + - 10.22 + - 12.48 + - 12.31 + - 12.54 + - 12.98 + - 13.05 + - 13.15 + - 13.3 + - 13.75 + - 13.81 + - 13.7 + - 13.71 + - 12.92 + - 12.7 + - 13.44 + - 13.76 + - 14.12 + - 14.43 + - 14.48 + - 13.37 + - 11.87 + - 11.32 + - 11.38 + - 11.35 + - 11.51 + - 10.98 + - 9.14 + - 10.02 + - 9.74 + - 8.77 + - 8.95 + - 8.91 + - 8.41 + - 8.63 + - 8.1 + - 7.56 + - 6.84 + - 6.87 + - 7.16 + - 7.06 + - 7.22 + - 7.41 + - 7.76 + - 7.2 + - 7.03 + - 7.48 + - 6.55 + - 7.2 + - 7.16 + - 7.82 + - 8.02 + - 8.45 + - 8.06 + - 8.43 + - 8.33 + - 8.19 + - 7.81 + - 7.64 + - 7.82 + - 7.61 + - 7.61 + - 7.74 + - 8.15 + - 8.3 + - 8.22 + - 8.57 + - 8.7 + - 8.05 + - 7.45 + - 7.01 + - 6.13 + - 6.72 + - 6.56 + - 6.01 + - 5.8 + - 5.66 + - 5.85 + - 6.0 + - 5.95 + - 5.64 + - 5.56 + - 5.26 + - 4.92 + - 4.78 + - 4.16 + - 5.27 + - 4.43 + - 4.54 + - 5.19 + - 5.1 + - 4.46 + - 4.31 + - 4.95 + - 4.23 + - 4.04 + - 3.77 + - 3.3 + - 2.48 + - 1.66 + - 2.33 + - 3.89 + - 5.46 + - 6.66 + - 7.41 + - 7.25 + - 7.14 + - 7.27 + - 7.13 + - 7.06 + - 6.67 + - 6.38 + - 6.31 + - 6.1 + - 5.61 + - 5.23 + - 5.79 + - 5.46 + - 4.02 + - 4.61 + - 4.93 + - 4.41 + - 4.74 + - 5.53 + - 6.05 + - 6.38 + - 6.96 + - 8.01 + - 7.93 + - 8.63 + - 11.22 + - 10.73 + - 8.88 + - 8.58 + - 8.2 + - 7.44 + - 6.96 + - 7.16 + - 6.48 + - 5.79 + - 5.69 + - 5.81 + - 5.66 + - 5.75 + - 5.58 + - 6.09 + - 6.72 + - 6.52 + - 6.06 + - 7.04 + - 7.76 + - 8.3 + - 7.81 + - 7.28 + - 6.76 + - 7.18 + - 7.59 + - 7.95 + - 8.3 + - 8.7 + - 8.85 + - 9.63 + - 9.62 + - 9.97 + - 11.78 + - 12.16 + - 14.68 + - 15.4 + - 17.3 + - 19.94 + - 20.48 + - 21.49 + - 23.54 + - 21.13 + - 18.68 + - 17.98 + - 17.08 + - 18.12 + - 18.73 + - 17.4 + - 15.59 + - 12.41 + - 12.02 + - 11.33 + - 11.21 + - 10.26 + - 10.26 + - 8.93 + - 9.06 + - 7.91 + - 7.62 + - 6.8 + - 7.16 + - 7.78 + - 8.42 + - 8.91 + - 9.37 + - 9.46 + - 9.74 + - 9.75 + - 9.0 + - 8.75 + - 8.31 + - 8.16 + - 8.16 + - 7.87 + - 7.86 + - 7.67 + - 8.19 + - 8.44 + - 8.25 + - 7.77 + - 7.04 + - 6.82 + - 7.42 + - 9.12 + - 9.05 + - 9.05 + - 8.76 + - 8.9 + - 8.4 + - 8.9 + - 9.41 + - 9.65 + - 10.65 + - 10.78 + - 11.68 + - 12.18 + - 12.43 + - 13.03 + - 14.45 + - 14.97 + - 15.88 + - 16.57 + - 15.85 + - 15.04 + - 14.98 + - 15.13 + - 15.0 + - 14.91 + - 14.04 + - 13.35 + - 14.0 + - 14.84 + - 15.94 + - 16.1 + - 16.08 + - 16.07 + - 14.85 + - 15.71 + - 15.89 + - 15.6 + - 14.74 + - 15.25 + - 13.84 + - 13.56 + - 12.71 + - 12.27 + - 11.88 + - 11.61 + - 11.28 + - 10.2 + - 9.04 + - 10.42 + - 9.68 + - 8.74 + - 8.51 + - 7.69 + - 6.64 + - 5.96 + - 5.7 + - 4.37 + - 3.26 + - 1.75 + - 1.91 + - 3.23 + - 5.07 + - 5.63 + - 5.81 + - 5.98 + - 6.44 + - 6.65 + - 6.59 + - 6.39 + - 6.2 + - 6.0 + - 6.04 + - 5.22 + - 6.36 + - 5.11 + - 5.26 + - 6.48 + - 6.16 + - 7.67 + - 8.22 + - 8.28 + - 8.47 + - 7.89 + - 7.53 + - 7.12 + - 6.2 + - 6.13 + - 5.26 + - 4.33 + - 3.58 + - 3.33 + - 3.9 + - 4.25 + - 5.24 + - 5.8 + - 6.95 + - 7.42 + - 8.5 + - 8.91 + - 10.04 + - 10.82 + - 10.75 + - 9.9 + - 9.35 + - 9.3 + - 8.92 + - 8.32 + - 8.39 + - 9.1 + - 9.75 + - 10.53 + - 11.81 + - 12.43 + - 12.7 + - 12.17 + - 11.15 + - 9.94 + - 10.53 + - 10.83 + - 10.07 + - 10.85 + - 10.68 + - 9.35 + - 9.27 + - 10.26 + - 11.61 + - 11.04 + - 10.6 + - 10.9 + - 11.52 + - 12.03 + - 12.12 + - 11.61 + - 10.77 + - 9.26 + - 9.38 + - 10.73 + - 10.73 + - 10.99 + - 10.6 + - 9.88 + - 9.71 + - 9.69 + - 9.61 + - 10.33 + - 10.38 + - 10.58 + - 11.33 + - 11.45 + - 11.02 + - 10.16 + - 9.24 + - 9.36 + - 9.43 + - 9.11 + - 8.64 + - 8.16 + - 7.24 + - 6.53 + - 7.18 + - 7.83 + - 7.28 + - 6.75 + - 6.86 + - 7.13 + - 7.6 + - 7.0 + - 6.51 + - 6.3 + - 6.73 + - 7.65 + - 7.4 + - 7.13 + - 6.57 + - 5.64 + - 4.8 + - 5.22 + - 5.54 + - 5.66 + - 5.57 + - 5.39 + - 5.53 + - 5.51 + - 4.37 + - 4.02 + - 4.52 + - 5.09 + - 5.02 + - 4.67 + - 4.46 + - 3.91 + - 3.5 + - 2.55 + - 2.75 + - 2.62 + - 3.48 + - 3.85 + - 4.05 + - 4.37 + - 5.03 + - 5.67 + - 5.43 + - 4.75 + - 4.27 + - 4.68 + - 4.22 + - 4.61 + - 4.3 + - 3.67 + - 3.23 + - 2.9 + - 2.42 + - 2.4 + - 2.77 + - 2.51 + - 2.61 + - 2.51 + - 2.73 + - 3.13 + - 3.04 + - 2.9 + - 3.03 + - 3.03 + - 2.82 + - 2.95 + - 3.18 + - 3.23 + - 3.58 + - 4.29 + - 4.08 + - 3.47 + - 3.66 + - 2.58 + - 1.17 + - 0.82 + - 0.51 + - 1.77 + - 1.91 + - 1.56 + - 1.22 + - 1.32 + - 2.04 + - 2.55 + - 2.31 + - 2.04 + - 2.1 + - 3.2 + - 4.57 + - 4.59 + - 5.28 + - 4.26 + - 4.04 + - 3.83 + - 4.96 + - 5.46 + - 4.94 + - 4.62 + - 4.25 + - 5.78 + - 5.63 + - 4.88 + - 4.71 + - 4.21 + - 3.83 + - 2.92 + - 3.47 + - 3.83 + - 4.05 + - 4.31 + - 4.56 + - 5.35 + - 5.59 + - 5.37 + - 5.24 + - 7.14 + - 7.49 + - 7.65 + - 7.58 + - 6.26 + - 5.69 + - 5.45 + - 4.63 + - 3.75 + - 3.45 + - 2.84 + - 1.78 + - 2.12 + - 3.26 + - 4.71 + - 5.19 + - 5.73 + - 7.29 + - 8.39 + - 10.62 + - 13.22 + - 13.16 + - 13.02 + - 13.44 + - 13.67 + - 13.55 + - 13.38 + - 13.33 + - 13.3 + - 12.8 + - 12.96 + - 13.4 + - 13.15 + - 12.65 + - 12.06 + - 10.65 + - 8.67 + - 8.73 + - 7.58 + - 6.51 + - 5.85 + - 6.23 + - 6.97 + - 7.44 + - 8.77 + - 8.7 + - 9.53 + - 10.17 + - 9.8 + - 9.1 + - 8.46 + - 8.1 + - 7.0 + - 7.29 + - 6.4 + - 5.77 + - 5.85 + - 5.88 + - 6.08 + - 5.77 + - 5.69 + - 6.16 + - 6.67 + - 6.62 + - 4.67 + - 4.97 + - 5.09 + - 4.96 + - 5.0 + - 4.77 + - 4.26 + - 3.86 + - 4.12 + - 4.27 + - 4.63 + - 5.7 + - 6.29 + - 5.89 + - 4.88 + - 5.32 + - 5.8 + - 5.87 + - 6.22 + - 6.31 + - 5.78 + - 5.75 + - 5.02 + - 4.34 + - 4.56 + - 3.75 + - 2.85 + - 2.92 + - 4.0 + - 5.78 + - 7.69 + - 8.59 + - 10.14 + - 12.13 + - 11.88 + - 12.7 + - 10.73 + - 8.55 + - 7.85 + - 6.84 + - 5.97 + - 5.0 + - 5.56 + - 6.69 + - 11.12 + - 16.35 + - 17.09 + - 15.08 + - 13.77 + - 13.45 + - 12.62 + - 11.18 + - 9.3 + - 8.18 + - 6.92 + - 5.81 + - 5.58 + - 5.61 + - 4.58 + - 3.48 + - 3.51 + - 3.32 + - 3.31 + - 3.21 + - 2.83 + - 2.44 + - 1.62 + - 0.58 + - 0.36 + - 0.76 + - 0.41 + - 0.5 + - 0.28 + - 0.85 + - 1.5 + - 1.79 + - 2.12 + - 2.85 + - 2.35 + - 1.75 + - 1.49 + - 1.72 + - 1.97 + - 2.4 + - 4.43 + - 4.61 + - 4.79 + - 4.89 + - 5.37 + - 5.69 + - 6.08 + - 6.57 + - 7.56 + - 5.92 + - 6.39 + - 6.85 + - 7.38 + - 7.26 + - 7.69 + - 7.34 + - 5.63 + - 4.71 + - 5.72 + - 6.27 + - 6.16 + - 5.83 + - 5.22 + - 4.4 + - 4.05 + - 3.04 + - 2.72 + - 3.32 + - 3.98 + - 5.14 + - 5.47 + - 4.58 + - 4.25 + - 3.49 + - 3.27 + - 3.08 + - 2.92 + - 2.62 + - 3.11 + - 4.62 + - 5.19 + - 5.68 + - 6.5 + - 6.49 + - 6.62 + - 7.22 + - 8.51 + - 8.71 + - 7.37 + - 7.88 + - 7.21 + - 7.07 + - 5.06 + - 4.74 + - 5.74 + - 5.95 + - 5.9 + - 8.5 + - 8.5 + - 9.08 + - 7.42 + - 7.23 + - 9.24 + - 9.13 + - 9.45 + - 9.49 + - 8.99 + - 9.77 + - 10.68 + - 10.53 + - 10.01 + - 9.12 + - 8.94 + - 8.34 + - 6.93 + - 5.59 + - 4.03 + - 2.02 + - 0.85 + - 2.06 + - 6.74 + - 5.92 + - 6.36 + - 8.65 + - 9.36 + - 10.55 + - 9.48 + - 10.03 + - 10.4 + - 10.74 + - 10.74 + - 9.46 + - 8.48 + - 9.59 + - 10.43 + - 11.09 + - 10.04 + - 9.9 + - 10.56 + - 10.78 + - 10.96 + - 10.58 + - 10.21 + - 11.73 + - 11.65 + - 13.45 + - 14.93 + - 17.07 + - 16.49 + - 18.31 + - 18.53 + - 19.67 + - 19.82 + - 19.82 + - 19.46 + - 18.94 + - 17.98 + - 16.45 + - 15.62 + - 15.15 + - 13.99 + - 9.39 + - 5.5 + - 7.32 + - 8.24 + - 8.5 + - 8.3 + - 9.84 + - 10.17 + - 11.72 + - 13.43 + - 13.84 + - 12.39 + - 12.99 + - 12.61 + - 11.4 + - 11.22 + - 9.58 + - 9.83 + - 10.05 + - 9.5 + - 9.24 + - 9.6 + - 9.79 + - 9.27 + - 8.98 + - 7.69 + - 7.99 + - 7.76 + - 8.14 + - 7.34 + - 7.89 + - 8.65 + - 9.45 + - 10.14 + - 10.21 + - 9.61 + - 8.07 + - 11.32 + - 10.82 + - 13.72 + - 14.04 + - 12.97 + - 11.09 + - 8.79 + - 6.9 + - 4.79 + - 2.72 + - 1.71 + - 3.01 + - 6.26 + - 6.83 + - 8.28 + - 9.48 + - 9.53 + - 9.94 + - 9.7 + - 9.13 + - 11.81 + - 12.15 + - 12.75 + - 13.3 + - 13.73 + - 13.67 + - 13.19 + - 12.82 + - 14.01 + - 13.17 + - 13.04 + - 12.68 + - 12.59 + - 11.93 + - 11.63 + - 11.77 + - 12.44 + - 11.04 + - 10.82 + - 10.79 + - 10.61 + - 10.71 + - 10.4 + - 9.4 + - 9.44 + - 9.7 + - 7.73 + - 8.78 + - 8.49 + - 7.28 + - 7.02 + - 7.18 + - 6.8 + - 6.3 + - 5.63 + - 5.14 + - 4.88 + - 4.88 + - 5.09 + - 4.2 + - 4.52 + - 4.47 + - 3.89 + - 3.68 + - 3.54 + - 3.32 + - 3.61 + - 2.19 + - 1.89 + - 2.8 + - 2.83 + - 3.23 + - 3.53 + - 3.54 + - 3.4 + - 3.91 + - 2.92 + - 3.44 + - 4.12 + - 3.91 + - 3.32 + - 3.7 + - 5.3 + - 6.98 + - 8.06 + - 7.82 + - 7.94 + - 9.36 + - 10.84 + - 8.6 + - 7.7 + - 6.04 + - 5.06 + - 4.19 + - 7.25 + - 6.67 + - 6.65 + - 6.31 + - 5.64 + - 6.13 + - 6.69 + - 6.96 + - 7.15 + - 7.16 + - 7.62 + - 8.01 + - 7.34 + - 8.35 + - 7.57 + - 7.26 + - 6.55 + - 6.85 + - 6.2 + - 5.88 + - 5.87 + - 6.35 + - 7.18 + - 7.43 + - 7.12 + - 6.62 + - 6.51 + - 6.33 + - 5.88 + - 4.93 + - 4.59 + - 4.33 + - 4.51 + - 4.1 + - 2.79 + - 3.06 + - 1.79 + - 2.11 + - 3.1 + - 3.6 + - 4.06 + - 4.63 + - 5.66 + - 6.43 + - 6.8 + - 7.08 + - 6.98 + - 6.48 + - 7.56 + - 7.76 + - 7.81 + - 8.7 + - 9.57 + - 9.81 + - 9.71 + - 9.27 + - 8.86 + - 8.91 + - 9.4 + - 9.39 + - 8.66 + - 8.95 + - 9.3 + - 10.15 + - 9.96 + - 9.65 + - 10.77 + - 11.23 + - 11.45 + - 13.24 + - 13.42 + - 14.67 + - 14.73 + - 14.07 + - 13.94 + - 13.23 + - 10.93 + - 9.53 + - 9.69 + - 9.26 + - 8.99 + - 8.99 + - 8.77 + - 8.6 + - 7.16 + - 7.79 + - 7.18 + - 7.41 + - 8.6 + - 10.31 + - 11.24 + - 9.71 + - 12.23 + - 11.57 + - 12.73 + - 13.1 + - 12.11 + - 11.98 + - 10.57 + - 10.82 + - 9.87 + - 10.64 + - 10.26 + - 10.32 + - 10.85 + - 10.41 + - 10.33 + - 9.84 + - 9.82 + - 8.98 + - 9.1 + - 7.73 + - 8.99 + - 7.81 + - 9.24 + - 12.48 + - 13.74 + - 13.79 + - 13.29 + - 12.75 + - 15.23 + - 14.14 + - 13.07 + - 13.35 + - 11.95 + - 11.98 + - 10.98 + - 11.49 + - 11.46 + - 11.57 + - 11.46 + - 11.52 + - 9.62 + - 9.95 + - 10.44 + - 10.6 + - 9.68 + - 7.99 + - 8.23 + - 8.7 + - 8.43 + - 9.49 + - 8.66 + - 9.1 + - 8.93 + - 8.96 + - 7.35 + - 6.93 + - 6.81 + - 5.74 + - 5.77 + - 6.05 + - 6.96 + - 7.59 + - 6.86 + - 7.62 + - 8.23 + - 8.32 + - 8.98 + - 10.02 + - 10.23 + - 9.95 + - 9.14 + - 9.13 + - 8.68 + - 8.23 + - 8.45 + - 8.14 + - 7.16 + - 8.0 + - 8.02 + - 8.75 + - 8.45 + - 7.46 + - 7.42 + - 7.55 + - 7.21 + - 5.39 + - 3.67 + - 2.82 + - 1.91 + - 0.78 + - 3.13 + - 4.97 + - 7.07 + - 7.73 + - 7.47 + - 7.59 + - 7.71 + - 10.0 + - 10.07 + - 11.03 + - 11.51 + - 11.48 + - 12.38 + - 10.82 + - 10.03 + - 9.08 + - 7.52 + - 6.73 + - 5.83 + - 5.0 + - 3.54 + - 3.54 + - 3.22 + - 4.69 + - 4.92 + - 5.57 + - 4.27 + - 4.4 + - 4.93 + - 4.61 + - 3.94 + - 3.79 + - 3.67 + - 5.46 + - 6.45 + - 7.85 + - 8.46 + - 7.85 + - 8.94 + - 8.63 + - 8.9 + - 9.12 + - 8.98 + - 9.62 + - 10.06 + - 9.59 + - 9.77 + - 9.81 + - 8.19 + - 7.55 + - 7.94 + - 8.52 + - 8.44 + - 7.99 + - 8.1 + - 7.36 + - 7.32 + - 6.44 + - 6.85 + - 6.5 + - 5.82 + - 4.43 + - 4.02 + - 3.85 + - 4.0 + - 4.53 + - 5.37 + - 5.71 + - 6.09 + - 6.22 + - 6.96 + - 7.3 + - 6.78 + - 7.48 + - 8.8 + - 9.71 + - 9.62 + - 9.68 + - 8.86 + - 7.1 + - 8.85 + - 9.02 + - 8.86 + - 8.48 + - 7.53 + - 7.57 + - 7.82 + - 7.32 + - 7.17 + - 7.8 + - 8.94 + - 9.14 + - 8.85 + - 8.54 + - 8.28 + - 7.86 + - 7.0 + - 5.63 + - 4.3 + - 3.82 + - 3.16 + - 3.13 + - 2.38 + - 1.86 + - 1.53 + - 1.58 + - 3.16 + - 4.31 + - 6.02 + - 7.22 + - 8.31 + - 8.17 + - 8.65 + - 9.35 + - 9.62 + - 10.47 + - 11.11 + - 10.42 + - 10.53 + - 10.44 + - 11.61 + - 11.72 + - 11.68 + - 11.59 + - 11.56 + - 11.41 + - 11.45 + - 11.29 + - 11.49 + - 11.18 + - 10.74 + - 10.74 + - 10.7 + - 10.52 + - 10.02 + - 9.17 + - 8.56 + - 8.46 + - 8.0 + - 7.96 + - 7.96 + - 7.62 + - 7.78 + - 7.66 + - 7.66 + - 7.39 + - 7.34 + - 7.31 + - 6.85 + - 7.44 + - 5.12 + - 5.35 + - 6.02 + - 7.52 + - 7.75 + - 7.48 + - 7.29 + - 6.98 + - 6.62 + - 5.98 + - 6.14 + - 5.85 + - 5.0 + - 4.55 + - 4.21 + - 4.34 + - 4.97 + - 5.44 + - 5.06 + - 4.65 + - 4.55 + - 4.88 + - 5.13 + - 4.97 + - 4.14 + - 3.9 + - 3.81 + - 3.31 + - 3.2 + - 3.0 + - 2.38 + - 2.69 + - 3.16 + - 3.04 + - 1.86 + - 1.58 + - 4.32 + - 1.71 + - 3.34 + - 4.72 + - 3.8 + - 4.6 + - 4.69 + - 4.05 + - 3.73 + - 3.5 + - 3.61 + - 3.96 + - 3.45 + - 4.61 + - 5.1 + - 4.53 + - 4.48 + - 4.36 + - 4.16 + - 3.85 + - 3.77 + - 4.52 + - 5.55 + - 6.11 + - 5.92 + - 4.8 + - 4.65 + - 4.24 + - 3.75 + - 2.69 + - 1.61 + - 1.7 + - 2.42 + - 4.08 + - 3.42 + - 2.95 + - 3.05 + - 2.15 + - 2.02 + - 4.68 + - 4.11 + - 3.68 + - 2.33 + - 2.28 + - 4.82 + - 5.8 + - 6.02 + - 6.01 + - 5.22 + - 4.44 + - 3.26 + - 2.82 + - 4.53 + - 3.94 + - 3.72 + - 3.83 + - 4.47 + - 5.39 + - 5.94 + - 6.87 + - 4.16 + - 3.76 + - 5.6 + - 6.72 + - 7.54 + - 7.92 + - 8.34 + - 8.24 + - 7.85 + - 7.49 + - 8.36 + - 8.77 + - 9.71 + - 10.39 + - 10.31 + - 10.22 + - 9.84 + - 9.93 + - 9.84 + - 9.7 + - 9.35 + - 9.06 + - 8.66 + - 7.77 + - 7.35 + - 7.33 + - 7.16 + - 7.3 + - 7.59 + - 7.76 + - 7.98 + - 8.07 + - 7.75 + - 7.46 + - 7.23 + - 6.71 + - 7.06 + - 7.28 + - 6.8 + - 6.45 + - 5.76 + - 5.55 + - 5.48 + - 5.73 + - 5.97 + - 6.22 + - 5.91 + - 5.55 + - 5.22 + - 4.65 + - 4.32 + - 4.0 + - 3.96 + - 4.16 + - 4.13 + - 4.0 + - 3.91 + - 4.0 + - 4.7 + - 5.51 + - 6.05 + - 6.21 + - 5.7 + - 4.94 + - 4.24 + - 3.26 + - 2.92 + - 2.92 + - 2.92 + - 3.19 + - 3.34 + - 2.88 + - 3.01 + - 2.38 + - 2.39 + - 2.98 + - 3.02 + - 4.32 + - 5.14 + - 3.91 + - 3.11 + - 5.01 + - 6.26 + - 7.52 + - 7.74 + - 7.48 + - 8.2 + - 8.41 + - 8.78 + - 9.12 + - 9.32 + - 9.68 + - 9.82 + - 9.84 + - 9.72 + - 8.61 + - 8.57 + - 9.54 + - 9.65 + - 9.88 + - 12.0 + - 11.14 + - 10.41 + - 10.46 + - 13.6 + - 13.51 + - 13.18 + - 12.39 + - 11.33 + - 12.49 + - 12.79 + - 13.49 + - 12.22 + - 9.39 + - 9.27 + - 10.07 + - 9.58 + - 8.65 + - 8.4 + - 8.71 + - 8.7 + - 8.44 + - 7.58 + - 8.07 + - 8.29 + - 8.4 + - 8.23 + - 7.68 + - 8.19 + - 8.28 + - 6.85 + - 6.3 + - 6.1 + - 6.35 + - 6.8 + - 5.87 + - 6.91 + - 7.68 + - 8.77 + - 9.6 + - 10.54 + - 11.32 + - 11.76 + - 10.89 + - 10.4 + - 10.82 + - 10.1 + - 11.78 + - 12.54 + - 12.53 + - 12.13 + - 10.67 + - 9.6 + - 7.86 + - 7.36 + - 7.51 + - 7.73 + - 7.0 + - 6.57 + - 5.42 + - 5.98 + - 4.52 + - 3.9 + - 4.98 + - 5.47 + - 5.98 + - 6.67 + - 5.86 + - 6.23 + - 8.68 + - 10.36 + - 9.22 + - 9.04 + - 9.35 + - 10.21 + - 9.39 + - 9.32 + - 7.88 + - 8.34 + - 8.63 + - 9.39 + - 9.46 + - 9.32 + - 8.85 + - 8.61 + - 9.0 + - 9.34 + - 9.3 + - 8.3 + - 7.69 + - 7.2 + - 7.34 + - 4.57 + - 4.74 + - 4.1 + - 3.92 + - 3.47 + - 4.32 + - 4.18 + - 5.0 + - 5.57 + - 5.55 + - 5.19 + - 5.29 + - 5.27 + - 5.23 + - 6.11 + - 6.11 + - 5.78 + - 5.82 + - 5.82 + - 6.18 + - 6.67 + - 6.98 + - 6.95 + - 6.37 + - 7.16 + - 7.68 + - 7.73 + - 6.99 + - 5.97 + - 5.68 + - 5.6 + - 6.04 + - 6.43 + - 5.91 + - 5.2 + - 5.2 + - 5.08 + - 5.38 + - 5.28 + - 5.5 + - 5.06 + - 4.72 + - 3.85 + - 3.69 + - 4.19 + - 4.89 + - 4.87 + - 3.85 + - 2.77 + - 3.31 + - 4.29 + - 3.94 + - 4.03 + - 3.3 + - 2.79 + - 2.78 + - 3.36 + - 2.69 + - 2.2 + - 3.84 + - 5.59 + - 5.73 + - 4.65 + - 4.72 + - 4.33 + - 4.6 + - 5.02 + - 5.66 + - 6.52 + - 7.15 + - 7.65 + - 6.75 + - 5.33 + - 5.3 + - 6.13 + - 6.5 + - 6.62 + - 6.54 + - 7.0 + - 7.05 + - 6.95 + - 6.17 + - 6.58 + - 7.24 + - 6.74 + - 6.38 + - 6.44 + - 6.73 + - 6.56 + - 6.78 + - 7.29 + - 7.71 + - 7.85 + - 8.22 + - 7.97 + - 8.1 + - 6.22 + - 6.8 + - 7.96 + - 8.37 + - 8.59 + - 8.94 + - 8.94 + - 8.77 + - 8.42 + - 7.61 + - 7.41 + - 8.16 + - 8.06 + - 8.2 + - 8.41 + - 8.64 + - 8.29 + - 7.4 + - 6.12 + - 4.88 + - 4.8 + - 6.94 + - 7.7 + - 7.0 + - 6.29 + - 7.52 + - 7.96 + - 8.24 + - 7.92 + - 8.32 + - 8.77 + - 9.13 + - 8.72 + - 7.99 + - 7.78 + - 8.16 + - 8.65 + - 8.85 + - 8.44 + - 7.98 + - 7.65 + - 7.72 + - 8.64 + - 9.36 + - 9.59 + - 9.75 + - 9.29 + - 8.35 + - 8.54 + - 8.83 + - 9.44 + - 9.26 + - 10.15 + - 10.14 + - 9.96 + - 9.74 + - 9.6 + - 9.44 + - 9.54 + - 9.83 + - 9.67 + - 9.48 + - 9.01 + - 8.68 + - 7.93 + - 7.6 + - 7.71 + - 7.8 + - 7.71 + - 7.51 + - 7.4 + - 7.91 + - 5.22 + - 5.67 + - 6.95 + - 7.62 + - 7.22 + - 6.9 + - 6.5 + - 6.31 + - 6.21 + - 6.04 + - 6.61 + - 7.3 + - 7.09 + - 7.15 + - 7.6 + - 7.6 + - 7.97 + - 8.66 + - 9.0 + - 9.05 + - 9.15 + - 9.11 + - 9.84 + - 10.02 + - 7.75 + - 8.29 + - 8.41 + - 8.44 + - 9.18 + - 9.83 + - 9.68 + - 6.94 + - 5.61 + - 4.6 + - 7.52 + - 6.98 + - 3.89 + - 2.1 + - 7.02 + - 8.79 + - 6.26 + - 6.55 + - 6.58 + - 6.36 + - 6.45 + - 6.28 + - 6.49 + - 6.35 + - 6.54 + - 6.41 + - 6.08 + - 6.01 + - 6.79 + - 6.88 + - 7.53 + - 6.43 + - 6.3 + - 6.96 + - 5.95 + - 5.12 + - 5.12 + - 4.84 + - 3.71 + - 4.08 + - 5.79 + - 6.66 + - 5.98 + - 6.44 + - 7.16 + - 7.02 + - 7.51 + - 6.4 + - 5.09 + - 4.68 + - 4.73 + - 5.5 + - 4.71 + - 4.52 + - 5.9 + - 5.87 + - 7.28 + - 8.16 + - 8.63 + - 8.78 + - 9.18 + - 9.27 + - 9.85 + - 10.34 + - 10.97 + - 11.97 + - 12.21 + - 11.33 + - 10.2 + - 10.43 + - 10.74 + - 12.88 + - 12.04 + - 12.98 + - 12.98 + - 13.07 + - 12.94 + - 13.81 + - 13.62 + - 13.7 + - 14.04 + - 14.23 + - 13.15 + - 12.9 + - 12.9 + - 12.9 + - 12.85 + - 12.69 + - 11.25 + - 11.35 + - 10.99 + - 10.82 + - 10.35 + - 10.04 + - 10.32 + - 11.82 + - 11.84 + - 11.78 + - 11.63 + - 12.08 + - 11.2 + - 11.29 + - 10.97 + - 10.44 + - 10.28 + - 9.94 + - 9.21 + - 8.95 + - 8.68 + - 9.27 + - 9.62 + - 9.93 + - 9.55 + - 9.9 + - 10.0 + - 9.93 + - 9.75 + - 9.42 + - 9.84 + - 10.69 + - 10.34 + - 10.36 + - 10.53 + - 10.38 + - 8.67 + - 8.92 + - 8.76 + - 8.45 + - 7.56 + - 6.57 + - 5.5 + - 4.74 + - 4.16 + - 3.36 + - 2.89 + - 2.9 + - 3.48 + - 3.3 + - 2.72 + - 1.8 + - 1.28 + - 0.42 + - 1.64 + - 2.33 + - 3.58 + - 4.61 + - 4.89 + - 5.25 + - 4.83 + - 4.49 + - 3.69 + - 2.97 + - 4.69 + - 5.81 + - 5.35 + - 5.08 + - 5.41 + - 5.65 + - 5.09 + - 3.94 + - 3.42 + - 3.03 + - 3.68 + - 4.79 + - 5.71 + - 6.26 + - 5.7 + - 6.51 + - 9.26 + - 9.54 + - 9.37 + - 9.94 + - 9.38 + - 9.77 + - 9.96 + - 10.58 + - 10.96 + - 11.09 + - 10.7 + - 10.2 + - 10.12 + - 9.94 + - 9.81 + - 9.7 + - 9.13 + - 8.77 + - 8.5 + - 7.98 + - 7.84 + - 7.56 + - 8.54 + - 8.72 + - 8.41 + - 7.77 + - 7.25 + - 6.67 + - 5.99 + - 6.43 + - 6.6 + - 5.94 + - 5.28 + - 4.79 + - 4.42 + - 4.6 + - 5.33 + - 6.04 + - 6.74 + - 7.24 + - 7.71 + - 8.17 + - 8.49 + - 9.02 + - 9.15 + - 9.58 + - 9.15 + - 8.01 + - 8.41 + - 9.38 + - 9.6 + - 9.7 + - 9.65 + - 9.43 + - 8.74 + - 8.77 + - 8.17 + - 7.31 + - 7.06 + - 7.96 + - 8.36 + - 9.77 + - 10.2 + - 10.36 + - 10.47 + - 10.25 + - 10.04 + - 9.98 + - 9.37 + - 8.61 + - 7.96 + - 8.04 + - 7.54 + - 8.07 + - 8.7 + - 8.5 + - 7.28 + - 7.98 + - 8.49 + - 9.21 + - 10.56 + - 9.81 + - 9.04 + - 8.16 + - 7.98 + - 7.94 + - 8.35 + - 8.61 + - 8.08 + - 7.99 + - 7.86 + - 7.68 + - 7.53 + - 6.98 + - 7.29 + - 8.28 + - 7.71 + - 7.23 + - 6.73 + - 6.67 + - 5.98 + - 6.0 + - 5.94 + - 5.66 + - 5.41 + - 5.16 + - 5.02 + - 4.66 + - 4.41 + - 4.3 + - 4.39 + - 4.24 + - 2.85 + - 2.72 + - 2.35 + - 2.06 + - 1.62 + - 1.2 + - 0.5 + - 0.89 + - 1.97 + - 2.75 + - 3.35 + - 3.64 + - 3.59 + - 3.54 + - 4.05 + - 5.02 + - 6.0 + - 7.0 + - 7.38 + - 7.81 + - 9.2 + - 8.29 + - 8.04 + - 8.2 + - 9.65 + - 10.67 + - 10.73 + - 11.47 + - 12.25 + - 13.05 + - 11.91 + - 11.59 + - 12.73 + - 12.68 + - 13.34 + - 13.54 + - 14.52 + - 14.5 + - 14.17 + - 13.94 + - 13.32 + - 12.85 + - 12.54 + - 12.75 + - 12.79 + - 13.1 + - 12.82 + - 12.73 + - 11.85 + - 11.33 + - 11.25 + - 11.33 + - 10.85 + - 10.85 + - 10.28 + - 9.36 + - 11.26 + - 10.63 + - 10.55 + - 10.65 + - 10.21 + - 10.6 + - 10.73 + - 11.03 + - 10.58 + - 10.51 + - 11.19 + - 10.72 + - 10.23 + - 10.18 + - 10.23 + - 10.16 + - 9.59 + - 9.64 + - 9.42 + - 9.05 + - 8.58 + - 8.15 + - 8.81 + - 9.21 + - 9.63 + - 10.04 + - 10.18 + - 10.54 + - 10.23 + - 10.07 + - 9.62 + - 9.43 + - 9.24 + - 8.88 + - 8.63 + - 9.14 + - 9.13 + - 9.38 + - 9.68 + - 9.85 + - 9.42 + - 9.44 + - 9.33 + - 9.26 + - 9.26 + - 8.84 + - 8.7 + - 7.0 + - 8.42 + - 9.83 + - 9.14 + - 8.61 + - 9.2 + - 10.31 + - 9.85 + - 9.55 + - 9.54 + - 9.0 + - 8.96 + - 9.82 + - 10.18 + - 10.54 + - 10.57 + - 10.75 + - 10.7 + - 10.29 + - 10.06 + - 9.79 + - 9.57 + - 9.27 + - 9.69 + - 8.88 + - 8.66 + - 7.51 + - 6.08 + - 7.7 + - 9.42 + - 9.74 + - 10.32 + - 10.16 + - 10.9 + - 11.46 + - 11.6 + - 11.05 + - 10.86 + - 10.86 + - 10.95 + - 10.82 + - 10.17 + - 10.13 + - 9.77 + - 9.69 + - 9.76 + - 9.62 + - 8.44 + - 8.49 + - 8.98 + - 9.05 + - 9.07 + - 8.89 + - 8.68 + - 8.22 + - 7.06 + - 6.43 + - 6.04 + - 4.37 + - 3.48 + - 2.69 + - 3.25 + - 3.92 + - 4.02 + - 4.1 + - 2.82 + - 2.3 + - 2.0 + - 1.7 + - 1.9 + - 1.26 + - 0.81 + - 1.08 + - 1.58 + - 1.93 + - 2.24 + - 2.41 + - 3.44 + - 4.21 + - 4.65 + - 4.56 + - 3.81 + - 4.19 + - 4.85 + - 5.5 + - 6.35 + - 6.64 + - 6.56 + - 6.13 + - 7.0 + - 6.7 + - 6.6 + - 6.61 + - 6.66 + - 6.55 + - 7.4 + - 5.22 + - 4.65 + - 4.77 + - 4.7 + - 4.74 + - 5.32 + - 4.49 + - 3.86 + - 3.01 + - 2.88 + - 3.57 + - 4.78 + - 4.83 + - 4.1 + - 3.78 + - 3.86 + - 3.74 + - 3.62 + - 2.5 + - 1.92 + - 1.71 + - 1.28 + - 1.3 + - 2.02 + - 1.79 + - 1.86 + - 2.38 + - 3.1 + - 3.57 + - 1.55 + - 0.36 + - 2.83 + - 6.16 + - 5.89 + - 4.06 + - 3.41 + - 4.2 + - 5.03 + - 5.95 + - 5.05 + - 5.05 + - 3.69 + - 3.6 + - 2.91 + - 2.94 + - 3.48 + - 5.37 + - 4.65 + - 2.73 + - 2.8 + - 2.94 + - 3.26 + - 3.92 + - 4.54 + - 4.71 + - 6.22 + - 5.5 + - 4.49 + - 1.71 + - 2.92 + - 2.9 + - 2.14 + - 1.55 + - 3.04 + - 2.33 + - 0.85 + - 1.1 + - 0.92 + - 2.12 + - 2.78 + - 2.31 + - 1.21 + - 0.92 + - 1.66 + - 1.3 + - 1.82 + - 3.49 + - 5.23 + - 5.24 + - 6.93 + - 6.8 + - 6.14 + - 6.46 + - 7.28 + - 7.89 + - 8.49 + - 8.62 + - 8.24 + - 8.24 + - 8.06 + - 8.64 + - 8.9 + - 9.08 + - 9.32 + - 10.39 + - 10.43 + - 10.23 + - 9.99 + - 11.01 + - 11.56 + - 12.67 + - 12.88 + - 14.0 + - 13.44 + - 13.43 + - 13.3 + - 14.76 + - 13.57 + - 12.97 + - 14.25 + - 14.68 + - 14.62 + - 15.04 + - 14.84 + - 14.5 + - 14.12 + - 14.29 + - 14.57 + - 14.07 + - 14.71 + - 13.74 + - 13.3 + - 12.38 + - 12.04 + - 11.69 + - 11.1 + - 10.42 + - 10.36 + - 10.3 + - 10.35 + - 10.04 + - 9.76 + - 9.83 + - 7.96 + - 7.78 + - 7.74 + - 7.38 + - 6.53 + - 7.02 + - 7.74 + - 7.63 + - 7.32 + - 6.57 + - 5.95 + - 4.88 + - 3.97 + - 3.64 + - 3.69 + - 4.25 + - 4.43 + - 4.44 + - 4.44 + - 4.69 + - 4.63 + - 4.16 + - 3.44 + - 3.58 + - 4.08 + - 4.22 + - 3.64 + - 2.27 + - 1.75 + - 1.8 + - 1.99 + - 2.04 + - 2.4 + - 2.71 + - 2.9 + - 2.02 + - 2.06 + - 2.25 + - 2.56 + - 2.98 + - 3.6 + - 4.53 + - 5.04 + - 4.88 + - 4.41 + - 4.21 + - 5.39 + - 6.66 + - 7.17 + - 5.73 + - 4.24 + - 3.2 + - 4.75 + - 5.51 + - 5.82 + - 6.0 + - 5.87 + - 5.64 + - 5.86 + - 3.98 + - 4.12 + - 4.14 + - 4.49 + - 6.31 + - 6.38 + - 7.5 + - 8.0 + - 7.7 + - 7.26 + - 5.81 + - 5.52 + - 5.59 + - 5.17 + - 4.74 + - 4.99 + - 5.32 + - 6.43 + - 6.3 + - 6.08 + - 6.36 + - 7.21 + - 8.1 + - 7.24 + - 5.6 + - 6.26 + - 6.58 + - 7.18 + - 7.28 + - 6.84 + - 6.81 + - 6.64 + - 6.31 + - 6.1 + - 5.36 + - 6.24 + - 7.52 + - 8.23 + - 9.38 + - 5.84 + - 7.29 + - 7.68 + - 6.79 + - 6.9 + - 6.23 + - 5.6 + - 5.89 + - 5.9 + - 5.67 + - 5.81 + - 5.89 + - 6.2 + - 6.4 + - 4.12 + - 2.5 + - 3.31 + - 4.6 + - 5.41 + - 5.36 + - 4.39 + - 3.27 + - 1.94 + - 3.0 + - 5.1 + - 6.2 + - 5.92 + - 7.35 + - 7.96 + - 7.83 + - 8.57 + - 8.11 + - 9.88 + - 9.85 + - 11.65 + - 12.63 + - 13.04 + - 12.53 + - 13.44 + - 12.59 + - 12.47 + - 10.75 + - 10.22 + - 9.28 + - 8.82 + - 9.94 + - 9.97 + - 9.0 + - 8.54 + - 8.14 + - 6.19 + - 6.0 + - 6.24 + - 6.54 + - 5.87 + - 4.85 + - 4.31 + - 3.05 + - 4.46 + - 4.68 + - 5.09 + - 5.02 + - 4.61 + - 5.8 + - 6.52 + - 6.54 + - 7.57 + - 7.22 + - 7.11 + - 7.72 + - 7.28 + - 7.98 + - 9.15 + - 10.18 + - 9.77 + - 10.4 + - 10.26 + - 10.18 + - 10.15 + - 8.42 + - 9.67 + - 9.63 + - 9.21 + - 9.0 + - 9.04 + - 9.16 + - 8.61 + - 8.93 + - 9.58 + - 9.78 + - 10.12 + - 10.55 + - 10.4 + - 10.39 + - 10.26 + - 10.47 + - 10.34 + - 10.49 + - 9.14 + - 9.0 + - 8.63 + - 8.7 + - 8.7 + - 9.35 + - 10.54 + - 10.97 + - 10.77 + - 10.26 + - 10.26 + - 10.56 + - 8.8 + - 9.07 + - 8.8 + - 8.44 + - 8.64 + - 7.58 + - 7.45 + - 6.79 + - 6.74 + - 6.67 + - 6.97 + - 6.94 + - 6.72 + - 6.65 + - 6.44 + - 5.94 + - 5.1 + - 4.47 + - 4.0 + - 3.94 + - 4.05 + - 4.04 + - 4.0 + - 4.23 + - 4.24 + - 4.56 + - 4.98 + - 5.32 + - 5.04 + - 4.9 + - 4.83 + - 5.19 + - 5.77 + - 6.48 + - 6.75 + - 6.66 + - 5.8 + - 5.2 + - 4.93 + - 4.9 + - 4.61 + - 4.66 + - 5.88 + - 4.77 + - 5.19 + - 7.02 + - 7.73 + - 7.72 + - 7.11 + - 7.59 + - 7.72 + - 7.85 + - 8.93 + - 8.7 + - 8.57 + - 8.72 + - 8.95 + - 9.14 + - 8.77 + - 8.13 + - 7.11 + - 7.3 + - 7.52 + - 7.16 + - 6.41 + - 6.72 + - 5.61 + - 5.81 + - 6.73 + - 7.64 + - 8.76 + - 9.13 + - 8.88 + - 8.99 + - 9.02 + - 8.98 + - 9.96 + - 11.09 + - 10.47 + - 11.59 + - 9.84 + - 9.98 + - 10.2 + - 9.78 + - 8.14 + - 7.32 + - 6.4 + - 4.83 + - 4.13 + - 3.98 + - 2.73 + - 2.81 + - 2.55 + - 2.66 + - 2.87 + - 3.42 + - 3.65 + - 4.01 + - 3.3 + - 2.69 + - 2.24 + - 5.26 + - 7.19 + - 6.13 + - 6.04 + - 6.24 + - 6.72 + - 7.0 + - 6.92 + - 7.6 + - 8.14 + - 8.96 + - 9.17 + - 9.84 + - 9.49 + - 10.05 + - 10.2 + - 10.73 + - 10.44 + - 10.82 + - 10.24 + - 10.67 + - 11.05 + - 11.83 + - 12.38 + - 12.0 + - 12.08 + - 12.57 + - 12.45 + - 12.32 + - 12.46 + - 12.36 + - 11.35 + - 11.19 + - 10.89 + - 10.32 + - 9.69 + - 9.99 + - 8.57 + - 7.28 + - 6.79 + - 6.51 + - 6.44 + - 6.51 + - 5.88 + - 6.95 + - 7.02 + - 6.53 + - 7.25 + - 7.67 + - 7.68 + - 7.32 + - 7.83 + - 7.47 + - 7.28 + - 6.91 + - 7.32 + - 6.81 + - 6.3 + - 6.09 + - 6.16 + - 6.88 + - 5.39 + - 4.94 + - 4.41 + - 3.55 + - 2.86 + - 2.6 + - 3.11 + - 2.78 + - 3.04 + - 4.3 + - 6.18 + - 7.46 + - 5.79 + - 5.36 + - 5.42 + - 4.08 + - 1.7 + - 0.71 + - 1.77 + - 2.67 + - 2.83 + - 3.75 + - 4.83 + - 4.98 + - 3.61 + - 4.73 + - 5.26 + - 5.77 + - 5.73 + - 6.1 + - 6.21 + - 6.52 + - 6.54 + - 6.51 + - 6.96 + - 7.07 + - 6.8 + - 6.89 + - 7.07 + - 7.07 + - 7.41 + - 7.19 + - 6.55 + - 6.35 + - 6.34 + - 6.53 + - 6.11 + - 6.18 + - 6.33 + - 5.63 + - 5.15 + - 4.68 + - 4.39 + - 4.32 + - 3.22 + - 3.04 + - 2.5 + - 3.5 + - 4.46 + - 5.16 + - 4.9 + - 4.62 + - 4.43 + - 2.83 + - 2.5 + - 2.83 + - 2.75 + - 3.3 + - 3.18 + - 2.94 + - 3.16 + - 3.2 + - 2.22 + - 2.24 + - 2.65 + - 2.94 + - 3.47 + - 3.98 + - 2.76 + - 2.78 + - 5.0 + - 5.97 + - 5.73 + - 5.63 + - 5.37 + - 5.08 + - 6.05 + - 5.91 + - 5.59 + - 5.74 + - 6.06 + - 6.51 + - 6.99 + - 7.43 + - 7.23 + - 6.91 + - 5.82 + - 5.71 + - 5.71 + - 5.72 + - 5.81 + - 5.9 + - 5.62 + - 5.79 + - 5.84 + - 5.6 + - 5.2 + - 4.91 + - 4.33 + - 3.79 + - 4.08 + - 4.12 + - 3.98 + - 3.81 + - 3.7 + - 3.83 + - 3.73 + - 3.64 + - 2.97 + - 1.84 + - 1.03 + - 0.67 + - 0.92 + - 0.82 + - 0.89 + - 1.43 + - 1.77 + - 3.23 + - 4.43 + - 4.8 + - 4.63 + - 4.36 + - 4.43 + - 4.52 + - 5.05 + - 5.28 + - 5.38 + - 5.52 + - 4.8 + - 5.2 + - 5.75 + - 6.33 + - 6.71 + - 6.52 + - 4.8 + - 4.66 + - 4.8 + - 5.41 + - 5.8 + - 5.71 + - 5.77 + - 6.71 + - 6.49 + - 6.55 + - 6.27 + - 5.48 + - 4.82 + - 4.81 + - 4.55 + - 4.34 + - 4.11 + - 4.47 + - 4.36 + - 2.5 + - 1.7 + - 1.12 + - 0.81 + - 1.21 + - 1.82 + - 1.96 + - 2.56 + - 2.47 + - 2.79 + - 3.42 + - 3.67 + - 3.49 + - 3.19 + - 2.44 + - 1.61 + - 1.13 + - 4.96 + - 8.34 + - 8.21 + - 7.78 + - 7.47 + - 7.44 + - 7.38 + - 8.04 + - 8.32 + - 8.37 + - 8.13 + - 8.45 + - 6.73 + - 6.4 + - 6.6 + - 7.31 + - 7.62 + - 8.04 + - 7.61 + - 8.02 + - 8.31 + - 8.3 + - 8.52 + - 9.11 + - 9.34 + - 8.93 + - 8.74 + - 8.8 + - 9.14 + - 9.4 + - 9.95 + - 10.32 + - 10.34 + - 10.34 + - 10.19 + - 9.14 + - 8.69 + - 8.46 + - 8.45 + - 8.7 + - 8.75 + - 8.68 + - 8.6 + - 8.56 + - 8.78 + - 9.02 + - 8.97 + - 8.88 + - 8.83 + - 8.75 + - 8.54 + - 8.12 + - 7.86 + - 7.75 + - 8.05 + - 8.0 + - 8.08 + - 8.34 + - 8.57 + - 9.53 + - 6.9 + - 6.3 + - 6.4 + - 6.63 + - 6.56 + - 6.1 + - 5.53 + - 5.2 + - 4.95 + - 4.11 + - 4.05 + - 4.53 + - 5.35 + - 6.94 + - 7.84 + - 8.01 + - 7.87 + - 7.85 + - 7.61 + - 7.18 + - 7.14 + - 6.86 + - 6.31 + - 6.16 + - 4.44 + - 4.0 + - 4.42 + - 5.3 + - 5.72 + - 5.74 + - 6.04 + - 5.91 + - 5.41 + - 5.3 + - 5.61 + - 5.72 + - 5.6 + - 5.25 + - 3.07 + - 2.4 + - 2.4 + - 2.8 + - 2.5 + - 5.1 + - 5.3 + - 4.89 + - 4.16 + - 3.62 + - 2.92 + - 1.39 + - 1.73 + - 2.5 + - 3.2 + - 3.49 + - 3.38 + - 4.59 + - 4.92 + - 5.36 + - 7.4 + - 8.45 + - 8.0 + - 7.31 + - 7.52 + - 7.65 + - 6.76 + - 5.9 + - 5.05 + - 4.24 + - 3.2 + - 2.52 + - 3.49 + - 4.92 + - 4.97 + - 3.47 + - 3.62 + - 4.27 + - 4.62 + - 4.42 + - 2.61 + - 2.05 + - 4.37 + - 5.14 + - 5.39 + - 5.08 + - 4.21 + - 4.11 + - 4.34 + - 4.74 + - 4.75 + - 4.85 + - 3.96 + - 3.75 + - 4.14 + - 4.78 + - 4.32 + - 3.83 + - 3.69 + - 3.12 + - 3.58 + - 4.0 + - 4.52 + - 4.84 + - 4.7 + - 5.37 + - 5.6 + - 4.94 + - 5.64 + - 5.3 + - 4.66 + - 6.14 + - 5.77 + - 3.01 + - 4.66 + - 4.47 + - 5.03 + - 4.67 + - 4.61 + - 3.93 + - 3.5 + - 2.55 + - 1.42 + - 0.41 + - 0.5 + - 1.08 + - 1.84 + - 2.27 + - 2.18 + - 1.28 + - 1.75 + - 3.69 + - 3.71 + - 3.89 + - 2.76 + - 3.5 + - 3.61 + - 4.1 + - 3.96 + - 3.61 + - 3.75 + - 2.82 + - 2.13 + - 2.16 + - 3.08 + - 2.61 + - 2.32 + - 2.25 + - 2.64 + - 2.73 + - 2.48 + - 0.36 + - 3.93 + - 2.01 + - 3.28 + - 4.41 + - 4.18 + - 5.46 + - 6.9 + - 5.55 + - 5.5 + - 6.28 + - 5.64 + - 5.3 + - 5.61 + - 5.64 + - 6.05 + - 5.3 + - 5.63 + - 6.69 + - 5.02 + - 4.96 + - 5.82 + - 6.45 + - 6.96 + - 7.88 + - 8.41 + - 7.92 + - 7.24 + - 6.8 + - 7.24 + - 8.03 + - 7.54 + - 6.96 + - 7.86 + - 7.84 + - 7.42 + - 7.55 + - 7.53 + - 7.41 + - 6.38 + - 5.28 + - 5.1 + - 4.92 + - 4.48 + - 4.25 + - 4.02 + - 3.72 + - 3.16 + - 1.91 + - 1.17 + - 1.22 + - 1.63 + - 2.82 + - 3.78 + - 4.72 + - 5.11 + - 6.8 + - 6.16 + - 6.47 + - 7.21 + - 7.56 + - 8.46 + - 7.84 + - 7.2 + - 6.08 + - 4.88 + - 5.56 + - 5.25 + - 4.88 + - 6.52 + - 8.09 + - 8.82 + - 8.29 + - 9.08 + - 10.62 + - 9.32 + - 9.24 + - 8.93 + - 7.81 + - 7.06 + - 6.26 + - 6.65 + - 6.83 + - 7.04 + - 6.8 + - 5.83 + - 6.22 + - 6.14 + - 6.26 + - 5.85 + - 5.16 + - 4.39 + - 4.74 + - 5.58 + - 5.8 + - 5.62 + - 5.33 + - 4.78 + - 5.13 + - 5.44 + - 4.67 + - 3.89 + - 4.3 + - 4.12 + - 3.85 + - 4.03 + - 3.73 + - 4.52 + - 4.32 + - 4.2 + - 3.89 + - 4.22 + - 4.88 + - 4.39 + - 4.3 + - 3.8 + - 4.97 + - 5.88 + - 6.44 + - 6.4 + - 7.07 + - 6.62 + - 6.89 + - 7.2 + - 7.42 + - 7.57 + - 7.67 + - 7.69 + - 6.71 + - 6.2 + - 6.53 + - 7.74 + - 7.69 + - 7.3 + - 7.38 + - 7.53 + - 6.89 + - 6.23 + - 6.1 + - 5.14 + - 5.15 + - 5.7 + - 5.48 + - 5.11 + - 5.64 + - 5.02 + - 5.7 + - 5.8 + - 5.28 + - 5.24 + - 4.96 + - 4.33 + - 3.86 + - 3.64 + - 3.98 + - 4.3 + - 4.11 + - 4.19 + - 3.68 + - 3.47 + - 3.11 + - 2.55 + - 1.58 + - 1.53 + - 1.65 + - 1.9 + - 2.47 + - 2.82 + - 2.79 + - 2.3 + - 1.8 + - 1.43 + - 1.79 + - 1.6 + - 1.87 + - 2.0 + - 2.48 + - 3.48 + - 5.94 + - 7.76 + - 8.32 + - 8.54 + - 8.68 + - 8.87 + - 9.48 + - 9.9 + - 11.54 + - 4.94 + - 5.12 + - 6.8 + - 6.71 + - 7.27 + - 8.06 + - 8.8 + - 9.8 + - 9.5 + - 9.84 + - 10.56 + - 10.81 + - 9.9 + - 10.02 + - 10.58 + - 11.23 + - 10.85 + - 10.48 + - 9.9 + - 9.43 + - 9.14 + - 9.08 + - 10.06 + - 10.69 + - 11.15 + - 11.76 + - 12.14 + - 12.13 + - 12.23 + - 12.04 + - 12.0 + - 12.21 + - 12.78 + - 12.69 + - 12.45 + - 11.36 + - 11.05 + - 9.48 + - 9.48 + - 9.44 + - 8.9 + - 8.68 + - 7.89 + - 7.28 + - 6.93 + - 6.68 + - 6.51 + - 6.2 + - 5.29 + - 5.25 + - 4.9 + - 3.88 + - 3.8 + - 4.59 + - 5.75 + - 6.52 + - 6.78 + - 6.86 + - 6.86 + - 7.21 + - 6.95 + - 6.64 + - 5.58 + - 5.11 + - 4.91 + - 4.78 + - 5.83 + - 5.75 + - 5.59 + - 5.78 + - 6.13 + - 4.57 + - 4.12 + - 4.1 + - 4.24 + - 4.8 + - 5.87 + - 6.31 + - 6.45 + - 7.96 + - 8.49 + - 7.89 + - 8.12 + - 7.78 + - 6.93 + - 6.8 + - 7.43 + - 8.34 + - 8.6 + - 8.17 + - 7.21 + - 7.09 + - 7.16 + - 7.28 + - 7.03 + - 6.62 + - 7.35 + - 6.79 + - 6.91 + - 7.11 + - 7.67 + - 8.28 + - 8.07 + - 8.52 + - 8.64 + - 8.19 + - 8.02 + - 7.66 + - 6.54 + - 5.95 + - 5.8 + - 5.11 + - 5.95 + - 6.09 + - 5.77 + - 7.51 + - 8.32 + - 6.83 + - 6.7 + - 7.45 + - 8.29 + - 8.5 + - 7.59 + - 8.4 + - 8.22 + - 8.0 + - 8.22 + - 7.76 + - 8.68 + - 8.02 + - 9.49 + - 9.96 + - 8.59 + - 10.02 + - 10.11 + - 9.74 + - 9.68 + - 9.75 + - 9.18 + - 9.11 + - 8.31 + - 8.86 + - 8.2 + - 9.75 + - 8.89 + - 10.38 + - 11.85 + - 11.57 + - 12.84 + - 13.17 + - 13.79 + - 15.6 + - 15.21 + - 15.83 + - 15.59 + - 15.36 + - 14.02 + - 12.77 + - 12.23 + - 11.81 + - 11.86 + - 10.85 + - 11.96 + - 11.66 + - 10.44 + - 9.99 + - 9.97 + - 9.65 + - 10.14 + - 10.42 + - 11.89 + - 12.66 + - 12.35 + - 12.54 + - 12.27 + - 12.84 + - 12.68 + - 13.68 + - 10.65 + - 8.89 + - 10.98 + - 10.03 + - 8.83 + - 8.08 + - 7.9 + - 7.96 + - 6.3 + - 7.07 + - 7.38 + - 9.8 + - 9.1 + - 9.64 + - 10.31 + - 10.58 + - 10.78 + - 11.28 + - 11.51 + - 12.32 + - 12.95 + - 11.06 + - 10.7 + - 8.64 + - 8.41 + - 8.43 + - 9.2 + - 7.93 + - 7.0 + - 6.51 + - 6.04 + - 5.39 + - 3.67 + - 3.04 + - 2.96 + - 4.3 + - 5.28 + - 6.44 + - 7.65 + - 5.86 + - 6.83 + - 8.62 + - 10.92 + - 10.5 + - 9.06 + - 6.88 + - 4.21 + - 4.5 + - 3.96 + - 5.8 + - 5.24 + - 6.3 + - 7.6 + - 8.2 + - 7.1 + - 7.13 + - 11.66 + - 12.98 + - 13.12 + - 12.32 + - 10.97 + - 10.46 + - 9.73 + - 10.0 + - 9.4 + - 9.7 + - 9.13 + - 8.49 + - 9.33 + - 10.2 + - 9.8 + - 9.6 + - 9.23 + - 8.01 + - 7.88 + - 7.02 + - 6.13 + - 6.16 + - 7.07 + - 7.41 + - 6.8 + - 6.49 + - 6.63 + - 6.3 + - 5.74 + - 5.59 + - 5.1 + - 5.3 + - 4.65 + - 5.15 + - 4.96 + - 4.83 + - 5.14 + - 5.02 + - 4.84 + - 4.46 + - 3.33 + - 2.44 + - 2.41 + - 2.97 + - 3.14 + - 2.96 + - 2.58 + - 2.56 + - 0.9 + - 2.45 + - 2.85 + - 3.29 + - 3.94 + - 4.0 + - 3.94 + - 2.72 + - 2.28 + - 2.06 + - 1.96 + - 0.86 + - 1.41 + - 2.01 + - 2.81 + - 3.26 + - 3.35 + - 3.47 + - 3.19 + - 4.06 + - 4.18 + - 3.81 + - 3.74 + - 4.19 + - 3.98 + - 4.47 + - 5.09 + - 5.67 + - 6.26 + - 6.16 + - 7.19 + - 6.8 + - 5.37 + - 5.61 + - 5.92 + - 6.36 + - 6.19 + - 6.28 + - 6.5 + - 6.69 + - 7.17 + - 7.18 + - 7.32 + - 8.03 + - 7.29 + - 6.56 + - 7.03 + - 4.94 + - 3.41 + - 4.67 + - 4.81 + - 4.57 + - 3.11 + - 3.11 + - 0.73 + - 6.13 + - 6.26 + - 3.64 + - 5.79 + - 6.55 + - 6.12 + - 5.91 + - 6.68 + - 6.94 + - 6.82 + - 6.11 + - 4.6 + - 5.41 + - 4.83 + - 4.92 + - 4.84 + - 4.72 + - 5.5 + - 5.16 + - 5.06 + - 6.25 + - 6.4 + - 6.51 + - 5.79 + - 4.97 + - 6.67 + - 9.08 + - 7.82 + - 9.12 + - 7.73 + - 8.6 + - 9.71 + - 9.46 + - 9.83 + - 9.3 + - 8.9 + - 7.58 + - 7.32 + - 6.26 + - 5.82 + - 5.5 + - 5.2 + - 4.79 + - 4.91 + - 5.0 + - 4.88 + - 5.26 + - 3.62 + - 4.52 + - 3.69 + - 4.52 + - 6.08 + - 7.41 + - 8.1 + - 8.66 + - 9.13 + - 9.5 + - 8.71 + - 7.96 + - 7.76 + - 7.22 + - 6.5 + - 6.95 + - 7.22 + - 7.0 + - 5.56 + - 7.2 + - 6.85 + - 6.72 + - 6.86 + - 6.3 + - 6.45 + - 6.31 + - 6.58 + - 6.77 + - 6.93 + - 7.63 + - 7.01 + - 6.57 + - 6.86 + - 7.0 + - 7.83 + - 7.62 + - 6.96 + - 5.82 + - 5.61 + - 6.04 + - 5.95 + - 5.92 + - 4.88 + - 6.33 + - 5.42 + - 5.15 + - 4.88 + - 4.48 + - 5.2 + - 5.1 + - 5.3 + - 5.64 + - 5.31 + - 5.06 + - 5.24 + - 5.78 + - 6.2 + - 5.63 + - 5.97 + - 4.97 + - 4.61 + - 3.8 + - 4.37 + - 5.79 + - 6.38 + - 6.88 + - 6.16 + - 8.22 + - 8.43 + - 8.9 + - 10.98 + - 10.57 + - 10.0 + - 9.5 + - 7.88 + - 7.16 + - 9.08 + - 10.51 + - 10.98 + - 11.77 + - 9.54 + - 9.63 + - 8.22 + - 4.75 + - 3.45 + - 3.23 + - 4.99 + - 5.46 + - 7.1 + - 8.74 + - 9.97 + - 10.51 + - 11.14 + - 11.18 + - 11.09 + - 12.57 + - 14.27 + - 15.0 + - 15.48 + - 15.68 + - 16.16 + - 16.45 + - 15.72 + - 15.84 + - 15.06 + - 15.01 + - 15.5 + - 14.21 + - 13.65 + - 12.66 + - 11.74 + - 10.79 + - 10.45 + - 10.45 + - 10.55 + - 10.26 + - 9.55 + - 10.13 + - 8.56 + - 7.99 + - 7.71 + - 7.58 + - 7.3 + - 8.45 + - 8.88 + - 10.38 + - 11.02 + - 10.98 + - 11.64 + - 11.08 + - 10.85 + - 10.59 + - 9.41 + - 9.5 + - 8.51 + - 8.85 + - 8.73 + - 9.1 + - 7.78 + - 7.5 + - 8.01 + - 7.4 + - 7.1 + - 7.03 + - 7.12 + - 8.37 + - 8.22 + - 8.3 + - 8.21 + - 8.0 + - 6.31 + - 7.33 + - 6.85 + - 7.91 + - 8.05 + - 7.62 + - 7.31 + - 6.36 + - 5.87 + - 5.92 + - 6.02 + - 6.06 + - 5.19 + - 4.99 + - 4.49 + - 3.79 + - 3.41 + - 4.32 + - 4.16 + - 4.42 + - 4.88 + - 4.74 + - 5.12 + - 5.42 + - 5.26 + - 5.94 + - 6.32 + - 6.23 + - 6.93 + - 6.8 + - 7.01 + - 7.02 + - 6.96 + - 7.04 + - 7.32 + - 7.45 + - 7.22 + - 7.45 + - 7.14 + - 6.5 + - 6.04 + - 6.74 + - 7.13 + - 5.82 + - 8.1 + - 8.47 + - 8.95 + - 9.55 + - 9.56 + - 10.47 + - 10.66 + - 10.8 + - 10.67 + - 10.18 + - 8.73 + - 7.75 + - 7.24 + - 7.12 + - 7.03 + - 7.42 + - 7.06 + - 6.43 + - 6.18 + - 6.2 + - 5.66 + - 5.2 + - 5.92 + - 6.68 + - 7.84 + - 7.71 + - 7.41 + - 6.71 + - 7.34 + - 7.65 + - 8.01 + - 7.65 + - 7.93 + - 6.77 + - 4.31 + - 4.53 + - 4.4 + - 3.35 + - 3.57 + - 4.61 + - 4.0 + - 5.33 + - 5.22 + - 6.48 + - 6.36 + - 6.45 + - 5.83 + - 6.07 + - 5.51 + - 5.66 + - 6.3 + - 6.56 + - 7.84 + - 7.65 + - 7.37 + - 7.0 + - 6.69 + - 5.95 + - 5.42 + - 4.61 + - 3.61 + - 3.33 + - 4.15 + - 5.31 + - 4.92 + - 4.99 + - 5.32 + - 6.3 + - 5.88 + - 6.64 + - 6.75 + - 5.7 + - 6.0 + - 6.13 + - 6.72 + - 7.84 + - 5.3 + - 6.1 + - 4.5 + - 4.26 + - 6.98 + - 7.34 + - 7.07 + - 6.76 + - 7.16 + - 8.24 + - 8.52 + - 7.94 + - 5.53 + - 4.33 + - 3.61 + - 3.76 + - 5.46 + - 7.16 + - 9.17 + - 9.2 + - 8.48 + - 7.98 + - 7.64 + - 7.64 + - 5.92 + - 5.39 + - 5.44 + - 5.59 + - 6.58 + - 7.08 + - 6.75 + - 6.14 + - 5.95 + - 6.29 + - 7.22 + - 7.28 + - 7.65 + - 8.57 + - 8.25 + - 8.81 + - 8.89 + - 8.48 + - 8.95 + - 9.27 + - 9.31 + - 9.29 + - 8.96 + - 9.24 + - 9.41 + - 9.36 + - 9.14 + - 9.17 + - 9.36 + - 9.44 + - 8.88 + - 8.45 + - 7.52 + - 7.64 + - 7.81 + - 7.4 + - 6.94 + - 7.5 + - 7.7 + - 8.2 + - 7.41 + - 7.62 + - 8.21 + - 9.3 + - 9.56 + - 10.2 + - 10.1 + - 10.17 + - 11.4 + - 8.85 + - 9.22 + - 9.62 + - 9.52 + - 9.84 + - 8.9 + - 8.91 + - 8.54 + - 8.52 + - 8.2 + - 7.91 + - 7.34 + - 7.43 + - 7.69 + - 7.22 + - 6.56 + - 6.28 + - 5.89 + - 4.85 + - 3.69 + - 4.2 + - 5.23 + - 5.17 + - 4.48 + - 3.73 + - 3.23 + - 3.04 + - 2.45 + - 2.09 + - 2.2 + - 2.8 + - 4.02 + - 4.24 + - 4.39 + - 4.47 + - 4.25 + - 3.26 + - 2.5 + - 1.8 + - 1.22 + - 1.65 + - 1.8 + - 1.3 + - 1.02 + - 1.13 + - 1.8 + - 2.15 + - 2.1 + - 2.71 + - 2.15 + - 2.01 + - 2.12 + - 2.51 + - 2.77 + - 2.41 + - 2.44 + - 2.12 + - 1.89 + - 3.33 + - 4.53 + - 4.16 + - 4.83 + - 4.34 + - 5.07 + - 4.56 + - 4.39 + - 4.92 + - 4.72 + - 4.37 + - 4.84 + - 4.96 + - 3.96 + - 4.9 + - 6.45 + - 6.02 + - 5.3 + - 6.71 + - 5.99 + - 6.66 + - 5.59 + - 6.17 + - 6.47 + - 7.1 + - 6.5 + - 6.47 + - 6.38 + - 6.8 + - 6.04 + - 5.17 + - 5.25 + - 4.74 + - 5.41 + - 5.95 + - 5.94 + - 6.72 + - 6.69 + - 7.07 + - 7.32 + - 7.46 + - 7.84 + - 6.22 + - 6.88 + - 7.28 + - 7.26 + - 6.73 + - 7.53 + - 6.28 + - 6.83 + - 7.77 + - 7.73 + - 6.51 + - 6.97 + - 6.76 + - 5.9 + - 5.28 + - 5.73 + - 5.4 + - 5.81 + - 5.35 + - 4.83 + - 4.02 + - 4.01 + - 3.45 + - 2.77 + - 2.33 + - 3.18 + - 3.35 + - 2.14 + - 0.5 + - 2.42 + - 2.94 + - 5.71 + - 5.49 + - 5.71 + - 5.22 + - 4.24 + - 4.6 + - 4.4 + - 3.91 + - 3.1 + - 4.12 + - 3.8 + - 3.68 + - 4.69 + - 4.22 + - 4.27 + - 4.84 + - 4.49 + - 4.52 + - 4.12 + - 6.36 + - 7.3 + - 5.95 + - 4.37 + - 3.05 + - 4.05 + - 4.98 + - 5.5 + - 5.73 + - 5.46 + - 4.81 + - 4.12 + - 3.4 + - 2.6 + - 1.7 + - 1.3 + - 3.42 + - 2.45 + - 3.44 + - 4.86 + - 5.06 + - 6.12 + - 5.3 + - 6.13 + - 6.49 + - 7.0 + - 6.94 + - 7.18 + - 7.13 + - 7.94 + - 7.33 + - 7.52 + - 7.6 + - 6.96 + - 6.1 + - 5.95 + - 6.24 + - 6.12 + - 6.44 + - 6.16 + - 7.09 + - 7.33 + - 7.54 + - 5.54 + - 7.08 + - 7.84 + - 8.05 + - 6.86 + - 7.26 + - 7.44 + - 7.87 + - 7.87 + - 7.89 + - 8.29 + - 8.15 + - 8.59 + - 8.82 + - 8.38 + - 7.98 + - 8.65 + - 10.25 + - 10.56 + - 11.19 + - 10.75 + - 10.15 + - 9.41 + - 10.06 + - 10.98 + - 11.68 + - 10.87 + - 10.51 + - 9.81 + - 9.63 + - 8.84 + - 8.17 + - 7.82 + - 7.59 + - 7.85 + - 7.12 + - 6.75 + - 6.03 + - 5.71 + - 5.12 + - 5.22 + - 4.82 + - 4.98 + - 4.65 + - 4.94 + - 5.25 + - 5.92 + - 5.14 + - 3.94 + - 3.71 + - 3.01 + - 2.11 + - 1.87 + - 2.94 + - 6.02 + - 5.86 + - 6.71 + - 6.91 + - 7.16 + - 6.94 + - 6.9 + - 6.63 + - 6.62 + - 6.3 + - 6.61 + - 4.02 + - 3.79 + - 3.88 + - 3.74 + - 3.94 + - 5.46 + - 5.66 + - 6.39 + - 6.06 + - 5.69 + - 5.69 + - 6.3 + - 7.1 + - 6.65 + - 7.78 + - 8.36 + - 9.28 + - 8.57 + - 9.42 + - 10.73 + - 11.19 + - 11.91 + - 12.03 + - 12.87 + - 12.77 + - 13.88 + - 15.58 + - 14.79 + - 17.11 + - 13.29 + - 15.67 + - 18.11 + - 16.6 + - 17.46 + - 17.49 + - 17.05 + - 17.18 + - 16.89 + - 16.92 + - 17.3 + - 18.8 + - 17.37 + - 18.12 + - 17.25 + - 16.87 + - 16.86 + - 17.2 + - 17.44 + - 18.0 + - 18.2 + - 17.67 + - 17.71 + - 17.83 + - 17.34 + - 17.09 + - 15.79 + - 15.06 + - 15.44 + - 15.0 + - 16.01 + - 15.88 + - 14.58 + - 14.73 + - 14.71 + - 13.6 + - 13.68 + - 13.43 + - 13.6 + - 13.41 + - 13.97 + - 14.19 + - 14.94 + - 13.61 + - 14.24 + - 14.43 + - 13.59 + - 13.52 + - 13.47 + - 13.47 + - 13.44 + - 13.11 + - 12.43 + - 12.15 + - 11.95 + - 10.38 + - 10.2 + - 9.84 + - 10.29 + - 10.2 + - 9.62 + - 9.28 + - 8.99 + - 8.64 + - 8.93 + - 9.4 + - 9.51 + - 10.58 + - 11.9 + - 11.14 + - 11.86 + - 11.27 + - 11.33 + - 10.92 + - 10.09 + - 10.53 + - 9.68 + - 8.62 + - 6.93 + - 5.55 + - 5.12 + - 5.1 + - 5.11 + - 5.41 + - 4.98 + - 5.11 + - 5.4 + - 5.53 + - 5.14 + - 4.08 + - 3.58 + - 5.06 + - 4.99 + - 5.54 + - 5.83 + - 5.87 + - 4.83 + - 5.54 + - 7.89 + - 8.27 + - 8.26 + - 8.26 + - 9.0 + - 8.85 + - 8.02 + - 7.64 + - 6.92 + - 5.48 + - 5.12 + - 5.16 + - 4.68 + - 4.34 + - 4.85 + - 5.05 + - 3.82 + - 3.45 + - 3.98 + - 4.32 + - 4.88 + - 5.61 + - 6.26 + - 6.11 + - 6.72 + - 5.71 + - 4.18 + - 7.44 + - 4.98 + - 5.98 + - 6.37 + - 7.11 + - 6.91 + - 6.5 + - 5.99 + - 6.87 + - 5.92 + - 6.33 + - 6.55 + - 6.67 + - 7.69 + - 7.0 + - 8.25 + - 7.44 + - 8.35 + - 8.93 + - 9.06 + - 8.65 + - 8.49 + - 8.42 + - 8.28 + - 7.65 + - 7.44 + - 6.26 + - 6.63 + - 6.75 + - 6.58 + - 7.07 + - 6.45 + - 5.57 + - 6.09 + - 6.09 + - 5.87 + - 6.0 + - 5.32 + - 6.01 + - 5.66 + - 6.14 + - 5.3 + - 6.41 + - 7.2 + - 7.74 + - 6.58 + - 3.58 + - 4.9 + - 5.38 + - 5.29 + - 4.79 + - 4.32 + - 5.25 + - 5.57 + - 5.76 + - 6.28 + - 6.72 + - 6.66 + - 6.72 + - 6.44 + - 6.25 + - 6.44 + - 5.79 + - 4.24 + - 5.78 + - 6.04 + - 6.76 + - 7.42 + - 8.49 + - 8.63 + - 9.34 + - 9.55 + - 10.41 + - 9.36 + - 9.14 + - 9.01 + - 9.63 + - 9.9 + - 9.87 + - 9.87 + - 9.44 + - 9.05 + - 8.76 + - 8.64 + - 8.34 + - 8.68 + - 8.8 + - 8.91 + - 8.11 + - 8.01 + - 7.98 + - 7.68 + - 7.78 + - 7.63 + - 7.22 + - 6.71 + - 6.84 + - 6.36 + - 5.68 + - 5.3 + - 4.69 + - 4.39 + - 4.75 + - 3.49 + - 3.48 + - 4.39 + - 5.32 + - 5.1 + - 4.68 + - 2.7 + - 2.83 + - 2.48 + - 1.34 + - 0.51 + - 1.0 + - 0.22 + - 0.4 + - 1.0 + - 2.28 + - 3.14 + - 3.9 + - 4.71 + - 4.82 + - 6.14 + - 6.28 + - 5.55 + - 5.3 + - 4.61 + - 5.8 + - 6.3 + - 5.95 + - 5.89 + - 5.9 + - 6.94 + - 6.6 + - 5.55 + - 5.52 + - 5.94 + - 7.05 + - 8.01 + - 8.71 + - 8.11 + - 8.11 + - 8.61 + - 7.67 + - 7.38 + - 7.62 + - 7.52 + - 7.62 + - 7.93 + - 8.37 + - 7.62 + - 7.62 + - 8.16 + - 7.89 + - 8.5 + - 9.22 + - 10.0 + - 10.85 + - 9.1 + - 9.6 + - 8.86 + - 8.57 + - 10.36 + - 9.45 + - 8.98 + - 9.53 + - 9.26 + - 8.85 + - 8.1 + - 7.98 + - 6.11 + - 5.59 + - 5.07 + - 5.0 + - 5.91 + - 5.46 + - 5.94 + - 6.04 + - 6.65 + - 6.29 + - 5.12 + - 6.01 + - 6.02 + - 5.97 + - 5.04 + - 5.46 + - 5.71 + - 6.13 + - 6.08 + - 5.82 + - 5.6 + - 5.28 + - 5.1 + - 5.36 + - 5.57 + - 5.55 + - 5.55 + - 5.55 + - 5.54 + - 5.63 + - 5.39 + - 5.41 + - 5.48 + - 5.82 + - 5.31 + - 5.8 + - 5.57 + - 6.49 + - 7.07 + - 7.47 + - 7.16 + - 7.16 + - 6.98 + - 6.71 + - 5.82 + - 5.26 + - 5.31 + - 5.76 + - 6.45 + - 6.35 + - 6.26 + - 6.01 + - 6.7 + - 5.88 + - 6.02 + - 5.92 + - 6.17 + - 6.07 + - 6.0 + - 6.08 + - 6.4 + - 6.02 + - 5.8 + - 5.46 + - 5.76 + - 5.96 + - 6.91 + - 6.64 + - 6.53 + - 5.57 + - 5.15 + - 5.25 + - 5.87 + - 5.6 + - 5.19 + - 4.97 + - 5.19 + - 5.51 + - 6.23 + - 5.63 + - 5.61 + - 6.08 + - 5.37 + - 6.18 + - 4.78 + - 5.46 + - 6.24 + - 6.71 + - 7.31 + - 7.42 + - 6.5 + - 6.11 + - 6.3 + - 5.9 + - 5.91 + - 5.51 + - 5.41 + - 5.92 + - 5.7 + - 5.46 + - 5.22 + - 5.22 + - 4.75 + - 4.11 + - 3.81 + - 3.13 + - 3.2 + - 2.57 + - 4.11 + - 4.31 + - 3.99 + - 3.31 + - 3.47 + - 2.05 + - 2.1 + - 1.14 + - 1.42 + - 1.88 + - 0.71 + - 2.42 + - 6.16 + - 7.21 + - 8.48 + - 8.46 + - 8.44 + - 7.79 + - 7.7 + - 7.0 + - 8.3 + - 6.12 + - 5.1 + - 5.1 + - 5.85 + - 5.23 + - 5.43 + - 5.46 + - 6.02 + - 5.9 + - 5.85 + - 5.41 + - 4.4 + - 3.76 + - 3.44 + - 3.75 + - 4.12 + - 3.92 + - 3.65 + - 3.01 + - 3.67 + - 3.0 + - 2.51 + - 3.7 + - 3.42 + - 1.84 + - 1.4 + - 2.5 + - 1.41 + - 2.64 + - 4.05 + - 3.18 + - 2.5 + - 3.01 + - 3.1 + - 4.22 + - 2.62 + - 2.69 + - 3.31 + - 4.32 + - 3.21 + - 1.75 + - 0.2 + - 2.56 + - 3.13 + - 3.42 + - 4.41 + - 5.23 + - 5.06 + - 5.26 + - 5.54 + - 5.92 + - 3.48 + - 3.49 + - 3.83 + - 4.22 + - 2.48 + - 2.21 + - 3.96 + - 2.96 + - 2.6 + - 2.81 + - 2.53 + - 2.82 + - 2.92 + - 2.06 + - 1.26 + - 1.9 + - 1.63 + - 2.24 + - 2.72 + - 4.42 + - 5.88 + - 6.11 + - 6.01 + - 5.44 + - 5.6 + - 5.91 + - 6.94 + - 7.3 + - 7.17 + - 7.34 + - 6.95 + - 6.72 + - 6.39 + - 6.24 + - 5.22 + - 5.1 + - 5.72 + - 4.97 + - 4.74 + - 4.43 + - 3.85 + - 4.27 + - 3.11 + - 2.82 + - 3.64 + - 4.83 + - 4.44 + - 4.12 + - 4.3 + - 4.75 + - 4.9 + - 5.5 + - 4.55 + - 4.88 + - 5.58 + - 5.89 + - 5.67 + - 5.38 + - 4.88 + - 4.75 + - 4.85 + - 5.33 + - 5.51 + - 5.99 + - 6.63 + - 6.87 + - 5.98 + - 7.43 + - 6.71 + - 7.08 + - 7.32 + - 6.14 + - 6.62 + - 5.74 + - 5.72 + - 6.2 + - 5.26 + - 6.11 + - 5.28 + - 5.81 + - 3.72 + - 3.82 + - 3.6 + - 3.76 + - 3.77 + - 3.14 + - 2.78 + - 2.58 + - 0.6 + - 3.38 + - 4.9 + - 5.22 + - 5.41 + - 5.61 + - 4.91 + - 4.85 + - 4.08 + - 3.93 + - 4.0 + - 3.61 + - 3.62 + - 3.44 + - 3.1 + - 3.01 + - 2.04 + - 2.89 + - 0.58 + - 2.18 + - 2.42 + - 2.3 + - 2.52 + - 2.33 + - 3.41 + - 3.83 + - 4.29 + - 4.17 + - 3.72 + - 3.52 + - 3.0 + - 3.77 + - 3.85 + - 4.43 + - 4.7 + - 5.15 + - 6.2 + - 6.67 + - 6.64 + - 6.26 + - 5.81 + - 5.2 + - 6.15 + - 6.4 + - 6.09 + - 5.99 + - 6.04 + - 6.2 + - 6.51 + - 6.71 + - 6.94 + - 7.11 + - 6.94 + - 6.98 + - 6.84 + - 6.62 + - 7.0 + - 7.31 + - 7.47 + - 8.29 + - 7.46 + - 7.87 + - 8.29 + - 7.91 + - 8.29 + - 7.69 + - 7.78 + - 8.29 + - 8.81 + - 9.35 + - 9.36 + - 9.94 + - 9.12 + - 9.41 + - 9.4 + - 9.17 + - 8.14 + - 7.29 + - 6.71 + - 5.75 + - 5.92 + - 7.25 + - 6.62 + - 7.33 + - 7.91 + - 8.15 + - 7.43 + - 7.06 + - 7.84 + - 7.24 + - 7.94 + - 7.93 + - 7.75 + - 7.54 + - 7.43 + - 7.2 + - 7.4 + - 7.56 + - 7.31 + - 6.65 + - 6.8 + - 6.96 + - 6.68 + - 5.42 + - 5.01 + - 5.37 + - 6.28 + - 6.49 + - 6.86 + - 6.91 + - 6.77 + - 6.14 + - 5.97 + - 5.58 + - 5.73 + - 6.39 + - 5.94 + - 5.94 + - 6.02 + - 6.11 + - 5.66 + - 5.47 + - 5.11 + - 4.69 + - 4.4 + - 3.86 + - 3.72 + - 3.69 + - 3.19 + - 2.02 + - 2.18 + - 2.35 + - 2.42 + - 2.9 + - 3.7 + - 4.2 + - 3.82 + - 3.82 + - 4.49 + - 3.64 + - 2.92 + - 3.05 + - 3.11 + - 3.04 + - 2.59 + - 2.97 + - 3.98 + - 4.52 + - 4.26 + - 4.11 + - 3.47 + - 2.02 + - 2.14 + - 2.01 + - 2.56 + - 3.02 + - 3.61 + - 3.67 + - 3.73 + - 3.72 + - 4.43 + - 5.66 + - 6.96 + - 7.99 + - 8.48 + - 8.35 + - 8.21 + - 8.22 + - 7.92 + - 8.0 + - 8.22 + - 8.29 + - 8.5 + - 8.57 + - 8.02 + - 8.75 + - 5.87 + - 5.31 + - 4.81 + - 4.6 + - 4.95 + - 4.74 + - 4.67 + - 4.95 + - 5.17 + - 5.81 + - 6.64 + - 7.26 + - 7.86 + - 7.71 + - 7.36 + - 7.5 + - 7.78 + - 7.29 + - 7.36 + - 7.57 + - 7.57 + - 8.02 + - 8.14 + - 9.27 + - 6.86 + - 5.38 + - 5.24 + - 5.72 + - 6.02 + - 5.22 + - 4.33 + - 3.97 + - 4.44 + - 5.66 + - 6.66 + - 7.07 + - 7.17 + - 7.19 + - 6.89 + - 6.67 + - 6.17 + - 6.15 + - 5.96 + - 5.7 + - 5.87 + - 5.96 + - 6.02 + - 6.33 + - 5.51 + - 3.71 + - 3.54 + - 4.27 + - 4.95 + - 4.91 + - 4.07 + - 3.36 + - 2.88 + - 2.8 + - 3.85 + - 4.44 + - 3.52 + - 4.34 + - 4.49 + - 4.28 + - 4.08 + - 3.67 + - 3.57 + - 3.61 + - 3.53 + - 2.16 + - 2.1 + - 3.29 + - 3.58 + - 3.0 + - 2.18 + - 1.61 + - 2.25 + - 2.28 + - 2.24 + - 2.73 + - 2.8 + - 3.08 + - 3.18 + - 2.92 + - 2.98 + - 3.26 + - 3.77 + - 4.1 + - 5.88 + - 7.03 + - 7.88 + - 8.29 + - 8.77 + - 8.8 + - 9.22 + - 11.2 + - 8.67 + - 7.69 + - 7.32 + - 6.92 + - 6.36 + - 2.69 + - 4.93 + - 4.79 + - 6.52 + - 6.88 + - 5.97 + - 5.78 + - 5.94 + - 5.7 + - 5.21 + - 4.7 + - 4.32 + - 3.93 + - 4.18 + - 3.92 + - 4.2 + - 3.94 + - 3.96 + - 3.33 + - 3.45 + - 4.6 + - 4.81 + - 5.42 + - 6.11 + - 5.39 + - 6.09 + - 5.79 + - 5.98 + - 6.32 + - 6.22 + - 5.99 + - 6.22 + - 6.08 + - 6.53 + - 5.99 + - 6.14 + - 7.16 + - 7.21 + - 7.29 + - 7.74 + - 7.16 + - 6.66 + - 6.76 + - 6.26 + - 5.87 + - 6.14 + - 5.88 + - 5.29 + - 5.15 + - 5.69 + - 5.55 + - 5.32 + - 5.95 + - 5.77 + - 5.71 + - 4.4 + - 3.1 + - 1.87 + - 1.86 + - 3.81 + - 4.79 + - 4.92 + - 5.0 + - 4.9 + - 3.26 + - 2.02 + - 0.41 + - 2.68 + - 3.2 + - 4.22 + - 4.1 + - 5.33 + - 5.99 + - 5.51 + - 6.26 + - 6.51 + - 6.23 + - 7.08 + - 7.83 + - 8.33 + - 8.73 + - 8.29 + - 7.79 + - 7.86 + - 8.35 + - 8.2 + - 7.85 + - 7.42 + - 6.91 + - 7.2 + - 7.81 + - 7.14 + - 6.6 + - 6.5 + - 6.41 + - 6.0 + - 5.1 + - 5.12 + - 5.04 + - 4.6 + - 4.14 + - 3.41 + - 3.44 + - 6.81 + - 7.55 + - 7.88 + - 7.74 + - 7.41 + - 7.13 + - 6.63 + - 6.17 + - 6.25 + - 6.66 + - 6.78 + - 7.16 + - 5.17 + - 4.33 + - 4.1 + - 4.66 + - 5.07 + - 4.08 + - 3.0 + - 0.86 + - 3.09 + - 3.82 + - 4.25 + - 4.69 + - 3.7 + - 2.62 + - 2.34 + - 4.02 + - 6.87 + - 6.2 + - 6.26 + - 6.53 + - 7.19 + - 7.53 + - 7.4 + - 7.33 + - 6.87 + - 7.02 + - 7.2 + - 6.8 + - 6.11 + - 5.92 + - 6.12 + - 5.95 + - 7.16 + - 7.67 + - 9.26 + - 10.99 + - 11.15 + - 11.0 + - 12.02 + - 11.99 + - 13.38 + - 12.88 + - 11.52 + - 10.54 + - 10.1 + - 9.92 + - 9.97 + - 10.29 + - 9.37 + - 9.35 + - 10.3 + - 9.63 + - 9.11 + - 8.9 + - 9.01 + - 10.41 + - 11.23 + - 12.04 + - 9.71 + - 8.39 + - 8.23 + - 8.3 + - 9.95 + - 10.77 + - 10.73 + - 10.85 + - 9.79 + - 9.62 + - 9.57 + - 8.99 + - 9.77 + - 9.95 + - 10.1 + - 8.02 + - 10.51 + - 11.1 + - 9.34 + - 10.94 + - 10.25 + - 11.8 + - 21.57 + - 19.72 + - 17.08 + - 13.35 + - 10.16 + - 7.04 + - 8.65 + - 15.62 + - 14.23 + - 14.1 + - 13.62 + - 13.71 + - 14.3 + - 13.23 + - 12.38 + - 13.43 + - 14.46 + - 13.29 + - 14.14 + - 14.57 + - 15.0 + - 14.43 + - 14.18 + - 14.19 + - 13.25 + - 13.09 + - 13.03 + - 12.5 + - 11.89 + - 11.93 + - 11.63 + - 11.43 + - 11.14 + - 11.51 + - 11.47 + - 11.48 + - 12.08 + - 12.73 + - 12.92 + - 12.8 + - 12.47 + - 11.75 + - 11.28 + - 11.16 + - 9.32 + - 8.01 + - 6.37 + - 3.45 + - 1.36 + - 0.36 + - 0.32 + - 0.9 + - 2.12 + - 2.09 + - 4.49 + - 4.19 + - 3.02 + - 3.61 + - 5.1 + - 2.86 + - 1.52 + - 1.58 + - 1.73 + - 2.21 + - 1.84 + - 0.76 + - 3.7 + - 2.7 + - 3.42 + - 3.04 + - 3.2 + - 5.22 + - 4.7 + - 4.61 + - 4.16 + - 2.78 + - 3.04 + - 3.94 + - 2.69 + - 3.31 + - 2.47 + - 2.5 + - 2.5 + - 2.06 + - 2.0 + - 2.97 + - 4.93 + - 4.92 + - 3.32 + - 3.83 + - 4.3 + - 5.3 + - 4.87 + - 5.58 + - 6.36 + - 7.35 + - 6.68 + - 6.84 + - 7.23 + - 6.96 + - 6.48 + - 6.56 + - 7.09 + - 6.56 + - 6.31 + - 6.5 + - 6.59 + - 6.77 + - 6.43 + - 5.75 + - 5.37 + - 5.8 + - 5.78 + - 6.18 + - 9.28 + - 10.15 + - 10.2 + - 10.31 + - 9.57 + - 9.79 + - 8.92 + - 9.26 + - 9.4 + - 9.43 + - 9.32 + - 9.46 + - 10.05 + - 10.85 + - 11.46 + - 11.54 + - 11.92 + - 11.32 + - 10.94 + - 11.62 + - 11.73 + - 11.9 + - 10.41 + - 9.91 + - 11.61 + - 11.48 + - 11.78 + - 11.29 + - 11.05 + - 9.21 + - 8.83 + - 8.32 + - 8.1 + - 7.42 + - 6.62 + - 6.35 + - 6.17 + - 5.99 + - 5.65 + - 5.36 + - 5.22 + - 5.1 + - 5.04 + - 5.44 + - 6.28 + - 6.84 + - 7.6 + - 5.68 + - 4.97 + - 5.44 + - 5.63 + - 5.63 + - 5.41 + - 5.16 + - 5.12 + - 5.76 + - 6.85 + - 7.69 + - 8.27 + - 8.37 + - 8.57 + - 8.71 + - 8.4 + - 8.21 + - 8.08 + - 7.56 + - 7.38 + - 7.34 + - 6.81 + - 5.9 + - 4.74 + - 4.27 + - 3.57 + - 2.91 + - 3.03 + - 1.39 + - 0.73 + - 1.43 + - 2.51 + - 3.92 + - 5.45 + - 5.73 + - 7.23 + - 8.0 + - 9.23 + - 10.48 + - 10.78 + - 9.91 + - 9.74 + - 9.69 + - 9.68 + - 9.73 + - 10.1 + - 9.67 + - 10.38 + - 9.86 + - 10.03 + - 11.01 + - 11.04 + - 11.14 + - 10.5 + - 9.84 + - 7.36 + - 7.67 + - 7.17 + - 6.77 + - 6.75 + - 7.99 + - 7.22 + - 7.02 + - 7.57 + - 7.62 + - 8.14 + - 7.69 + - 7.61 + - 7.65 + - 7.65 + - 6.82 + - 7.02 + - 8.56 + - 7.93 + - 7.66 + - 11.26 + - 9.14 + - 7.45 + - 7.92 + - 8.97 + - 8.93 + - 9.2 + - 9.17 + - 9.7 + - 10.01 + - 10.32 + - 10.9 + - 10.5 + - 10.21 + - 10.21 + - 10.21 + - 10.02 + - 9.79 + - 9.7 + - 9.04 + - 10.04 + - 10.59 + - 10.38 + - 11.57 + - 10.87 + - 10.33 + - 10.16 + - 9.49 + - 8.5 + - 8.01 + - 7.71 + - 7.55 + - 7.24 + - 7.05 + - 7.23 + - 6.77 + - 5.73 + - 4.92 + - 4.37 + - 4.63 + - 5.32 + - 5.63 + - 4.55 + - 3.45 + - 4.13 + - 3.49 + - 4.94 + - 4.54 + - 5.22 + - 5.26 + - 6.31 + - 6.71 + - 6.43 + - 6.66 + - 7.17 + - 6.57 + - 6.64 + - 6.3 + - 6.25 + - 6.44 + - 6.28 + - 6.44 + - 5.55 + - 5.16 + - 4.88 + - 4.77 + - 4.94 + - 4.84 + - 5.86 + - 5.73 + - 6.11 + - 6.03 + - 6.38 + - 6.91 + - 5.57 + - 4.85 + - 4.0 + - 4.36 + - 4.24 + - 4.43 + - 4.48 + - 4.0 + - 4.22 + - 4.01 + - 4.11 + - 3.55 + - 4.46 + - 3.91 + - 4.73 + - 3.24 + - 1.0 + - 4.94 + - 13.85 + - 8.22 + - 9.07 + - 9.68 + - 9.55 + - 8.63 + - 8.61 + - 9.66 + - 9.23 + - 9.5 + - 9.71 + - 9.48 + - 9.53 + - 8.96 + - 9.94 + - 9.8 + - 10.72 + - 11.22 + - 10.82 + - 10.79 + - 11.38 + - 11.74 + - 12.04 + - 11.14 + - 11.3 + - 12.2 + - 10.9 + - 10.41 + - 10.75 + - 10.76 + - 11.01 + - 11.68 + - 11.8 + - 12.59 + - 12.4 + - 12.29 + - 12.93 + - 14.07 + - 11.32 + - 11.51 + - 9.1 + - 9.53 + - 10.35 + - 10.74 + - 11.15 + - 10.76 + - 10.58 + - 10.02 + - 9.98 + - 10.74 + - 11.36 + - 10.7 + - 10.02 + - 9.62 + - 9.28 + - 8.25 + - 7.04 + - 5.8 + - 6.18 + - 5.98 + - 5.02 + - 5.36 + - 5.94 + - 7.5 + - 9.04 + - 9.33 + - 10.12 + - 10.28 + - 11.65 + - 11.41 + - 12.23 + - 13.66 + - 13.15 + - 14.24 + - 13.89 + - 14.64 + - 15.54 + - 17.28 + - 15.32 + - 15.1 + - 15.11 + - 15.57 + - 16.58 + - 17.77 + - 18.91 + - 16.93 + - 15.18 + - 13.28 + - 12.18 + - 11.76 + - 11.24 + - 11.72 + - 11.62 + - 10.91 + - 10.22 + - 10.19 + - 8.68 + - 10.07 + - 9.68 + - 9.7 + - 6.74 + - 6.64 + - 7.67 + - 7.08 + - 7.04 + - 7.31 + - 7.66 + - 8.0 + - 8.25 + - 7.89 + - 7.66 + - 7.04 + - 5.03 + - 5.28 + - 4.44 + - 6.48 + - 6.61 + - 6.7 + - 5.85 + - 4.15 + - 2.38 + - 0.7 + - 0.95 + - 1.44 + - 1.64 + - 3.45 + - 3.76 + - 3.55 + - 3.28 + - 2.91 + - 1.55 + - 1.0 + - 3.71 + - 4.85 + - 3.38 + - 4.83 + - 4.81 + - 4.73 + - 6.07 + - 6.56 + - 7.13 + - 6.8 + - 6.73 + - 6.6 + - 5.85 + - 6.95 + - 4.75 + - 3.37 + - 2.92 + - 2.53 + - 2.0 + - 1.2 + - 0.67 + - 0.42 + - 1.17 + - 2.11 + - 2.2 + - 2.0 + - 2.47 + - 3.06 + - 4.16 + - 3.69 + - 3.92 + - 4.74 + - 5.55 + - 6.12 + - 7.03 + - 6.96 + - 5.32 + - 5.28 + - 7.25 + - 8.86 + - 10.51 + - 10.72 + - 10.23 + - 9.26 + - 9.09 + - 9.92 + - 12.28 + - 12.87 + - 12.8 + - 13.37 + - 12.23 + - 12.11 + - 10.93 + - 13.02 + - 13.67 + - 12.7 + - 12.88 + - 13.69 + - 14.63 + - 15.25 + - 12.71 + - 12.38 + - 11.96 + - 11.85 + - 10.86 + - 10.61 + - 11.61 + - 11.55 + - 12.13 + - 11.54 + - 11.4 + - 11.23 + - 11.54 + - 11.43 + - 11.81 + - 11.3 + - 11.57 + - 10.9 + - 11.3 + - 11.4 + - 11.92 + - 11.67 + - 12.21 + - 11.65 + - 11.72 + - 11.59 + - 11.85 + - 11.18 + - 9.86 + - 9.26 + - 8.5 + - 6.72 + - 4.9 + - 5.07 + - 6.26 + - 5.95 + - 4.52 + - 4.74 + - 5.46 + - 6.27 + - 6.65 + - 7.71 + - 8.56 + - 9.02 + - 9.22 + - 9.65 + - 9.86 + - 9.82 + - 9.59 + - 10.17 + - 9.69 + - 9.73 + - 13.61 + - 13.52 + - 11.37 + - 9.5 + - 8.61 + - 9.11 + - 10.47 + - 10.59 + - 10.2 + - 8.81 + - 9.52 + - 9.56 + - 8.81 + - 9.51 + - 11.62 + - 12.8 + - 13.62 + - 14.81 + - 15.11 + - 14.6 + - 14.52 + - 14.02 + - 14.81 + - 14.99 + - 15.32 + - 14.73 + - 14.67 + - 13.86 + - 14.0 + - 14.24 + - 13.6 + - 15.12 + - 14.65 + - 15.43 + - 15.39 + - 16.02 + - 13.01 + - 14.62 + - 13.69 + - 14.45 + - 13.77 + - 14.87 + - 14.34 + - 13.29 + - 13.6 + - 13.89 + - 14.09 + - 14.21 + - 13.37 + - 13.72 + - 13.15 + - 13.15 + - 12.01 + - 10.76 + - 10.74 + - 10.36 + - 9.98 + - 9.88 + - 9.94 + - 10.31 + - 8.86 + - 9.41 + - 9.55 + - 9.76 + - 9.55 + - 8.85 + - 8.34 + - 8.29 + - 7.29 + - 8.62 + - 9.49 + - 7.71 + - 7.88 + - 7.85 + - 7.32 + - 6.3 + - 5.28 + - 4.99 + - 4.74 + - 5.8 + - 6.31 + - 5.65 + - 5.31 + - 5.32 + - 5.97 + - 7.2 + - 6.4 + - 5.98 + - 5.45 + - 5.87 + - 6.77 + - 6.56 + - 6.6 + - 7.28 + - 8.29 + - 7.27 + - 7.98 + - 7.84 + - 8.17 + - 7.07 + - 6.23 + - 5.85 + - 5.51 + - 5.32 + - 5.6 + - 5.85 + - 5.38 + - 5.25 + - 6.53 + - 6.36 + - 5.39 + - 4.74 + - 3.94 + - 3.55 + - 2.67 + - 1.58 + - 0.71 + - 1.84 + - 2.45 + - 2.4 + - 3.44 + - 3.96 + - 4.34 + - 5.14 + - 6.54 + - 7.71 + - 9.25 + - 9.71 + - 9.9 + - 9.91 + - 9.73 + - 10.47 + - 11.57 + - 12.39 + - 13.31 + - 14.43 + - 14.58 + - 14.91 + - 15.6 + - 15.31 + - 14.5 + - 12.98 + - 13.89 + - 14.31 + - 13.72 + - 14.22 + - 14.35 + - 15.1 + - 15.15 + - 15.08 + - 15.09 + - 15.36 + - 15.34 + - 15.58 + - 15.65 + - 15.62 + - 15.52 + - 15.12 + - 15.12 + - 15.25 + - 15.15 + - 15.59 + - 15.92 + - 16.3 + - 16.08 + - 15.1 + - 16.24 + - 17.54 + - 16.02 + - 16.66 + - 18.45 + - 18.53 + - 19.09 + - 19.32 + - 19.65 + - 19.93 + - 19.46 + - 19.43 + - 19.34 + - 17.66 + - 19.77 + - 21.05 + - 19.84 + - 16.42 + - 16.52 + - 16.04 + - 15.13 + - 14.53 + - 13.51 + - 12.3 + - 11.12 + - 10.99 + - 10.8 + - 9.71 + - 9.9 + - 9.85 + - 10.32 + - 10.72 + - 10.18 + - 9.49 + - 8.68 + - 8.02 + - 7.66 + - 7.9 + - 8.68 + - 8.95 + - 8.64 + - 8.75 + - 8.9 + - 8.64 + - 8.66 + - 8.46 + - 8.49 + - 8.49 + - 7.96 + - 8.1 + - 6.99 + - 7.24 + - 7.27 + - 7.07 + - 8.5 + - 8.81 + - 8.47 + - 8.32 + - 8.04 + - 7.65 + - 7.29 + - 7.35 + - 7.98 + - 7.5 + - 7.86 + - 8.08 + - 8.35 + - 8.7 + - 9.03 + - 8.94 + - 8.63 + - 8.3 + - 7.87 + - 7.8 + - 6.26 + - 5.52 + - 5.08 + - 4.6 + - 3.62 + - 2.52 + - 2.33 + - 3.11 + - 2.6 + - 2.34 + - 2.38 + - 2.98 + - 2.91 + - 3.5 + - 4.57 + - 5.32 + - 6.1 + - 6.6 + - 7.4 + - 7.92 + - 8.83 + - 8.91 + - 10.6 + - 11.43 + - 12.1 + - 13.1 + - 13.3 + - 13.01 + - 13.1 + - 13.61 + - 13.52 + - 13.51 + - 13.5 + - 13.9 + - 14.01 + - 13.21 + - 12.11 + - 13.2 + - 12.83 + - 12.48 + - 11.46 + - 10.94 + - 11.44 + - 10.89 + - 10.85 + - 10.29 + - 10.17 + - 9.38 + - 9.03 + - 9.88 + - 9.53 + - 8.82 + - 9.36 + - 9.75 + - 9.33 + - 9.2 + - 9.12 + - 9.22 + - 9.29 + - 9.55 + - 9.19 + - 9.17 + - 9.33 + - 9.14 + - 8.77 + - 8.8 + - 8.95 + - 8.86 + - 9.2 + - 9.7 + - 9.71 + - 9.28 + - 9.24 + - 7.52 + - 7.75 + - 7.61 + - 7.12 + - 7.56 + - 8.01 + - 8.05 + - 7.52 + - 6.89 + - 6.52 + - 6.69 + - 6.87 + - 6.18 + - 6.53 + - 7.03 + - 7.26 + - 7.57 + - 7.25 + - 7.15 + - 6.94 + - 6.41 + - 7.4 + - 7.32 + - 7.11 + - 7.24 + - 7.53 + - 7.45 + - 7.78 + - 8.34 + - 8.57 + - 8.54 + - 8.55 + - 8.14 + - 7.74 + - 7.67 + - 7.37 + - 7.57 + - 7.79 + - 8.34 + - 8.31 + - 8.02 + - 8.0 + - 7.62 + - 8.36 + - 8.87 + - 10.41 + - 10.25 + - 9.93 + - 10.83 + - 9.19 + - 9.96 + - 10.28 + - 10.34 + - 10.98 + - 11.35 + - 11.42 + - 11.7 + - 11.57 + - 12.05 + - 12.4 + - 12.25 + - 11.76 + - 11.9 + - 11.81 + - 12.31 + - 12.2 + - 13.16 + - 13.64 + - 14.52 + - 13.5 + - 8.78 + - 10.0 + - 8.1 + - 9.48 + - 10.52 + - 12.07 + - 8.43 + - 8.06 + - 10.43 + - 9.37 + - 8.1 + - 7.72 + - 7.74 + - 6.69 + - 6.61 + - 6.5 + - 8.81 + - 8.83 + - 10.22 + - 11.48 + - 12.7 + - 13.33 + - 14.48 + - 14.93 + - 14.24 + - 14.28 + - 14.21 + - 12.94 + - 11.14 + - 10.5 + - 6.65 + - 5.91 + - 6.43 + - 5.33 + - 6.13 + - 6.83 + - 6.78 + - 7.42 + - 7.82 + - 7.98 + - 8.32 + - 8.21 + - 8.77 + - 8.83 + - 8.95 + - 7.97 + - 8.0 + - 8.23 + - 8.61 + - 8.29 + - 8.73 + - 8.2 + - 7.67 + - 6.89 + - 6.13 + - 6.68 + - 4.97 + - 4.81 + - 3.92 + - 3.38 + - 3.1 + - 2.6 + - 2.95 + - 3.61 + - 4.48 + - 5.87 + - 6.89 + - 7.61 + - 8.16 + - 10.02 + - 11.55 + - 10.92 + - 11.37 + - 9.81 + - 12.39 + - 12.53 + - 12.02 + - 11.83 + - 11.43 + - 10.57 + - 10.91 + - 10.26 + - 11.04 + - 11.75 + - 11.63 + - 11.29 + - 11.43 + - 10.87 + - 9.81 + - 9.22 + - 9.01 + - 9.24 + - 9.06 + - 10.12 + - 10.76 + - 12.24 + - 12.24 + - 12.32 + - 12.7 + - 12.76 + - 12.45 + - 12.89 + - 13.74 + - 12.4 + - 11.32 + - 13.81 + - 13.89 + - 13.43 + - 13.04 + - 13.66 + - 12.19 + - 12.03 + - 11.62 + - 10.93 + - 10.85 + - 11.17 + - 11.4 + - 11.11 + - 11.54 + - 11.68 + - 11.85 + - 12.42 + - 12.15 + - 11.61 + - 11.79 + - 11.06 + - 10.42 + - 10.59 + - 11.02 + - 11.1 + - 9.86 + - 9.5 + - 8.96 + - 9.01 + - 9.21 + - 9.0 + - 9.06 + - 9.06 + - 8.52 + - 8.12 + - 8.91 + - 8.51 + - 8.53 + - 9.58 + - 9.91 + - 10.18 + - 8.27 + - 9.15 + - 9.33 + - 9.22 + - 9.0 + - 9.59 + - 9.63 + - 9.71 + - 9.49 + - 9.1 + - 9.13 + - 9.42 + - 9.18 + - 9.46 + - 9.43 + - 8.63 + - 8.46 + - 8.35 + - 8.68 + - 8.1 + - 7.87 + - 6.81 + - 5.83 + - 6.06 + - 5.35 + - 5.28 + - 5.24 + - 5.39 + - 5.85 + - 6.04 + - 5.65 + - 5.47 + - 5.3 + - 5.47 + - 5.3 + - 5.6 + - 6.6 + - 5.68 + - 6.33 + - 6.04 + - 7.47 + - 8.56 + - 9.49 + - 9.84 + - 9.2 + - 9.44 + - 8.91 + - 8.36 + - 7.12 + - 7.06 + - 4.9 + - 5.2 + - 6.1 + - 6.15 + - 6.44 + - 5.75 + - 5.52 + - 5.44 + - 5.69 + - 5.17 + - 4.24 + - 4.6 + - 5.95 + - 4.97 + - 4.65 + - 5.1 + - 4.97 + - 5.24 + - 5.17 + - 5.38 + - 5.94 + - 5.41 + - 6.8 + - 6.06 + - 7.14 + - 7.36 + - 6.58 + - 7.73 + - 7.19 + - 7.11 + - 7.12 + - 7.34 + - 6.69 + - 6.18 + - 6.05 + - 5.42 + - 4.66 + - 4.39 + - 4.18 + - 5.22 + - 5.02 + - 5.84 + - 4.87 + - 5.2 + - 5.35 + - 6.05 + - 5.72 + - 6.12 + - 6.82 + - 6.04 + - 7.41 + - 8.78 + - 10.36 + - 10.97 + - 12.66 + - 13.11 + - 12.11 + - 7.52 + - 5.56 + - 4.6 + - 3.4 + - 2.51 + - 1.92 + - 0.85 + - 0.67 + - 1.0 + - 1.22 + - 0.57 + - 1.24 + - 1.7 + - 1.91 + - 2.34 + - 3.35 + - 4.22 + - 4.61 + - 5.32 + - 6.4 + - 6.98 + - 7.57 + - 8.1 + - 8.65 + - 8.78 + - 8.9 + - 7.83 + - 6.86 + - 7.21 + - 6.65 + - 5.89 + - 6.08 + - 6.3 + - 7.03 + - 7.75 + - 5.82 + - 5.6 + - 5.24 + - 5.91 + - 4.7 + - 5.26 + - 6.39 + - 7.01 + - 7.2 + - 7.06 + - 7.22 + - 7.26 + - 7.08 + - 6.5 + - 5.74 + - 5.66 + - 5.32 + - 5.72 + - 5.16 + - 5.36 + - 5.95 + - 5.73 + - 4.43 + - 3.73 + - 3.58 + - 4.19 + - 3.08 + - 3.47 + - 3.91 + - 5.03 + - 5.12 + - 5.12 + - 4.58 + - 3.86 + - 3.94 + - 3.97 + - 3.4 + - 3.22 + - 1.91 + - 2.33 + - 2.86 + - 2.93 + - 3.51 + - 3.58 + - 3.36 + - 2.73 + - 2.73 + - 2.6 + - 2.94 + - 2.53 + - 2.12 + - 2.52 + - 3.0 + - 2.6 + - 2.71 + - 2.34 + - 1.89 + - 1.56 + - 1.75 + - 2.28 + - 2.19 + - 2.24 + - 1.84 + - 2.85 + - 3.04 + - 3.42 + - 4.46 + - 5.35 + - 6.43 + - 6.36 + - 6.71 + - 7.39 + - 8.16 + - 8.8 + - 9.76 + - 9.96 + - 10.72 + - 11.18 + - 13.33 + - 13.54 + - 13.37 + - 13.83 + - 16.11 + - 13.34 + - 12.64 + - 12.98 + - 12.01 + - 11.77 + - 12.4 + - 12.15 + - 12.19 + - 12.09 + - 12.07 + - 12.15 + - 11.56 + - 10.47 + - 9.9 + - 10.35 + - 9.54 + - 9.73 + - 9.42 + - 9.32 + - 8.8 + - 8.35 + - 7.89 + - 8.29 + - 8.47 + - 8.18 + - 7.41 + - 7.07 + - 6.54 + - 6.31 + - 6.21 + - 5.46 + - 5.32 + - 5.25 + - 4.78 + - 4.11 + - 3.47 + - 2.84 + - 2.7 + - 2.98 + - 4.2 + - 4.91 + - 5.5 + - 6.33 + - 6.67 + - 7.31 + - 7.48 + - 8.15 + - 8.84 + - 9.05 + - 9.22 + - 9.54 + - 9.85 + - 9.86 + - 9.58 + - 9.3 + - 8.52 + - 7.7 + - 7.37 + - 7.54 + - 7.55 + - 6.26 + - 5.88 + - 4.96 + - 5.91 + - 5.99 + - 5.96 + - 5.66 + - 6.01 + - 6.76 + - 7.25 + - 7.56 + - 7.92 + - 7.75 + - 7.74 + - 7.62 + - 7.36 + - 6.48 + - 6.1 + - 5.99 + - 5.87 + - 6.04 + - 6.02 + - 5.96 + - 5.73 + - 5.45 + - 5.1 + - 4.78 + - 5.52 + - 5.01 + - 4.96 + - 4.24 + - 3.7 + - 3.91 + - 4.33 + - 4.26 + - 4.34 + - 3.41 + - 3.42 + - 3.86 + - 5.87 + - 5.99 + - 5.77 + - 6.44 + - 6.79 + - 7.29 + - 7.57 + - 7.64 + - 8.0 + - 9.98 + - 10.0 + - 8.56 + - 9.41 + - 9.78 + - 10.58 + - 11.37 + - 11.47 + - 11.4 + - 12.09 + - 12.89 + - 12.18 + - 11.87 + - 13.26 + - 12.84 + - 13.04 + - 12.74 + - 12.76 + - 12.04 + - 12.18 + - 11.48 + - 10.61 + - 10.29 + - 8.81 + - 7.76 + - 7.02 + - 6.04 + - 8.14 + - 7.11 + - 6.87 + - 8.01 + - 7.72 + - 6.91 + - 6.4 + - 6.21 + - 5.64 + - 5.3 + - 5.47 + - 6.43 + - 6.43 + - 6.91 + - 7.18 + - 7.13 + - 7.06 + - 7.13 + - 7.18 + - 7.28 + - 7.13 + - 7.7 + - 7.2 + - 7.47 + - 8.01 + - 7.21 + - 7.1 + - 7.31 + - 7.73 + - 7.95 + - 7.52 + - 7.53 + - 7.5 + - 7.25 + - 7.47 + - 7.31 + - 7.35 + - 7.0 + - 6.79 + - 6.62 + - 6.81 + - 6.44 + - 6.3 + - 6.09 + - 5.87 + - 5.59 + - 5.48 + - 4.53 + - 4.47 + - 3.69 + - 4.07 + - 4.02 + - 3.91 + - 4.21 + - 3.5 + - 4.3 + - 4.56 + - 4.31 + - 3.86 + - 5.11 + - 6.41 + - 7.51 + - 8.14 + - 8.73 + - 9.33 + - 9.92 + - 10.52 + - 10.82 + - 11.44 + - 12.43 + - 13.29 + - 14.14 + - 14.64 + - 14.99 + - 15.38 + - 15.49 + - 14.95 + - 14.18 + - 13.27 + - 13.03 + - 13.2 + - 12.7 + - 13.6 + - 14.7 + - 14.81 + - 15.34 + - 15.94 + - 17.56 + - 17.33 + - 16.34 + - 15.46 + - 14.91 + - 17.05 + - 14.46 + - 15.82 + - 16.48 + - 14.58 + - 14.06 + - 14.32 + - 14.94 + - 13.34 + - 14.9 + - 13.68 + - 13.54 + - 14.59 + - 14.37 + - 13.25 + - 14.0 + - 12.38 + - 13.58 + - 14.28 + - 13.09 + - 13.22 + - 11.32 + - 11.41 + - 12.24 + - 12.88 + - 13.86 + - 13.87 + - 14.21 + - 10.33 + - 10.39 + - 11.16 + - 11.62 + - 11.01 + - 10.4 + - 9.46 + - 8.88 + - 8.3 + - 7.86 + - 9.97 + - 10.82 + - 10.57 + - 7.77 + - 8.5 + - 8.91 + - 8.8 + - 8.4 + - 8.16 + - 8.1 + - 7.76 + - 6.32 + - 5.19 + - 5.09 + - 4.37 + - 4.08 + - 5.38 + - 6.51 + - 5.69 + - 5.76 + - 5.19 + - 4.44 + - 3.81 + - 3.61 + - 2.5 + - 1.3 + - 0.72 + - 1.43 + - 1.75 + - 2.79 + - 3.7 + - 4.17 + - 3.84 + - 3.8 + - 5.41 + - 7.03 + - 8.32 + - 7.78 + - 7.91 + - 8.42 + - 7.76 + - 6.32 + - 5.88 + - 5.06 + - 4.72 + - 5.22 + - 6.3 + - 6.84 + - 7.21 + - 7.42 + - 8.03 + - 8.63 + - 8.89 + - 9.11 + - 9.3 + - 9.9 + - 10.01 + - 10.2 + - 9.84 + - 8.97 + - 8.93 + - 9.42 + - 10.26 + - 10.0 + - 9.87 + - 9.06 + - 9.18 + - 8.69 + - 8.14 + - 8.11 + - 8.82 + - 9.95 + - 10.56 + - 10.6 + - 9.37 + - 8.58 + - 7.55 + - 7.36 + - 7.38 + - 7.0 + - 6.44 + - 6.05 + - 5.16 + - 4.04 + - 3.88 + - 2.78 + - 2.28 + - 1.43 + - 1.02 + - 0.41 + - 0.41 + - 1.12 + - 1.03 + - 1.32 + - 2.15 + - 2.28 + - 2.2 + - 2.31 + - 3.26 + - 3.45 + - 3.89 + - 4.33 + - 4.39 + - 4.44 + - 4.88 + - 5.03 + - 5.24 + - 5.06 + - 3.41 + - 2.79 + - 2.55 + - 3.01 + - 1.66 + - 1.61 + - 1.8 + - 1.65 + - 1.39 + - 4.0 + - 5.1 + - 3.78 + - 3.22 + - 4.3 + - 5.31 + - 5.28 + - 5.87 + - 5.83 + - 6.44 + - 6.81 + - 8.5 + - 10.53 + - 10.43 + - 10.37 + - 8.93 + - 8.14 + - 8.9 + - 8.94 + - 8.99 + - 8.3 + - 7.52 + - 7.3 + - 7.93 + - 7.44 + - 6.54 + - 6.01 + - 6.44 + - 5.66 + - 5.83 + - 6.6 + - 6.63 + - 6.53 + - 6.63 + - 5.99 + - 6.05 + - 6.06 + - 5.81 + - 5.31 + - 5.69 + - 4.69 + - 4.39 + - 4.83 + - 4.88 + - 5.59 + - 5.49 + - 4.98 + - 4.6 + - 4.39 + - 4.03 + - 3.61 + - 3.54 + - 3.61 + - 4.19 + - 4.02 + - 3.93 + - 4.1 + - 3.93 + - 2.75 + - 1.34 + - 1.2 + - 1.66 + - 1.94 + - 1.86 + - 1.64 + - 0.4 + - 0.71 + - 0.89 + - 0.1 + - 1.57 + - 2.2 + - 2.19 + - 2.76 + - 2.87 + - 4.05 + - 5.18 + - 5.74 + - 4.81 + - 5.61 + - 6.36 + - 6.87 + - 7.05 + - 6.7 + - 6.89 + - 6.65 + - 5.98 + - 5.52 + - 5.79 + - 5.85 + - 5.66 + - 5.11 + - 5.05 + - 5.84 + - 6.77 + - 6.81 + - 6.73 + - 7.1 + - 7.1 + - 7.6 + - 8.1 + - 8.41 + - 8.2 + - 8.06 + - 7.56 + - 7.27 + - 7.96 + - 7.99 + - 8.23 + - 8.43 + - 8.2 + - 7.69 + - 6.98 + - 7.0 + - 7.34 + - 7.59 + - 8.08 + - 7.79 + - 8.2 + - 8.81 + - 8.72 + - 8.51 + - 8.3 + - 8.21 + - 8.0 + - 7.71 + - 7.93 + - 7.98 + - 7.99 + - 8.02 + - 8.11 + - 8.23 + - 8.52 + - 8.61 + - 8.71 + - 8.74 + - 8.77 + - 8.67 + - 8.67 + - 8.46 + - 8.28 + - 8.35 + - 8.27 + - 8.03 + - 7.79 + - 7.94 + - 8.06 + - 8.2 + - 8.68 + - 8.86 + - 8.58 + - 8.81 + - 8.78 + - 8.73 + - 8.97 + - 9.18 + - 8.93 + - 9.0 + - 9.0 + - 8.41 + - 8.32 + - 8.65 + - 9.12 + - 8.52 + - 8.15 + - 8.13 + - 8.3 + - 8.08 + - 8.07 + - 7.63 + - 7.32 + - 7.05 + - 6.52 + - 6.08 + - 5.64 + - 5.27 + - 5.09 + - 5.66 + - 5.8 + - 6.31 + - 6.24 + - 5.46 + - 4.7 + - 4.27 + - 4.52 + - 4.59 + - 3.85 + - 4.3 + - 4.26 + - 3.45 + - 3.18 + - 4.46 + - 5.93 + - 6.4 + - 6.18 + - 6.08 + - 6.22 + - 7.34 + - 7.58 + - 7.74 + - 8.73 + - 8.92 + - 9.39 + - 8.54 + - 8.6 + - 9.08 + - 9.72 + - 9.88 + - 9.36 + - 9.44 + - 9.05 + - 9.17 + - 8.86 + - 8.9 + - 8.9 + - 8.75 + - 8.1 + - 7.62 + - 7.08 + - 7.0 + - 7.64 + - 8.0 + - 8.16 + - 8.28 + - 8.0 + - 8.42 + - 8.92 + - 8.78 + - 8.88 + - 9.36 + - 9.53 + - 9.81 + - 9.81 + - 10.04 + - 9.44 + - 9.59 + - 9.86 + - 10.4 + - 11.19 + - 11.42 + - 11.76 + - 11.88 + - 11.99 + - 11.64 + - 11.53 + - 12.18 + - 12.55 + - 12.66 + - 11.87 + - 12.53 + - 12.37 + - 12.25 + - 11.94 + - 11.74 + - 10.57 + - 10.43 + - 10.06 + - 9.28 + - 9.3 + - 9.68 + - 9.68 + - 10.25 + - 9.9 + - 10.63 + - 9.76 + - 8.86 + - 8.63 + - 7.34 + - 6.58 + - 6.31 + - 5.92 + - 5.76 + - 5.54 + - 5.43 + - 5.62 + - 5.92 + - 6.32 + - 6.59 + - 6.76 + - 7.02 + - 7.31 + - 7.71 + - 7.78 + - 7.86 + - 6.9 + - 6.94 + - 7.0 + - 6.93 + - 6.3 + - 4.81 + - 4.6 + - 5.52 + - 6.17 + - 6.15 + - 4.55 + - 5.25 + - 4.57 + - 4.68 + - 5.12 + - 4.95 + - 4.84 + - 4.98 + - 5.53 + - 5.83 + - 5.98 + - 6.08 + - 7.06 + - 7.96 + - 8.58 + - 9.03 + - 9.34 + - 9.14 + - 9.58 + - 10.08 + - 9.87 + - 9.47 + - 10.24 + - 10.98 + - 11.54 + - 11.93 + - 11.77 + - 11.61 + - 11.55 + - 11.22 + - 10.29 + - 10.69 + - 9.59 + - 9.4 + - 9.71 + - 9.32 + - 9.69 + - 10.03 + - 9.64 + - 9.43 + - 9.43 + - 8.99 + - 8.54 + - 7.88 + - 6.95 + - 6.31 + - 5.77 + - 5.42 + - 4.79 + - 4.75 + - 4.87 + - 4.27 + - 3.72 + - 1.94 + - 0.92 + - 0.5 + - 1.0 + - 0.91 + - 1.41 + - 0.28 + - 1.91 + - 2.22 + - 3.21 + - 4.2 + - 4.72 + - 6.32 + - 7.7 + - 8.67 + - 9.36 + - 8.77 + - 7.11 + - 6.44 + - 7.38 + - 7.22 + - 6.53 + - 5.79 + - 6.93 + - 7.2 + - 6.6 + - 7.11 + - 8.21 + - 8.0 + - 7.61 + - 7.3 + - 8.05 + - 8.0 + - 8.4 + - 8.0 + - 8.03 + - 8.5 + - 8.16 + - 8.55 + - 8.85 + - 9.61 + - 10.43 + - 10.53 + - 10.44 + - 10.22 + - 9.99 + - 10.11 + - 10.12 + - 10.23 + - 10.35 + - 10.57 + - 10.85 + - 10.95 + - 11.14 + - 11.28 + - 11.6 + - 11.99 + - 12.15 + - 12.01 + - 13.42 + - 13.55 + - 13.77 + - 12.92 + - 13.0 + - 12.6 + - 11.8 + - 11.22 + - 9.56 + - 10.15 + - 11.01 + - 10.97 + - 11.2 + - 11.49 + - 11.32 + - 11.72 + - 12.35 + - 12.99 + - 14.06 + - 13.73 + - 12.53 + - 14.86 + - 14.77 + - 14.52 + - 13.57 + - 13.09 + - 13.41 + - 13.28 + - 12.97 + - 12.82 + - 13.04 + - 13.23 + - 12.62 + - 12.16 + - 11.4 + - 10.16 + - 9.54 + - 9.08 + - 8.63 + - 8.79 + - 8.95 + - 9.75 + - 9.95 + - 10.19 + - 13.04 + - 10.0 + - 10.54 + - 11.42 + - 12.59 + - 12.76 + - 13.71 + - 14.17 + - 14.38 + - 13.73 + - 12.21 + - 11.58 + - 10.9 + - 9.9 + - 9.98 + - 8.9 + - 8.4 + - 7.71 + - 7.27 + - 7.61 + - 7.32 + - 7.02 + - 6.68 + - 6.72 + - 7.5 + - 8.68 + - 8.5 + - 8.31 + - 8.45 + - 8.91 + - 8.83 + - 9.83 + - 8.98 + - 9.43 + - 9.9 + - 10.69 + - 10.31 + - 10.6 + - 9.7 + - 9.6 + - 8.71 + - 8.81 + - 8.53 + - 12.15 + - 13.26 + - 13.82 + - 13.33 + - 13.15 + - 12.35 + - 11.31 + - 10.44 + - 10.92 + - 10.35 + - 7.7 + - 7.04 + - 7.46 + - 7.37 + - 7.16 + - 7.0 + - 7.1 + - 6.8 + - 8.03 + - 9.32 + - 12.18 + - 12.71 + - 13.47 + - 15.38 + - 15.98 + - 16.2 + - 16.84 + - 17.61 + - 19.82 + - 19.46 + - 18.42 + - 22.1 + - 27.16 + - 29.13 + - 25.46 + - 24.52 + - 22.71 + - 19.98 + - 18.71 + - 18.79 + - 18.41 + - 18.93 + - 17.82 + - 19.35 + - 17.82 + - 17.99 + - 16.25 + - 15.91 + - 15.06 + - 14.64 + - 14.09 + - 14.1 + - 13.42 + - 11.92 + - 11.37 + - 10.98 + - 9.27 + - 8.84 + - 9.19 + - 9.77 + - 11.47 + - 12.45 + - 12.3 + - 11.9 + - 10.88 + - 12.5 + - 11.87 + - 11.52 + - 10.89 + - 10.81 + - 9.45 + - 8.94 + - 8.82 + - 9.34 + - 9.5 + - 9.23 + - 9.48 + - 10.15 + - 9.37 + - 8.52 + - 7.6 + - 6.99 + - 6.49 + - 6.18 + - 5.66 + - 5.81 + - 6.11 + - 5.28 + - 4.7 + - 6.02 + - 5.39 + - 6.19 + - 9.14 + - 10.76 + - 9.13 + - 7.87 + - 6.83 + - 8.81 + - 11.8 + - 12.78 + - 12.12 + - 14.75 + - 13.89 + - 12.96 + - 11.08 + - 12.44 + - 13.64 + - 13.9 + - 15.1 + - 14.25 + - 14.84 + - 15.85 + - 15.7 + - 15.98 + - 15.92 + - 16.0 + - 16.49 + - 16.5 + - 16.76 + - 16.83 + - 16.39 + - 14.53 + - 14.34 + - 14.0 + - 12.54 + - 11.55 + - 10.85 + - 10.04 + - 10.51 + - 9.03 + - 8.0 + - 6.53 + - 6.08 + - 5.52 + - 3.71 + - 4.5 + - 4.62 + - 10.42 + - 13.68 + - 12.22 + - 9.97 + - 7.35 + - 5.8 + - 5.38 + - 6.07 + - 7.61 + - 8.14 + - 8.41 + - 10.18 + - 10.62 + - 11.65 + - 11.86 + - 12.3 + - 12.17 + - 12.13 + - 11.8 + - 11.99 + - 11.88 + - 11.21 + - 10.97 + - 11.45 + - 9.57 + - 9.02 + - 9.22 + - 9.3 + - 8.72 + - 8.06 + - 7.08 + - 5.69 + - 2.91 + - 0.42 + - 2.56 + - 5.26 + - 6.66 + - 8.07 + - 9.08 + - 10.0 + - 11.51 + - 13.27 + - 14.37 + - 15.43 + - 15.14 + - 14.59 + - 14.43 + - 13.5 + - 14.72 + - 13.57 + - 13.01 + - 13.2 + - 13.77 + - 16.36 + - 16.32 + - 16.56 + - 13.7 + - 13.2 + - 10.95 + - 11.88 + - 10.98 + - 10.93 + - 11.04 + - 10.21 + - 11.61 + - 10.35 + - 13.46 + - 13.6 + - 16.21 + - 15.04 + - 13.56 + - 12.75 + - 11.73 + - 12.1 + - 13.97 + - 13.9 + - 14.58 + - 14.85 + - 12.39 + - 13.06 + - 13.24 + - 13.77 + - 12.93 + - 13.87 + - 14.84 + - 14.02 + - 12.81 + - 12.5 + - 10.42 + - 9.36 + - 8.3 + - 8.59 + - 9.12 + - 8.27 + - 8.93 + - 8.28 + - 7.18 + - 7.57 + - 8.52 + - 9.41 + - 9.66 + - 9.87 + - 10.72 + - 10.44 + - 9.69 + - 12.94 + - 13.47 + - 13.73 + - 13.79 + - 12.46 + - 11.83 + - 11.24 + - 10.62 + - 9.39 + - 8.71 + - 7.34 + - 7.67 + - 6.15 + - 5.36 + - 6.02 + - 7.73 + - 8.87 + - 8.98 + - 9.1 + - 9.4 + - 9.67 + - 9.97 + - 10.33 + - 10.9 + - 11.11 + - 11.51 + - 11.92 + - 12.38 + - 12.62 + - 12.04 + - 12.2 + - 11.76 + - 10.75 + - 10.12 + - 9.14 + - 7.91 diff --git a/examples/29_wind_ard/ard_inputs/windIO-plant_turbine_NREL-5.0MW-126m-RWT.yaml b/examples/29_wind_ard/ard_inputs/windIO-plant_turbine_NREL-5.0MW-126m-RWT.yaml index 265279cc2..f8be3461b 100644 --- a/examples/29_wind_ard/ard_inputs/windIO-plant_turbine_NREL-5.0MW-126m-RWT.yaml +++ b/examples/29_wind_ard/ard_inputs/windIO-plant_turbine_NREL-5.0MW-126m-RWT.yaml @@ -1,212 +1,212 @@ -name: "NREL-5.0MW-126m-RWT" +name: NREL-5.0MW-126m-RWT performance: - rated_power: 5000000.0 - Cp_curve: - Cp_wind_speeds: - - 3 - - 4 - - 5 - - 6 - - 7 - - 7.1 - - 7.2 - - 7.3 - - 7.4 - - 7.5 - - 7.6 - - 7.7 - - 7.8 - - 7.9 - - 8 - - 9 - - 10 - - 10.1 - - 10.2 - - 10.3 - - 10.4 - - 10.5 - - 10.6 - - 10.7 - - 10.8 - - 10.9 - - 11 - - 11.1 - - 11.2 - - 11.3 - - 11.4 - - 11.5 - - 11.6 - - 11.7 - - 11.8 - - 11.9 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 - - 21 - - 22 - - 23 - - 24 - - 25 - Cp_values: - - 0.208546508 - - 0.385795061 - - 0.449038264 - - 0.474546985 - - 0.480994449 - - 0.481172749 - - 0.481235678 - - 0.481305875 - - 0.481238912 - - 0.481167356 - - 0.481081935 - - 0.481007003 - - 0.480880409 - - 0.480789285 - - 0.480737341 - - 0.480111543 - - 0.479218839 - - 0.479120347 - - 0.479022984 - - 0.478834971 - - 0.478597234 - - 0.478324162 - - 0.477994289 - - 0.477665338 - - 0.477253698 - - 0.476819542 - - 0.476368667 - - 0.475896732 - - 0.475404347 - - 0.474814698 - - 0.469087611 - - 0.456886723 - - 0.445156758 - - 0.433837552 - - 0.422902868 - - 0.412332387 - - 0.402110045 - - 0.316270768 - - 0.253224057 - - 0.205881042 - - 0.169640239 - - 0.141430529 - - 0.119144335 - - 0.101304591 - - 0.086856409 - - 0.075029591 - - 0.065256635 - - 0.057109143 - - 0.050263779 - - 0.044470536 - Ct_curve: - Ct_wind_speeds: - - 3 - - 4 - - 5 - - 6 - - 7 - - 7.1 - - 7.2 - - 7.3 - - 7.4 - - 7.5 - - 7.6 - - 7.7 - - 7.8 - - 7.9 - - 8 - - 9 - - 10 - - 10.1 - - 10.2 - - 10.3 - - 10.4 - - 10.5 - - 10.6 - - 10.7 - - 10.8 - - 10.9 - - 11 - - 11.1 - - 11.2 - - 11.3 - - 11.4 - - 11.5 - - 11.6 - - 11.7 - - 11.8 - - 11.9 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 - - 21 - - 22 - - 23 - - 24 - - 25 - Ct_values: - - 1.132034888 - - 0.999470963 - - 0.917697381 - - 0.860849503 - - 0.815371198 - - 0.811614904 - - 0.807939328 - - 0.80443352 - - 0.800993851 - - 0.79768116 - - 0.794529244 - - 0.791495834 - - 0.788560434 - - 0.787217182 - - 0.787127977 - - 0.785839257 - - 0.783812219 - - 0.783568108 - - 0.783328285 - - 0.781194418 - - 0.777292539 - - 0.773464375 - - 0.769690236 - - 0.766001924 - - 0.762348072 - - 0.758760824 - - 0.755242872 - - 0.751792927 - - 0.748434131 - - 0.745113997 - - 0.717806682 - - 0.672204789 - - 0.63831272 - - 0.610176496 - - 0.585456847 - - 0.563222111 - - 0.542912273 - - 0.399312061 - - 0.310517829 - - 0.248633226 - - 0.203543725 - - 0.169616419 - - 0.143478955 - - 0.122938861 - - 0.106515296 - - 0.093026095 - - 0.081648606 - - 0.072197368 - - 0.064388275 - - 0.057782745 + rated_power: 5000000.0 + Cp_curve: + Cp_wind_speeds: + - 3 + - 4 + - 5 + - 6 + - 7 + - 7.1 + - 7.2 + - 7.3 + - 7.4 + - 7.5 + - 7.6 + - 7.7 + - 7.8 + - 7.9 + - 8 + - 9 + - 10 + - 10.1 + - 10.2 + - 10.3 + - 10.4 + - 10.5 + - 10.6 + - 10.7 + - 10.8 + - 10.9 + - 11 + - 11.1 + - 11.2 + - 11.3 + - 11.4 + - 11.5 + - 11.6 + - 11.7 + - 11.8 + - 11.9 + - 12 + - 13 + - 14 + - 15 + - 16 + - 17 + - 18 + - 19 + - 20 + - 21 + - 22 + - 23 + - 24 + - 25 + Cp_values: + - 0.208546508 + - 0.385795061 + - 0.449038264 + - 0.474546985 + - 0.480994449 + - 0.481172749 + - 0.481235678 + - 0.481305875 + - 0.481238912 + - 0.481167356 + - 0.481081935 + - 0.481007003 + - 0.480880409 + - 0.480789285 + - 0.480737341 + - 0.480111543 + - 0.479218839 + - 0.479120347 + - 0.479022984 + - 0.478834971 + - 0.478597234 + - 0.478324162 + - 0.477994289 + - 0.477665338 + - 0.477253698 + - 0.476819542 + - 0.476368667 + - 0.475896732 + - 0.475404347 + - 0.474814698 + - 0.469087611 + - 0.456886723 + - 0.445156758 + - 0.433837552 + - 0.422902868 + - 0.412332387 + - 0.402110045 + - 0.316270768 + - 0.253224057 + - 0.205881042 + - 0.169640239 + - 0.141430529 + - 0.119144335 + - 0.101304591 + - 0.086856409 + - 0.075029591 + - 0.065256635 + - 0.057109143 + - 0.050263779 + - 0.044470536 + Ct_curve: + Ct_wind_speeds: + - 3 + - 4 + - 5 + - 6 + - 7 + - 7.1 + - 7.2 + - 7.3 + - 7.4 + - 7.5 + - 7.6 + - 7.7 + - 7.8 + - 7.9 + - 8 + - 9 + - 10 + - 10.1 + - 10.2 + - 10.3 + - 10.4 + - 10.5 + - 10.6 + - 10.7 + - 10.8 + - 10.9 + - 11 + - 11.1 + - 11.2 + - 11.3 + - 11.4 + - 11.5 + - 11.6 + - 11.7 + - 11.8 + - 11.9 + - 12 + - 13 + - 14 + - 15 + - 16 + - 17 + - 18 + - 19 + - 20 + - 21 + - 22 + - 23 + - 24 + - 25 + Ct_values: + - 1.132034888 + - 0.999470963 + - 0.917697381 + - 0.860849503 + - 0.815371198 + - 0.811614904 + - 0.807939328 + - 0.80443352 + - 0.800993851 + - 0.79768116 + - 0.794529244 + - 0.791495834 + - 0.788560434 + - 0.787217182 + - 0.787127977 + - 0.785839257 + - 0.783812219 + - 0.783568108 + - 0.783328285 + - 0.781194418 + - 0.777292539 + - 0.773464375 + - 0.769690236 + - 0.766001924 + - 0.762348072 + - 0.758760824 + - 0.755242872 + - 0.751792927 + - 0.748434131 + - 0.745113997 + - 0.717806682 + - 0.672204789 + - 0.63831272 + - 0.610176496 + - 0.585456847 + - 0.563222111 + - 0.542912273 + - 0.399312061 + - 0.310517829 + - 0.248633226 + - 0.203543725 + - 0.169616419 + - 0.143478955 + - 0.122938861 + - 0.106515296 + - 0.093026095 + - 0.081648606 + - 0.072197368 + - 0.064388275 + - 0.057782745 hub_height: 90.0 rotor_diameter: 125.88009368 TSR: 7.01754386 diff --git a/examples/29_wind_ard/ard_inputs/windio.yaml b/examples/29_wind_ard/ard_inputs/windio.yaml index 7aadb3635..2fc7a3d6b 100644 --- a/examples/29_wind_ard/ard_inputs/windio.yaml +++ b/examples/29_wind_ard/ard_inputs/windio.yaml @@ -3,46 +3,36 @@ site: name: Wind site boundaries: polygons: - - x: - - -1000.0 - - 1000.0 - - 1000.0 - - -1000.0 - y: - - -1000.0 - - -1000.0 - - 1000.0 - - 1000.0 + - x: [-1000.0, 1000.0, 1000.0, -1000.0] + y: [-1000.0, -1000.0, 1000.0, 1000.0] energy_resource: !include ./open-meteo-56.20N8.54E86m.yaml wind_farm: name: Small wind farm layouts: coordinates: x: - - -3000.0 - - -2250.0 - - -1500.0 - - -750.0 - - 0.0 - - 750.0 - - 1500.0 - - 2250.0 - - 3000.0 + - -3000.0 + - -2250.0 + - -1500.0 + - -750.0 + - 0.0 + - 750.0 + - 1500.0 + - 2250.0 + - 3000.0 y: - - -3000.0 - - -3000.0 - - -3000.0 - - -3000.0 - - -3000.0 - - -3000.0 - - -3000.0 - - -3000.0 - - -3000.0 + - -3000.0 + - -3000.0 + - -3000.0 + - -3000.0 + - -3000.0 + - -3000.0 + - -3000.0 + - -3000.0 + - -3000.0 turbine: !include windIO-plant_turbine_NREL-5.0MW-126m-RWT.yaml electrical_substations: - - electrical_substation: - coordinates: - x: - - 100.0 - y: - - 100.0 + - electrical_substation: + coordinates: + x: [100.0] + y: [100.0] diff --git a/examples/29_wind_ard/h2i_inputs/driver_config.yaml b/examples/29_wind_ard/h2i_inputs/driver_config.yaml index 30bd7749b..8733b3ec3 100644 --- a/examples/29_wind_ard/h2i_inputs/driver_config.yaml +++ b/examples/29_wind_ard/h2i_inputs/driver_config.yaml @@ -1,70 +1,64 @@ -name: "driver_config" -description: "This analysis runs a wind plant from Ard, a solar plant from pysam, and a simple battery" - +name: driver_config +description: This analysis runs a wind plant from Ard, a solar plant from pysam, and a simple battery general: folder_output: windard_pv_battery - driver: optimization: - flag: False + flag: false solver: COBYLA tol: 0.1 catol: 15000 max_iter: 100 rhobeg: 2 - debug_print: True - + debug_print: true design_variables: wind: spacing_primary: - flag: True - lower: 3.0 + flag: true + lower: 3.0 upper: 20.0 - units: + units: null spacing_secondary: - flag: True - lower: 3.0 + flag: true + lower: 3.0 upper: 20.0 - units: + units: null angle_orientation: - flag: True + flag: true lower: -180.0 - upper: 180.0 + upper: 180.0 units: deg angle_skew: - flag: True + flag: true lower: -75.0 upper: 180.0 units: deg x_substations: - flag: True + flag: true lower: -3000 upper: 3000 units: m scaler: 1E-2 y_substations: - flag: True + flag: true lower: -3000 upper: 3000 units: m scaler: 1E-2 - constraints: wind: boundary_distances: - flag: True - units: "km" + flag: true + units: km upper: 0.0 turbine_spacing: - flag: True - units: "km" + flag: true + units: km lower: 0.552 - objective: name: finance_subgroup_dispatched_electricity.LCOE - recorder: - flag: True - file: "wind_h2_opt.sql" - includes: ["*"] - excludes: ["*_resource_data"] + flag: true + file: wind_h2_opt.sql + includes: ['*'] + excludes: ['*_resource_data'] diff --git a/examples/29_wind_ard/h2i_inputs/plant_config.yaml b/examples/29_wind_ard/h2i_inputs/plant_config.yaml index 4fc03d140..b1caecada 100644 --- a/examples/29_wind_ard/h2i_inputs/plant_config.yaml +++ b/examples/29_wind_ard/h2i_inputs/plant_config.yaml @@ -1,6 +1,6 @@ -name: "plant_config" -description: "This plant is located in Denmark. The plant combines wind and solar generation with a battery to meet a constant load" - +name: plant_config +description: This plant is located in Denmark. The plant combines wind and solar generation with a battery to meet a constant + load sites: site: latitude: 56.22732285 @@ -8,60 +8,54 @@ sites: resources: # wind resource is handled directly in the Ard wrapper solar_resource: - resource_model: "OpenMeteoHistoricalSolarResource" + resource_model: OpenMeteoHistoricalSolarResource resource_parameters: resource_year: 2023 - resource_filename: "56.22732285_8.594398_2023_openmeteo_archive_solar_60min_utc_tz.csv" - - + resource_filename: 56.22732285_8.594398_2023_openmeteo_archive_solar_60min_utc_tz.csv plant: plant_life: 30 - -technology_interconnections: [ - ["wind", "combiner", "electricity", "cable"], #source_tech, dest_tech, transport_item, transport_type = connection - ["solar", "combiner", "electricity", "cable"], - ["combiner", "battery", "electricity", "cable"], +technology_interconnections: + - [wind, combiner, electricity, cable] + # source_tech, dest_tech, transport_item, transport_type = connection + - [solar, combiner, electricity, cable] + - [combiner, battery, electricity, cable] # etc -] - -resource_to_tech_connections: [ +resource_to_tech_connections: # The wind resource is handled strictly by Ard in this example, # so only the solar resource connection is included here - ['site.solar_resource', 'solar', 'solar_resource_data'], -] - + - [site.solar_resource, solar, solar_resource_data] finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2025 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for real analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for real analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2025 finance_subgroups: dispatched_electricity: - commodity: "electricity" - commodity_stream: "battery" - technologies: ["wind", "solar", "battery"] + commodity: electricity + commodity_stream: battery + technologies: [wind, solar, battery] produced_electricity: - commodity: "electricity" - commodity_stream: "combiner" - technologies: ["wind", "solar"] + commodity: electricity + commodity_stream: combiner + technologies: [wind, solar] diff --git a/examples/29_wind_ard/h2i_inputs/tech_config.yaml b/examples/29_wind_ard/h2i_inputs/tech_config.yaml index f45a944e0..3d810b84d 100644 --- a/examples/29_wind_ard/h2i_inputs/tech_config.yaml +++ b/examples/29_wind_ard/h2i_inputs/tech_config.yaml @@ -1,17 +1,17 @@ -name: "technology_config" -description: "This plant is located in Denmark. The plant combines wind and solar generation with a battery to meet a constant load" - +name: technology_config +description: This plant is located in Denmark. The plant combines wind and solar generation with a battery to meet a constant + load technologies: wind: performance_model: - model: "ArdWindPlantModel" + model: ArdWindPlantModel cost_model: - model: "ArdWindPlantModel" + model: ArdWindPlantModel model_inputs: performance_parameters: - ard_data_path: "./" + ard_data_path: ./ ard_system: - system: "onshore_batch" + system: onshore_batch modeling_options: windIO_plant: !include ../ard_inputs/windio.yaml layout: @@ -22,59 +22,59 @@ technologies: angle_orientation: 0.0 angle_skew: 0.0 aero: - return_turbine_output: False + return_turbine_output: false floris: peak_shaving_fraction: 0.2 peak_shaving_TI_threshold: 0.0 collection: max_turbines_per_string: 8 - solver_name: "highs" + solver_name: highs solver_options: time_limit: 60 mip_gap: 0.02 model_options: - topology: "branched" # "radial", "branched" - feeder_route: "segmented" - feeder_limit: "unlimited" + topology: branched # "radial", "branched" + feeder_route: segmented + feeder_limit: unlimited offshore: false floating: false costs: rated_power: 5000000.0 # W num_blades: 3 - rated_thrust_N: 823484.4216152605 # from NREL 5MW definition - gust_velocity_m_per_s: 70.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + rated_thrust_N: 823484.4216152605 # from NREL 5MW definition + gust_velocity_m_per_s: 70.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml blade_surface_area: 69.7974979 tower_mass: 620.4407337521 nacelle_mass: 101.98582836439 hub_mass: 8.38407517646 blade_mass: 14.56341339641 foundation_height: 0.0 - commissioning_cost_kW: 44.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml - decommissioning_cost_kW: 58.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + commissioning_cost_kW: 44.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + decommissioning_cost_kW: 58.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml trench_len_to_substation_km: 50.0 distance_to_interconnect_mi: 4.97096954 - interconnect_voltage_kV: 130.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + interconnect_voltage_kV: 130.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml tcc_per_kW: 1300.00 # (USD/kW) opex_per_kW: 44.00 # (USD/kWh) - analysis_options: + analysis_options: null cost_parameters: cost_year: 2024 solar: performance_model: - model: "PYSAMSolarPlantPerformanceModel" + model: PYSAMSolarPlantPerformanceModel cost_model: - model: "ATBUtilityPVCostModel" + model: ATBUtilityPVCostModel model_inputs: performance_parameters: - pv_capacity_kWdc: 50000 # 50 MW + pv_capacity_kWdc: 50000 # 50 MW dc_ac_ratio: 1.34 - create_model_from: "new" - tilt_angle_func: "none" + create_model_from: new + tilt_angle_func: none tilt: 0 pysam_options: SystemDesign: gcr: 0.3 - array_type: 0 # fixed, non-tracking + array_type: 0 # fixed, non-tracking bifaciality: 0.65 inv_eff: 96.0 losses: 14.6 @@ -89,22 +89,22 @@ technologies: cost_year: 2024 combiner: performance_model: - model: "GenericCombinerPerformanceModel" + model: GenericCombinerPerformanceModel model_inputs: performance_parameters: commodity: electricity commodity_rate_units: kW battery: performance_model: - model: "SimpleGenericStorage" + model: SimpleGenericStorage cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel control_strategy: - model: "DemandOpenLoopStorageController" + model: DemandOpenLoopStorageController model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW max_charge_rate: 95000.0 # kW/time step max_capacity: 190000.0 # kWh control_parameters: @@ -112,11 +112,11 @@ technologies: min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.25 # percent as decimal max_discharge_rate: 95000.0 # kW/time step - charge_efficiency: 0.985 # percent as decimal - discharge_efficiency: 0.985 # percent as decimal + charge_efficiency: 0.985 # percent as decimal + discharge_efficiency: 0.985 # percent as decimal demand_profile: 30000 cost_parameters: cost_year: 2022 - energy_capex: 72.54 # $/kWh - power_capex: 18.72 # $/kW - opex_fraction: 0.02 # percent of capex + energy_capex: 72.54 # $/kWh + power_capex: 18.72 # $/kW + opex_fraction: 0.02 # percent of capex diff --git a/examples/29_wind_ard/h2i_inputs/wind_pv_battery.yaml b/examples/29_wind_ard/h2i_inputs/wind_pv_battery.yaml index 6368c3e64..f77eaad78 100644 --- a/examples/29_wind_ard/h2i_inputs/wind_pv_battery.yaml +++ b/examples/29_wind_ard/h2i_inputs/wind_pv_battery.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate Config" - -system_summary: "This reference hybrid plant..." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate Config +system_summary: This reference hybrid plant... +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/30_pyomo_optimized_dispatch/driver_config.yaml b/examples/30_pyomo_optimized_dispatch/driver_config.yaml index 6589a3934..a79e4ce77 100644 --- a/examples/30_pyomo_optimized_dispatch/driver_config.yaml +++ b/examples/30_pyomo_optimized_dispatch/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "This analysis runs a hybrid plant to dispatch storage optimally to meet an electrical load." - +name: driver_config +description: This analysis runs a hybrid plant to dispatch storage optimally to meet an electrical load. general: folder_output: outputs diff --git a/examples/30_pyomo_optimized_dispatch/plant_config.yaml b/examples/30_pyomo_optimized_dispatch/plant_config.yaml index 76fa25a40..f5f4dbb86 100644 --- a/examples/30_pyomo_optimized_dispatch/plant_config.yaml +++ b/examples/30_pyomo_optimized_dispatch/plant_config.yaml @@ -1,74 +1,63 @@ -name: "plant_config" -description: "This plant is located in TX, USA..." - +name: plant_config +description: This plant is located in TX, USA... sites: site: latitude: 35.2018863 longitude: -101.945027 - resources: wind_resource: - resource_model: "WTKNRELDeveloperAPIWindResource" + resource_model: WTKNRELDeveloperAPIWindResource resource_parameters: resource_year: 2012 - plant: plant_life: 30 - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech -technology_interconnections: [ - ["wind", "battery", "electricity", "cable"], -] - +technology_interconnections: + - [wind, battery, electricity, cable] # array of arrays containing left-to-right technology, technology doing the dispatching # in this case, battery is connected to battery because there are controls rules for # the battery and battery is controlling the dispatching -tech_to_dispatch_connections: [ - ["wind", "battery"], - ["battery", "battery"], -] - -resource_to_tech_connections: [ +tech_to_dispatch_connections: + - [wind, battery] + - [battery, battery] +resource_to_tech_connections: # connect the wind resource to the wind technology - ['site.wind_resource', 'wind', 'wind_resource_data'], -] - + - [site.wind_resource, wind, wind_resource_data] finance_parameters: finance_groups: profast_model: - commodity: "electricity" - finance_model: "ProFastLCO" + commodity: electricity + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # p-tax https://www.house.mn.gov/hrd/issinfo/clsrates.aspx # insurance percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # p-tax https://www.house.mn.gov/hrd/issinfo/clsrates.aspx # insurance percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - 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 - depr_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: 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 + depr_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: - all_electricity: - commodity: "electricity" - finance_groups: ["profast_model"] - technologies: ["wind", "battery"] - + all_electricity: + commodity: electricity + finance_groups: [profast_model] + technologies: [wind, battery] # dispatched_electricity: # commodity: "electricity" diff --git a/examples/30_pyomo_optimized_dispatch/pyomo_optimized_dispatch.yaml b/examples/30_pyomo_optimized_dispatch/pyomo_optimized_dispatch.yaml index b68a2d872..1a536a2bf 100644 --- a/examples/30_pyomo_optimized_dispatch/pyomo_optimized_dispatch.yaml +++ b/examples/30_pyomo_optimized_dispatch/pyomo_optimized_dispatch.yaml @@ -1,7 +1,6 @@ -name: "H2Integrate_config" - -system_summary: "This hybrid plant contains wind and battery storage technologies. The system is designed to dispatch storage optimally meet a specific electrical load." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: This hybrid plant contains wind and battery storage technologies. The system is designed to dispatch storage + optimally meet a specific electrical load. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/30_pyomo_optimized_dispatch/tech_config.yaml b/examples/30_pyomo_optimized_dispatch/tech_config.yaml index 4c68ca309..82f6fd82c 100644 --- a/examples/30_pyomo_optimized_dispatch/tech_config.yaml +++ b/examples/30_pyomo_optimized_dispatch/tech_config.yaml @@ -1,17 +1,15 @@ -name: "technology_config" -description: "This hybrid plant produces electricity from wind and battery storage." - - +name: technology_config +description: This hybrid plant produces electricity from wind and battery storage. technologies: wind: performance_model: - model: "PYSAMWindPlantPerformanceModel" + model: PYSAMWindPlantPerformanceModel cost_model: - model: "ATBWindPlantCostModel" + model: ATBWindPlantCostModel dispatch_rule_set: - model: "PyomoDispatchGenericConverter" + model: PyomoDispatchGenericConverter resource: - type: "pysam_wind" + type: pysam_wind wind_speed: 9. model_inputs: performance_parameters: @@ -19,62 +17,61 @@ technologies: turbine_rating_kw: 8300 rotor_diameter: 196. hub_height: 130. - create_model_from: "default" - config_name: "WindPowerSingleOwner" + create_model_from: default + config_name: WindPowerSingleOwner pysam_options: !include pysam_options_8.3MW.yaml - run_recalculate_power_curve: False + run_recalculate_power_curve: false layout: - layout_mode: "basicgrid" + layout_mode: basicgrid layout_options: row_D_spacing: 10.0 turbine_D_spacing: 10.0 rotation_angle_deg: 0.0 row_phase_offset: 0.0 - layout_shape: "square" + layout_shape: square cost_parameters: capex_per_kW: 1500.0 opex_per_kW_per_year: 45 cost_year: 2019 dispatch_rule_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW battery: dispatch_rule_set: - model: "PyomoRuleStorageBaseclass" + model: PyomoRuleStorageBaseclass control_strategy: - model: "OptimizedDispatchController" + model: OptimizedDispatchController performance_model: - model: "PySAMBatteryPerformanceModel" + model: PySAMBatteryPerformanceModel cost_model: - model: "ATBBatteryCostModel" + model: ATBBatteryCostModel model_inputs: shared_parameters: - commodity: "electricity" + commodity: electricity max_charge_rate: 100000 max_capacity: 400000 - init_charge_percent: 0.5 # Initial SOC for the storage - max_charge_percent: 0.9 # Maximum SOC allowable for the storage technology - min_charge_percent: 0.1 # Minimum SOC allowable for the storage technology + init_charge_percent: 0.5 # Initial SOC for the storage + max_charge_percent: 0.9 # Maximum SOC allowable for the storage technology + min_charge_percent: 0.1 # Minimum SOC allowable for the storage technology system_commodity_interface_limit: 1e12 - charge_efficiency: 0.95 # Charge efficiency of the storage technology - discharge_efficiency: 0.95 # Discharge efficiency of the storage technology - commodity_rate_units: "kW" - # rated_demand: 100000 # in kW - + charge_efficiency: 0.95 # Charge efficiency of the storage technology + discharge_efficiency: 0.95 # Discharge efficiency of the storage technology + commodity_rate_units: kW + # rated_demand: 100000 # in kW performance_parameters: - system_model_source: "pysam" - chemistry: "LFPGraphite" + system_model_source: pysam + chemistry: LFPGraphite cost_parameters: cost_year: 2022 - energy_capex: 310 # $/kWh from 2024 ATB year 2025 - power_capex: 311 # $/kW from 2024 ATB year 2025 - opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB + energy_capex: 310 # $/kWh from 2024 ATB year 2025 + power_capex: 311 # $/kW from 2024 ATB year 2025 + opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB control_parameters: - tech_name: "battery" - cost_per_charge: 0.03 # in $/kW, cost to charge the storage (note that charging is incentivized) - cost_per_discharge: 0.05 # in $/kW, cost to discharge the storage - commodity_met_value: 0.1 # in $/kW, penalty for not meeting the desired load demand - cost_per_production: 0.0 # in $/kW, cost to use the incoming produced commodity (i.e. electricity from wind) - time_weighting_factor: 0.995 # This parameter discounts each subsequent time step incrementally in the future in the horizon window by this amount - n_control_window: 24 # in timesteps (currently hours), The length of time that the control is applied to in the rolling window optimization - n_horizon_window: 48 # in timesteps (currently hours), The horizon window the optimization is run over + tech_name: battery + cost_per_charge: 0.03 # in $/kW, cost to charge the storage (note that charging is incentivized) + cost_per_discharge: 0.05 # in $/kW, cost to discharge the storage + commodity_met_value: 0.1 # in $/kW, penalty for not meeting the desired load demand + cost_per_production: 0.0 # in $/kW, cost to use the incoming produced commodity (i.e. electricity from wind) + time_weighting_factor: 0.995 # This parameter discounts each subsequent time step incrementally in the future in the horizon window by this amount + n_control_window: 24 # in timesteps (currently hours), The length of time that the control is applied to in the rolling window optimization + n_horizon_window: 48 # in timesteps (currently hours), The horizon window the optimization is run over diff --git a/examples/31_iron_electrowinning/31_iron_electrowinning.yaml b/examples/31_iron_electrowinning/31_iron_electrowinning.yaml index e600534b0..74d4e671a 100644 --- a/examples/31_iron_electrowinning/31_iron_electrowinning.yaml +++ b/examples/31_iron_electrowinning/31_iron_electrowinning.yaml @@ -1,7 +1,5 @@ -name: "H2Integrate_config" - -system_summary: "An iron plant using processed ore pellets for electrowinning." - -driver_config: "driver_config.yaml" -technology_config: "tech_config.yaml" -plant_config: "plant_config.yaml" +name: H2Integrate_config +system_summary: An iron plant using processed ore pellets for electrowinning. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/31_iron_electrowinning/driver_config.yaml b/examples/31_iron_electrowinning/driver_config.yaml index c279b7f1b..1f8d10de9 100644 --- a/examples/31_iron_electrowinning/driver_config.yaml +++ b/examples/31_iron_electrowinning/driver_config.yaml @@ -1,5 +1,4 @@ -name: "driver_config" -description: "Simply setting up an outputs folder, nothing fancy" - +name: driver_config +description: Simply setting up an outputs folder, nothing fancy general: folder_output: outputs diff --git a/examples/31_iron_electrowinning/plant_config.yaml b/examples/31_iron_electrowinning/plant_config.yaml index bbdb91a22..274070b36 100644 --- a/examples/31_iron_electrowinning/plant_config.yaml +++ b/examples/31_iron_electrowinning/plant_config.yaml @@ -1,73 +1,73 @@ -name: "plant_config" -description: "Configures an iron electrowinning system." - +name: plant_config +description: Configures an iron electrowinning system. sites: ewin_site: latitude: 41.717 longitude: -88.398 - -technology_interconnections: [ +technology_interconnections: # Connect feedstocks to iron mine. # Requires `electricity` and `crude ore`. # Both are set up as generic feedstock components - see tech_config. - ["grid_feedstock","iron_mine","electricity","cable"], - ["mine_feedstock","iron_mine","crude_ore","crude_ore_transport"], + - [grid_feedstock, iron_mine, electricity, cable] + - [mine_feedstock, iron_mine, crude_ore, crude_ore_transport] # Connect feedstocks to iron electrowinning plant. # Requires `electricity` and `iron_ore`. # Electricity is set up as generic feedstock component, # but iron_ore is set up as an output of an iron_mine. - ["iron_mine","iron_plant","iron_ore","iron_transport"], - ["ewin_grid_feedstock","iron_plant","electricity","cable"], - ["ewin_NaOH_feedstock","iron_plant","NaOH","NaOH_transport"], - ["ewin_CaCl2_feedstock","iron_plant","CaCl2","CaCl2_transport"] -] - + - [iron_mine, iron_plant, iron_ore, iron_transport] + - [ewin_grid_feedstock, iron_plant, electricity, cable] + - [ewin_NaOH_feedstock, iron_plant, NaOH, NaOH_transport] + - [ewin_CaCl2_feedstock, iron_plant, CaCl2, CaCl2_transport] plant: plant_life: 30 finance_parameters: finance_groups: - finance_model: "ProFastLCO" + finance_model: ProFastLCO model_inputs: params: analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: cost_year_adjustment_inflation: 0.025 target_dollar_year: 2022 finance_subgroups: iron_ore: - commodity: "iron_ore" - commodity_stream: "iron_mine" - technologies: ["iron_mine", "grid_feedstock", "mine_feedstock"] + commodity: iron_ore + commodity_stream: iron_mine + technologies: [iron_mine, grid_feedstock, mine_feedstock] iron_ore_delivered: - commodity: "iron_ore" - commodity_stream: "iron_mine" - technologies: ["iron_mine", "grid_feedstock", "mine_feedstock", "iron_transport"] + commodity: iron_ore + commodity_stream: iron_mine + technologies: + - iron_mine + - grid_feedstock + - mine_feedstock + - iron_transport sponge_iron: - commodity: "sponge_iron" - commodity_stream: "iron_plant" + commodity: sponge_iron + commodity_stream: iron_plant technologies: - - "iron_mine" - - "grid_feedstock" - - "mine_feedstock" - - "iron_transport" - - "iron_plant" - - "ewin_grid_feedstock" - - "ewin_NaOH_feedstock" - - "ewin_CaCl2_feedstock" + - iron_mine + - grid_feedstock + - mine_feedstock + - iron_transport + - iron_plant + - ewin_grid_feedstock + - ewin_NaOH_feedstock + - ewin_CaCl2_feedstock diff --git a/examples/31_iron_electrowinning/tech_config.yaml b/examples/31_iron_electrowinning/tech_config.yaml index 9a90e832e..c1beda77b 100644 --- a/examples/31_iron_electrowinning/tech_config.yaml +++ b/examples/31_iron_electrowinning/tech_config.yaml @@ -1,34 +1,32 @@ -name: "technology_config" -description: "Set up technology for an iron mine/iron electrowinning system" - +name: technology_config +description: Set up technology for an iron mine/iron electrowinning system technologies: - grid_feedstock: #electricity feedstock for iron ore - comes from grid + grid_feedstock: # electricity feedstock for iron ore - comes from grid performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "MW" + commodity: electricity + commodity_rate_units: MW performance_parameters: rated_capacity: 30. cost_parameters: - commodity_amount_units: "MW*h" + commodity_amount_units: MW*h cost_year: 2022 - price: 58.02 #USD/MWh + price: 58.02 # USD/MWh annual_cost: 0. start_up_cost: 0. - - mine_feedstock: #crude iron ore feedstock - comes from the ground + mine_feedstock: # crude iron ore feedstock - comes from the ground performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "crude_ore" - commodity_rate_units: "t/h" + commodity: crude_ore + commodity_rate_units: t/h performance_parameters: rated_capacity: 2000. cost_parameters: @@ -38,73 +36,69 @@ technologies: start_up_cost: 0. crude_ore_transport: performance_model: - model: "GenericTransporterPerformanceModel" + model: GenericTransporterPerformanceModel model_inputs: performance_parameters: - commodity: "crude_ore" - commodity_rate_units: "t/h" - iron_mine: # iron mine - turns crude_iron into iron_ore + commodity: crude_ore + commodity_rate_units: t/h + iron_mine: # iron mine - turns crude_iron into iron_ore performance_model: - model: "MartinIronMinePerformanceComponent" + model: MartinIronMinePerformanceComponent cost_model: - model: "MartinIronMineCostComponent" + model: MartinIronMineCostComponent model_inputs: shared_parameters: - mine: "Northshore" - taconite_pellet_type: "drg" + mine: Northshore + taconite_pellet_type: drg max_ore_production_rate_tonnes_per_hr: 250 - - iron_transport: # ship iron_ore from iron_mine to iron_plant + iron_transport: # ship iron_ore from iron_mine to iron_plant performance_model: - model: "IronTransportPerformanceComponent" + model: IronTransportPerformanceComponent cost_model: - model: "IronTransportCostComponent" + model: IronTransportCostComponent model_inputs: performance_parameters: - find_closest_ship_site: False - shipment_site: "Chicago" + find_closest_ship_site: false + shipment_site: Chicago cost_parameters: transport_year: 2022 cost_year: 2022 - - ewin_grid_feedstock: #electricity feedstock for iron electrowinning + ewin_grid_feedstock: # electricity feedstock for iron electrowinning performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "electricity" - commodity_rate_units: "kW" + commodity: electricity + commodity_rate_units: kW performance_parameters: rated_capacity: 600000. cost_parameters: cost_year: 2022 - price: 0.05802 #USD/kW + price: 0.05802 # USD/kW annual_cost: 0. start_up_cost: 0. - - iron_plant: # iron plant - turns iron_ore into sponge_iron + iron_plant: # iron plant - turns iron_ore into sponge_iron performance_model: - model: "HumbertEwinPerformanceComponent" + model: HumbertEwinPerformanceComponent cost_model: - model: "HumbertStinnEwinCostComponent" + model: HumbertStinnEwinCostComponent model_inputs: shared_parameters: - electrolysis_type: "ahe" + electrolysis_type: ahe performance_parameters: ore_fe_wt_pct: 65 capacity_mw: 600 - ewin_NaOH_feedstock: performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "NaOH" - commodity_rate_units: "t/h" + commodity: NaOH + commodity_rate_units: t/h performance_parameters: rated_capacity: 195. cost_parameters: @@ -114,20 +108,20 @@ technologies: start_up_cost: 0. NaOH_transport: performance_model: - model: "GenericTransporterPerformanceModel" + model: GenericTransporterPerformanceModel model_inputs: performance_parameters: - commodity: "NaOH" - commodity_rate_units: "t/h" + commodity: NaOH + commodity_rate_units: t/h ewin_CaCl2_feedstock: performance_model: - model: "FeedstockPerformanceModel" + model: FeedstockPerformanceModel cost_model: - model: "FeedstockCostModel" + model: FeedstockCostModel model_inputs: shared_parameters: - commodity: "CaCl2" - commodity_rate_units: "t/h" + commodity: CaCl2 + commodity_rate_units: t/h performance_parameters: rated_capacity: 0. cost_parameters: @@ -137,8 +131,8 @@ technologies: start_up_cost: 0. CaCl2_transport: performance_model: - model: "GenericTransporterPerformanceModel" + model: GenericTransporterPerformanceModel model_inputs: performance_parameters: - commodity: "CaCl2" - commodity_rate_units: "t/h" + commodity: CaCl2 + commodity_rate_units: t/h diff --git a/h2integrate/control/test/inputs/tech_config.yaml b/h2integrate/control/test/inputs/tech_config.yaml index 903a01ebd..de88ea0c8 100644 --- a/h2integrate/control/test/inputs/tech_config.yaml +++ b/h2integrate/control/test/inputs/tech_config.yaml @@ -1,20 +1,19 @@ -name: "technology_config" -description: "This hybrid plant produces hydrogen" - +name: technology_config +description: This hybrid plant produces hydrogen technologies: h2_storage: control_strategy: - model: "PassThroughOpenLoopController" + model: PassThroughOpenLoopController performance_model: - model: "StorageAutoSizingModel" + model: StorageAutoSizingModel cost_model: - model: "LinedRockCavernStorageCostModel" + model: LinedRockCavernStorageCostModel model_inputs: shared_parameters: - commodity: "hydrogen" - commodity_rate_units: "kg/h" + commodity: hydrogen + commodity_rate_units: kg/h cost_parameters: # since the storage is being auto-sized by the performance model, # we set the sizing mode to 'auto' rather than defining the capacities # in the input file - sizing_mode: "auto" # set as "auto" so storage capacity doesnt have to be defined + sizing_mode: auto # set as "auto" so storage capacity doesnt have to be defined diff --git a/h2integrate/converters/iron/model_locations.yaml b/h2integrate/converters/iron/model_locations.yaml index 9a1b2d509..1136bfb00 100644 --- a/h2integrate/converters/iron/model_locations.yaml +++ b/h2integrate/converters/iron/model_locations.yaml @@ -1,53 +1,53 @@ performance: martin_ore: - compatible_tech: ['h2_dri','ng_dri'] - model: 'h2integrate.converters.iron.martin_ore.perf_model' - inputs: 'perf_inputs.csv' - coeffs: 'perf_coeffs.csv' + compatible_tech: [h2_dri, ng_dri] + model: h2integrate.converters.iron.martin_ore.perf_model + inputs: perf_inputs.csv + coeffs: perf_coeffs.csv rosner: - compatible_tech: ['h2_dri','ng_dri'] - model: 'h2integrate.converters.iron.rosner.perf_model' - inputs: 'perf_inputs.csv' - coeffs: 'perf_coeffs.csv' + compatible_tech: [h2_dri, ng_dri] + model: h2integrate.converters.iron.rosner.perf_model + inputs: perf_inputs.csv + coeffs: perf_coeffs.csv cost: martin_ore: - compatible_tech: ['h2_dri','ng_dri'] - model: 'h2integrate.converters.iron.martin_ore.cost_model' - inputs: 'cost_inputs.csv' - coeffs: 'cost_coeffs.csv' + compatible_tech: [h2_dri, ng_dri] + model: h2integrate.converters.iron.martin_ore.cost_model + inputs: cost_inputs.csv + coeffs: cost_coeffs.csv rosner: - compatible_tech: ['h2_dri','ng_dri'] - model: 'h2integrate.converters.iron.rosner.cost_model' - inputs: 'cost_inputs.csv' - coeffs: 'cost_coeffs.csv' + compatible_tech: [h2_dri, ng_dri] + model: h2integrate.converters.iron.rosner.cost_model + inputs: cost_inputs.csv + coeffs: cost_coeffs.csv stinn: - compatible_tech: ['blast_furnace', 'ng_dri', 'h2_dri', 'moe', 'ahe', 'mse'] - model: 'h2integrate.converters.iron.stinn.cost_model' - inputs: 'cost_inputs.csv' - coeffs: 'cost_coeffs.csv' + compatible_tech: [blast_furnace, ng_dri, h2_dri, moe, ahe, mse] + model: h2integrate.converters.iron.stinn.cost_model + inputs: cost_inputs.csv + coeffs: cost_coeffs.csv peters: - compatible_tech: ['blast_furnace', 'ng_dri', 'h2_dri', 'moe', 'ahe', 'mse'] - model: 'h2integrate.converters.iron.peters.opex_model' - inputs: 'cost_inputs.csv' - coeffs: 'cost_coeffs.csv' + compatible_tech: [blast_furnace, ng_dri, h2_dri, moe, ahe, mse] + model: h2integrate.converters.iron.peters.opex_model + inputs: cost_inputs.csv + coeffs: cost_coeffs.csv finance: martin_ore: - compatible_tech: ['h2_dri','ng_dri'] - model: 'h2integrate.converters.iron.martin_ore.finance_model' - inputs: 'cost_inputs.csv' - coeffs: 'cost_coeffs.csv' + compatible_tech: [h2_dri, ng_dri] + model: h2integrate.converters.iron.martin_ore.finance_model + inputs: cost_inputs.csv + coeffs: cost_coeffs.csv rosner: - compatible_tech: ['h2_dri','ng_dri'] - model: 'h2integrate.converters.iron.rosner.finance_model' - inputs: 'cost_inputs.csv' - coeffs: 'cost_coeffs.csv' + compatible_tech: [h2_dri, ng_dri] + model: h2integrate.converters.iron.rosner.finance_model + inputs: cost_inputs.csv + coeffs: cost_coeffs.csv rosner_ore: - compatible_tech: ['h2_dri','ng_dri'] - model: 'h2integrate.converters.iron.rosner_ore.finance_model' - inputs: 'cost_inputs.csv' - coeffs: 'cost_coeffs.csv' + compatible_tech: [h2_dri, ng_dri] + model: h2integrate.converters.iron.rosner_ore.finance_model + inputs: cost_inputs.csv + coeffs: cost_coeffs.csv rosner_override: - compatible_tech: ['h2_dri','ng_dri'] - model: 'h2integrate.converters.iron.rosner_override.finance_model' - inputs: 'cost_inputs.csv' - coeffs: 'cost_coeffs.csv' + compatible_tech: [h2_dri, ng_dri] + model: h2integrate.converters.iron.rosner_override.finance_model + inputs: cost_inputs.csv + coeffs: cost_coeffs.csv diff --git a/h2integrate/converters/iron/old_input/default_fin_config.yaml b/h2integrate/converters/iron/old_input/default_fin_config.yaml index f86eeea5c..6a87adbad 100644 --- a/h2integrate/converters/iron/old_input/default_fin_config.yaml +++ b/h2integrate/converters/iron/old_input/default_fin_config.yaml @@ -14,8 +14,8 @@ system_costs: om_batt_replacement_cost: 0 om_replacement_cost_escal: 0 revenue: - ppa_price_input: [0.01] # cents/kWh - ppa_escalation: 1 # % + ppa_price_input: [0.01] # cents/kWh + ppa_escalation: 1 # % system_use_lifetime_output: 0 financial_parameters: inflation_rate: 2.5 @@ -32,8 +32,8 @@ financial_parameters: sales_tax_rate_state: 0.0 admin_expense_percent_of_sales: 1.0 capital_gains_tax_rate: 15.0 - debt_type: "Revolving debt" - depreciation_method: "MACRS" + debt_type: Revolving debt + depreciation_method: MACRS depreciation_period: 5 cp_capacity_credit_percent: [0] degradation: [0] diff --git a/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml b/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml index 372226d1f..784da3f36 100644 --- a/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml +++ b/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml @@ -1,225 +1,221 @@ site: - mean_windspeed: False - depth: 0 #m + mean_windspeed: false + depth: 0 # m wind_layout: row_spacing: 5 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. - turbine_spacing: 5 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. - grid_angle: 0 # wind layout grid angle in degrees where 0 is north, increasing clockwise - row_phase_offset: 0 # wind layout offset of turbines along row from one row to the next + turbine_spacing: 5 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. + grid_angle: 0 # wind layout grid angle in degrees where 0 is north, increasing clockwise + row_phase_offset: 0 # wind layout offset of turbines along row from one row to the next project_parameters: project_lifetime: 30 - grid_connection: False # option, can be turned on or off - ppa_price: 0.025 # $/kWh based on 2022 land based wind market report (ERCOT area ppa prices) https://www.energy.gov/sites/default/files/2022-08/land_based_wind_market_report_2202.pdf - hybrid_electricity_estimated_cf: 0.492 #should equal 1 if grid_connection = True + grid_connection: false # option, can be turned on or off + ppa_price: 0.025 # $/kWh based on 2022 land based wind market report (ERCOT area ppa prices) https://www.energy.gov/sites/default/files/2022-08/land_based_wind_market_report_2202.pdf + hybrid_electricity_estimated_cf: 0.492 # should equal 1 if grid_connection = True financial_analysis_start_year: 2032 - cost_year: 2022 # to match ATB - installation_time: 36 # months + cost_year: 2022 # to match ATB + installation_time: 36 # months finance_parameters: - costing_general_inflation: 0.025 # used to adjust modeled costs to cost_year - inflation_rate: 0 # based on 2022 ATB - discount_rate: 0.0948 # nominal return based on 2022 ATB basline workbook + costing_general_inflation: 0.025 # used to adjust modeled costs to cost_year + inflation_rate: 0 # based on 2022 ATB + discount_rate: 0.0948 # nominal return based on 2022 ATB basline workbook debt_equity_ratio: 1.72 - property_tax: 0.01 # percent of CAPEX # combined with property insurance then between H2A and H2FAST defaults - property_insurance: 0.005 # percent of CAPEX # combined with property tax then between H2A and H2FAST defaults - total_income_tax_rate: 0.2574 # 0.257 tax rate in 2022 atb baseline workbook # current federal income tax rate, but proposed 2023 rate is 0.28. No state income tax in Texas - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.0 #Verify that a different rate shouldn't be used # minimum total sales tax rate in Corpus Christi https://www.cctexas.com/detail/corpus-christi-type-fund-purpose - does this apply to H2? + 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 + 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 + 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 + 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' + expected_plant_cost: none electrolyzer: - size_mode: "normal" - rating: 1160 # MW + size_mode: normal + rating: 1160 # MW cluster_rating_MW: 40 - eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 77600 #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW - electrolyzer_capex: 1600 # $/kW - time_between_replacement: 62320 # 62320 based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years, 40000 based on current est (see unpublished report), 80000 hours based on OSW atb_year = 2025 - replacement_cost_percent: 0.15 # percent of capex - H2A default case - cost_model: "singlitico2021" # "basic" is a basic cost model based on H2a and HFTO program record for PEM electrolysis. "singlitico2021" uses cost estimates from that paper + 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 + 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 + 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 + outlet_pressure: 10 # bar - from example in code from Jamie # TODO check this value h2_storage: size_capacity_from_demand: - flag: True # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 0 #8.57267 # from `hydrogen_storage_duration_hr` = 205.74419987482239 [days] how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) - -policy_parameters: # these should be adjusted for inflation prior to application - order of operations: rate in 1992 $, -#then prevailing wage multiplier if applicable, then inflation - option1: # base # no policy included ---> see files/task1/regulation and policy revue/ page 4 of 13 middle - read this + flag: true # If True, then storage is sized to provide steady-state storage + capacity_from_max_on_turbine_storage: false # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. + type: lined_rock_cavern # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] + days: 0 # 8.57267 # from `hydrogen_storage_duration_hr` = 205.74419987482239 [days] how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) +policy_parameters: # these should be adjusted for inflation prior to application - order of operations: rate in 1992 $, +# then prevailing wage multiplier if applicable, then inflation + option1: # base # no policy included ---> see files/task1/regulation and policy revue/ page 4 of 13 middle - read this # and look at assumptions electricity_itc: 0 electricity_ptc: 0 h2_ptc: 0 h2_storage_itc: 0 - option2: # base credit levels with H2 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] - + electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] + transportation: pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] + pv_location: platform # can be one of ["none", "onshore", "platform"] + battery_location: platform # can be one of ["none", "onshore", "platform"] iron_ore: site: lat: 47.29415278 lon: -91.25649444 - resource_dir: '/../data_library/weather/' - name: 'Northshore' - product_selection: 'drg_taconite_pellets' #'drg_taconite_pellets' # 'std_taconite_pellets' # + resource_dir: /../data_library/weather/ + name: Northshore + product_selection: drg_taconite_pellets #'drg_taconite_pellets' # 'std_taconite_pellets' # performance_model: - name: 'martin_ore' # 'martin_ore' - refit_coeffs: False + name: martin_ore # 'martin_ore' + refit_coeffs: false cost_model: - name: 'martin_ore' # 'martin_ore' - refit_coeffs: False + name: martin_ore # 'martin_ore' + refit_coeffs: false finance_model: - name: 'martin_ore' # 'martin_ore', 'rosner_ore' + name: martin_ore # 'martin_ore', 'rosner_ore' performance: input_capacity_factor_estimate: 0.9 costs: @@ -231,29 +227,29 @@ iron_ore: gen_inflation: 0.025 # Additional parameters passed to ProFAST financial_assumptions: - "total income tax rate": 0.2574 - "capital gains tax rate": 0.15 - "leverage after tax nominal discount rate": 0.10893 - "debt equity ratio of initial financing": 0.624788 - "debt interest rate": 0.050049 + total income tax rate: 0.2574 + capital gains tax rate: 0.15 + leverage after tax nominal discount rate: 0.10893 + debt equity ratio of initial financing: 0.624788 + debt interest rate: 0.050049 iron_win: site: lat: 41.717 lon: -88.398 - resource_dir: '/../data_library/weather/' - name: 'IL' - product_selection: 'ng_dri' # 'h2_dri' # 'ng_dri' + resource_dir: /../data_library/weather/ + name: IL + product_selection: ng_dri # 'h2_dri' # 'ng_dri' performance_model: - name: 'rosner' # 'rosner' - refit_coeffs: False + name: rosner # 'rosner' + refit_coeffs: false cost_model: - name: 'rosner' # 'rosner' - refit_coeffs: False + name: rosner # 'rosner' + refit_coeffs: false finance_model: - name: 'rosner' # 'rosner', 'rosner_override' + name: rosner # 'rosner', 'rosner_override' performance: plant_capacity_mtpy: 1418095 - capacity_denominator: 'iron' # steel + capacity_denominator: iron # steel costs: operational_year: 2035 installation_years: 3 @@ -263,26 +259,26 @@ iron_win: gen_inflation: 0.025 # Additional parameters passed to ProFAST financial_assumptions: - "total income tax rate": 0.2574 - "capital gains tax rate": 0.15 - "leverage after tax nominal discount rate": 0.10893 - "debt equity ratio of initial financing": 0.624788 - "debt interest rate": 0.050049 + total income tax rate: 0.2574 + capital gains tax rate: 0.15 + leverage after tax nominal discount rate: 0.10893 + debt equity ratio of initial financing: 0.624788 + debt interest rate: 0.050049 iron_post: site: lat: 41.717 lon: -88.398 - resource_dir: '/../data_library/weather/' - name: 'IL' - product_selection: 'ng_eaf' #''h2_eaf' # 'ng_eaf' + resource_dir: /../data_library/weather/ + name: IL + product_selection: ng_eaf #''h2_eaf' # 'ng_eaf' performance_model: - name: 'rosner' # 'rosner' - refit_coeffs: False + name: rosner # 'rosner' + refit_coeffs: false cost_model: - name: 'rosner' # 'rosner' - refit_coeffs: False + name: rosner # 'rosner' + refit_coeffs: false finance_model: - name: 'rosner' # 'rosner', 'rosner_override' + name: rosner # 'rosner', 'rosner_override' performance: plant_capacity_mtpy: 1000000 costs: @@ -294,106 +290,104 @@ iron_post: gen_inflation: 0.025 # Additional parameters passed to ProFAST financial_assumptions: - "total income tax rate": 0.2574 - "capital gains tax rate": 0.15 - "leverage after tax nominal discount rate": 0.10893 - "debt equity ratio of initial financing": 0.624788 - "debt interest rate": 0.050049 - + total income tax rate: 0.2574 + capital gains tax rate: 0.15 + leverage after tax nominal discount rate: 0.10893 + debt equity ratio of initial financing: 0.624788 + debt interest rate: 0.050049 lca_config: - run_lca: True #True - electrolyzer_type: pem #alkaline, soec - feedstock_water_type: ground #desal, surface - cambium: #cambium API argument, see cambium_data.py for additional argument options - project_uuid: '0f92fe57-3365-428a-8fe8-0afc326b3b43' - scenario: 'Mid-case with 100% decarbonization by 2035' - location_type: 'GEA Regions 2023' - time_type: 'hourly' - + run_lca: true # True + electrolyzer_type: pem # alkaline, soec + feedstock_water_type: ground # desal, surface + cambium: # cambium API argument, see cambium_data.py for additional argument options + project_uuid: 0f92fe57-3365-428a-8fe8-0afc326b3b43 + scenario: Mid-case with 100% decarbonization by 2035 + location_type: GEA Regions 2023 + time_type: hourly opt_options: - opt_flag: True + opt_flag: true general: - folder_output: "output" - fname_output: "optimization_log" + folder_output: output + fname_output: optimization_log design_variables: electrolyzer_rating_kw: - flag: True + flag: true lower: 1000.0 upper: 2000000.0 - units: "kW" + units: kW pv_capacity_kw: - flag: False + flag: false lower: 1000.0 upper: 2000000.0 - units: "kW" + units: kW wave_capacity_kw: - flag: False + flag: false lower: 1000.0 upper: 2000000.0 - units: "kW*h" + units: kW*h battery_capacity_kw: - flag: False + flag: false lower: 1000.0 upper: 2000000.0 - units: "kW" + units: kW battery_capacity_kwh: - flag: False + flag: false lower: 1000.0 upper: 2000000.0 - units: "kW*h" + units: kW*h turbine_x: - flag: False + flag: false lower: 0.0 upper: 20000.0 - units: "m" + units: m turbine_y: - flag: False + flag: false lower: 0.0 upper: 20000.0 - units: "m" + units: m constraints: turbine_spacing: - flag: False + flag: false lower: 0.0 boundary_distance: - flag: False + flag: false lower: 0.0 pv_to_platform_area_ratio: - flag: False - upper: 1.0 # relative size of solar pv area to platform area + flag: false + upper: 1.0 # relative size of solar pv area to platform area user: {} - merit_figure: "lcoi" + merit_figure: lcoi merit_figure_user: - name: "lcoi" - max_flag: False - ref: 1.0 # value of objective that scales to 1.0 + name: lcoi + max_flag: false + ref: 1.0 # value of objective that scales to 1.0 driver: optimization: - flag: True - solver: "SNOPT" + flag: true + solver: SNOPT tol: 1E-6 - gradient_method: "snopt_fd" # can be one of ['pyopt_fd', 'openmdao', 'snopt_fd'] + 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 + # time_limit: 10 # (sec) optional # "hist_file_name: "snopt_history.txt", # optional - verify_level: 0 # 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 + 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) + 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] + 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 + debug_print: false step_size_study: - flag: False + flag: false recorder: - flag: True - file_name: "record.sql" - includes: False + flag: true + file_name: record.sql + includes: false diff --git a/h2integrate/converters/iron/old_input/hopp_config.yaml b/h2integrate/converters/iron/old_input/hopp_config.yaml index 687d23cc0..3e9621a21 100644 --- a/h2integrate/converters/iron/old_input/hopp_config.yaml +++ b/h2integrate/converters/iron/old_input/hopp_config.yaml @@ -1,4 +1,4 @@ -site: #!include flatirons_site.yaml +site: #!include flatirons_site.yaml data: lat: 47.5233 lon: -92.5366 @@ -16,18 +16,16 @@ site: #!include flatirons_site.yaml - [0.0, 20000.0] - [20000.0, 20000.0] - [20000.0, 0.0] - solar_resource_file: "../../../../resource_files/solar/47.5233_-92.5366_psmv3_60_2013.csv" - wind_resource_file: "../../../../resource_files/wind/47.5233_-92.5366_windtoolkit_2013_60min_100m_120m.srw" - wave_resource_file: "" - grid_resource_file: "" + solar_resource_file: ../../../../resource_files/solar/47.5233_-92.5366_psmv3_60_2013.csv + wind_resource_file: ../../../../resource_files/wind/47.5233_-92.5366_windtoolkit_2013_60min_100m_120m.srw + wave_resource_file: '' + grid_resource_file: '' hub_height: 115.0 capacity_hours: [] solar: true wind: true wave: false - wind_resource_origin: "WTK" - - + wind_resource_origin: WTK technologies: wind: num_turbines: 216 @@ -39,7 +37,32 @@ technologies: hub_height: 115.0 pv: system_capacity_kw: 100000 - dc_degradation: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + 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 @@ -49,25 +72,24 @@ technologies: initial_SOC: 90.0 fin_model: !include default_fin_config.yaml grid: - interconnect_kw: 2000000 # Set higher than rated generation capacity + 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 + 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 + cost_info: # Costs from GS Manuscript Supplemental Table S11 + wind_installed_cost_mw: 1098000 # (2020USD) + solar_installed_cost_mw: 991000 # (2020USD) + storage_installed_cost_mwh: 158000 # (2020USD) + storage_installed_cost_mw: 212000 # (2020USD) + wind_om_per_kw: 25.8 # (2020USD) + pv_om_per_kw: 17.2 # (2020USD) + battery_om_per_kw: 9.25 # (2020USD) based on 0.025 percent of battery capex with a 100MW 1hr battery diff --git a/h2integrate/converters/iron/test/input/default_fin_config.yaml b/h2integrate/converters/iron/test/input/default_fin_config.yaml index f86eeea5c..6a87adbad 100644 --- a/h2integrate/converters/iron/test/input/default_fin_config.yaml +++ b/h2integrate/converters/iron/test/input/default_fin_config.yaml @@ -14,8 +14,8 @@ system_costs: om_batt_replacement_cost: 0 om_replacement_cost_escal: 0 revenue: - ppa_price_input: [0.01] # cents/kWh - ppa_escalation: 1 # % + ppa_price_input: [0.01] # cents/kWh + ppa_escalation: 1 # % system_use_lifetime_output: 0 financial_parameters: inflation_rate: 2.5 @@ -32,8 +32,8 @@ financial_parameters: sales_tax_rate_state: 0.0 admin_expense_percent_of_sales: 1.0 capital_gains_tax_rate: 15.0 - debt_type: "Revolving debt" - depreciation_method: "MACRS" + debt_type: Revolving debt + depreciation_method: MACRS depreciation_period: 5 cp_capacity_credit_percent: [0] degradation: [0] diff --git a/h2integrate/converters/iron/test/input/h2integrate_config_modular.yaml b/h2integrate/converters/iron/test/input/h2integrate_config_modular.yaml index 6542880d5..d0f6ef653 100644 --- a/h2integrate/converters/iron/test/input/h2integrate_config_modular.yaml +++ b/h2integrate/converters/iron/test/input/h2integrate_config_modular.yaml @@ -1,225 +1,221 @@ site: - mean_windspeed: False - depth: 0 #m + mean_windspeed: false + depth: 0 # m wind_layout: row_spacing: 5 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. - turbine_spacing: 5 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. - grid_angle: 0 # wind layout grid angle in degrees where 0 is north, increasing clockwise - row_phase_offset: 0 # wind layout offset of turbines along row from one row to the next + turbine_spacing: 5 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. + grid_angle: 0 # wind layout grid angle in degrees where 0 is north, increasing clockwise + row_phase_offset: 0 # wind layout offset of turbines along row from one row to the next project_parameters: project_lifetime: 30 - grid_connection: False # option, can be turned on or off - ppa_price: 0.025 # $/kWh based on 2022 land based wind market report (ERCOT area ppa prices) https://www.energy.gov/sites/default/files/2022-08/land_based_wind_market_report_2202.pdf - hybrid_electricity_estimated_cf: 0.492 #should equal 1 if grid_connection = True + grid_connection: false # option, can be turned on or off + ppa_price: 0.025 # $/kWh based on 2022 land based wind market report (ERCOT area ppa prices) https://www.energy.gov/sites/default/files/2022-08/land_based_wind_market_report_2202.pdf + hybrid_electricity_estimated_cf: 0.492 # should equal 1 if grid_connection = True financial_analysis_start_year: 2032 - cost_year: 2022 # to match ATB - installation_time: 36 # months + cost_year: 2022 # to match ATB + installation_time: 36 # months finance_parameters: - costing_general_inflation: 0.025 # used to adjust modeled costs to cost_year - inflation_rate: 0 # based on 2022 ATB - discount_rate: 0.0948 # nominal return based on 2022 ATB basline workbook + costing_general_inflation: 0.025 # used to adjust modeled costs to cost_year + inflation_rate: 0 # based on 2022 ATB + discount_rate: 0.0948 # nominal return based on 2022 ATB basline workbook debt_equity_ratio: 1.72 - property_tax: 0.01 # percent of CAPEX # combined with property insurance then between H2A and H2FAST defaults - property_insurance: 0.005 # percent of CAPEX # combined with property tax then between H2A and H2FAST defaults - total_income_tax_rate: 0.2574 # 0.257 tax rate in 2022 atb baseline workbook # current federal income tax rate, but proposed 2023 rate is 0.28. No state income tax in Texas - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.0 #Verify that a different rate shouldn't be used # minimum total sales tax rate in Corpus Christi https://www.cctexas.com/detail/corpus-christi-type-fund-purpose - does this apply to H2? + 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 + 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 + 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 + 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' + expected_plant_cost: none electrolyzer: - size_mode: "normal" - rating: 1160 # MW + size_mode: normal + rating: 1160 # MW cluster_rating_MW: 40 - eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 77600 #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW - electrolyzer_capex: 1600 # $/kW - time_between_replacement: 62320 # 62320 based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years, 40000 based on current est (see unpublished report), 80000 hours based on OSW atb_year = 2025 - replacement_cost_percent: 0.15 # percent of capex - H2A default case - cost_model: "singlitico2021" # "basic" is a basic cost model based on H2a and HFTO program record for PEM electrolysis. "singlitico2021" uses cost estimates from that paper + 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 + 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 + 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 + outlet_pressure: 10 # bar - from example in code from Jamie # TODO check this value h2_storage: size_capacity_from_demand: - flag: True # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 0 #8.57267 # from `hydrogen_storage_duration_hr` = 205.74419987482239 [days] how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) - -policy_parameters: # these should be adjusted for inflation prior to application - order of operations: rate in 1992 $, -#then prevailing wage multiplier if applicable, then inflation - option1: # base # no policy included ---> see files/task1/regulation and policy revue/ page 4 of 13 middle - read this + flag: true # If True, then storage is sized to provide steady-state storage + capacity_from_max_on_turbine_storage: false # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. + type: lined_rock_cavern # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] + days: 0 # 8.57267 # from `hydrogen_storage_duration_hr` = 205.74419987482239 [days] how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) +policy_parameters: # these should be adjusted for inflation prior to application - order of operations: rate in 1992 $, +# then prevailing wage multiplier if applicable, then inflation + option1: # base # no policy included ---> see files/task1/regulation and policy revue/ page 4 of 13 middle - read this # and look at assumptions electricity_itc: 0 electricity_ptc: 0 h2_ptc: 0 h2_storage_itc: 0 - option2: # base credit levels with H2 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] + 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"] - + electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] + transportation: pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] + pv_location: platform # can be one of ["none", "onshore", "platform"] + battery_location: platform # can be one of ["none", "onshore", "platform"] iron_ore: site: lat: 47.29415278 lon: -91.25649444 - resource_dir: '/../data_library/weather/' - name: 'Northshore' - product_selection: 'drg_taconite_pellets' #'drg_taconite_pellets' # 'std_taconite_pellets' # + resource_dir: /../data_library/weather/ + name: Northshore + product_selection: drg_taconite_pellets #'drg_taconite_pellets' # 'std_taconite_pellets' # performance_model: - name: 'martin_ore' # 'martin_ore' - refit_coeffs: False + name: martin_ore # 'martin_ore' + refit_coeffs: false cost_model: - name: 'martin_ore' # 'martin_ore' - refit_coeffs: False + name: martin_ore # 'martin_ore' + refit_coeffs: false finance_model: - name: 'martin_ore' # 'martin_ore', 'rosner_ore' + name: martin_ore # 'martin_ore', 'rosner_ore' performance: input_capacity_factor_estimate: 0.9 costs: @@ -231,29 +227,29 @@ iron_ore: gen_inflation: 0.025 # Additional parameters passed to ProFAST financial_assumptions: - "total income tax rate": 0.2574 - "capital gains tax rate": 0.15 - "leverage after tax nominal discount rate": 0.10893 - "debt equity ratio of initial financing": 0.624788 - "debt interest rate": 0.050049 + total income tax rate: 0.2574 + capital gains tax rate: 0.15 + leverage after tax nominal discount rate: 0.10893 + debt equity ratio of initial financing: 0.624788 + debt interest rate: 0.050049 iron_win: site: lat: 41 lon: -78 - resource_dir: '/../data_library/weather/' - name: 'Mid WI' - product_selection: 'ng_dri' # 'h2_dri' # 'ng_dri' + resource_dir: /../data_library/weather/ + name: Mid WI + product_selection: ng_dri # 'h2_dri' # 'ng_dri' performance_model: - name: 'rosner' # 'rosner' - refit_coeffs: False + name: rosner # 'rosner' + refit_coeffs: false cost_model: - name: 'rosner' # 'rosner' - refit_coeffs: False + name: rosner # 'rosner' + refit_coeffs: false finance_model: - name: 'rosner' # 'rosner', 'rosner_override' + name: rosner # 'rosner', 'rosner_override' performance: plant_capacity_mtpy: 1418095 - capacity_denominator: 'iron' # steel + capacity_denominator: iron # steel costs: operational_year: 2035 installation_years: 3 @@ -263,26 +259,26 @@ iron_win: gen_inflation: 0.025 # Additional parameters passed to ProFAST financial_assumptions: - "total income tax rate": 0.2574 - "capital gains tax rate": 0.15 - "leverage after tax nominal discount rate": 0.10893 - "debt equity ratio of initial financing": 0.624788 - "debt interest rate": 0.050049 + total income tax rate: 0.2574 + capital gains tax rate: 0.15 + leverage after tax nominal discount rate: 0.10893 + debt equity ratio of initial financing: 0.624788 + debt interest rate: 0.050049 iron_post: site: lat: 41 lon: -84 - resource_dir: '/../data_library/weather/' - name: 'Mid WI' - product_selection: 'ng_eaf' #''h2_eaf' # 'ng_eaf' + resource_dir: /../data_library/weather/ + name: Mid WI + product_selection: ng_eaf #''h2_eaf' # 'ng_eaf' performance_model: - name: 'rosner' # 'rosner' - refit_coeffs: False + name: rosner # 'rosner' + refit_coeffs: false cost_model: - name: 'rosner' # 'rosner' - refit_coeffs: False + name: rosner # 'rosner' + refit_coeffs: false finance_model: - name: 'rosner' # 'rosner', 'rosner_override' + name: rosner # 'rosner', 'rosner_override' performance: plant_capacity_mtpy: 1000000 costs: @@ -294,106 +290,104 @@ iron_post: gen_inflation: 0.025 # Additional parameters passed to ProFAST financial_assumptions: - "total income tax rate": 0.2574 - "capital gains tax rate": 0.15 - "leverage after tax nominal discount rate": 0.10893 - "debt equity ratio of initial financing": 0.624788 - "debt interest rate": 0.050049 - + total income tax rate: 0.2574 + capital gains tax rate: 0.15 + leverage after tax nominal discount rate: 0.10893 + debt equity ratio of initial financing: 0.624788 + debt interest rate: 0.050049 lca_config: - run_lca: True #True - electrolyzer_type: pem #alkaline, soec - feedstock_water_type: ground #desal, surface - cambium: #cambium API argument, see cambium_data.py for additional argument options - project_uuid: '0f92fe57-3365-428a-8fe8-0afc326b3b43' - scenario: 'Mid-case with 100% decarbonization by 2035' - location_type: 'GEA Regions 2023' - time_type: 'hourly' - + run_lca: true # True + electrolyzer_type: pem # alkaline, soec + feedstock_water_type: ground # desal, surface + cambium: # cambium API argument, see cambium_data.py for additional argument options + project_uuid: 0f92fe57-3365-428a-8fe8-0afc326b3b43 + scenario: Mid-case with 100% decarbonization by 2035 + location_type: GEA Regions 2023 + time_type: hourly opt_options: - opt_flag: True + opt_flag: true general: - folder_output: "output" - fname_output: "optimization_log" + folder_output: output + fname_output: optimization_log design_variables: electrolyzer_rating_kw: - flag: True + flag: true lower: 1000.0 upper: 2000000.0 - units: "kW" + units: kW pv_capacity_kw: - flag: False + flag: false lower: 1000.0 upper: 2000000.0 - units: "kW" + units: kW wave_capacity_kw: - flag: False + flag: false lower: 1000.0 upper: 2000000.0 - units: "kW*h" + units: kW*h battery_capacity_kw: - flag: False + flag: false lower: 1000.0 upper: 2000000.0 - units: "kW" + units: kW battery_capacity_kwh: - flag: False + flag: false lower: 1000.0 upper: 2000000.0 - units: "kW*h" + units: kW*h turbine_x: - flag: False + flag: false lower: 0.0 upper: 20000.0 - units: "m" + units: m turbine_y: - flag: False + flag: false lower: 0.0 upper: 20000.0 - units: "m" + units: m constraints: turbine_spacing: - flag: False + flag: false lower: 0.0 boundary_distance: - flag: False + flag: false lower: 0.0 pv_to_platform_area_ratio: - flag: False - upper: 1.0 # relative size of solar pv area to platform area + flag: false + upper: 1.0 # relative size of solar pv area to platform area user: {} - merit_figure: "lcoi" + merit_figure: lcoi merit_figure_user: - name: "lcoi" - max_flag: False - ref: 1.0 # value of objective that scales to 1.0 + name: lcoi + max_flag: false + ref: 1.0 # value of objective that scales to 1.0 driver: optimization: - flag: True - solver: "SNOPT" + flag: true + solver: SNOPT tol: 1E-6 - gradient_method: "snopt_fd" # can be one of ['pyopt_fd', 'openmdao', 'snopt_fd'] + 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 + # time_limit: 10 # (sec) optional # "hist_file_name: "snopt_history.txt", # optional - verify_level: 0 # 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 + 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) + 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] + 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 + debug_print: false step_size_study: - flag: False + flag: false recorder: - flag: True - file_name: "record.sql" - includes: False + flag: true + file_name: record.sql + includes: false diff --git a/h2integrate/converters/iron/test/input/hopp_config.yaml b/h2integrate/converters/iron/test/input/hopp_config.yaml index 687d23cc0..3e9621a21 100644 --- a/h2integrate/converters/iron/test/input/hopp_config.yaml +++ b/h2integrate/converters/iron/test/input/hopp_config.yaml @@ -1,4 +1,4 @@ -site: #!include flatirons_site.yaml +site: #!include flatirons_site.yaml data: lat: 47.5233 lon: -92.5366 @@ -16,18 +16,16 @@ site: #!include flatirons_site.yaml - [0.0, 20000.0] - [20000.0, 20000.0] - [20000.0, 0.0] - solar_resource_file: "../../../../resource_files/solar/47.5233_-92.5366_psmv3_60_2013.csv" - wind_resource_file: "../../../../resource_files/wind/47.5233_-92.5366_windtoolkit_2013_60min_100m_120m.srw" - wave_resource_file: "" - grid_resource_file: "" + solar_resource_file: ../../../../resource_files/solar/47.5233_-92.5366_psmv3_60_2013.csv + wind_resource_file: ../../../../resource_files/wind/47.5233_-92.5366_windtoolkit_2013_60min_100m_120m.srw + wave_resource_file: '' + grid_resource_file: '' hub_height: 115.0 capacity_hours: [] solar: true wind: true wave: false - wind_resource_origin: "WTK" - - + wind_resource_origin: WTK technologies: wind: num_turbines: 216 @@ -39,7 +37,32 @@ technologies: hub_height: 115.0 pv: system_capacity_kw: 100000 - dc_degradation: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + 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 @@ -49,25 +72,24 @@ technologies: initial_SOC: 90.0 fin_model: !include default_fin_config.yaml grid: - interconnect_kw: 2000000 # Set higher than rated generation capacity + 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 + 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 + cost_info: # Costs from GS Manuscript Supplemental Table S11 + wind_installed_cost_mw: 1098000 # (2020USD) + solar_installed_cost_mw: 991000 # (2020USD) + storage_installed_cost_mwh: 158000 # (2020USD) + storage_installed_cost_mw: 212000 # (2020USD) + wind_om_per_kw: 25.8 # (2020USD) + pv_om_per_kw: 17.2 # (2020USD) + battery_om_per_kw: 9.25 # (2020USD) based on 0.025 percent of battery capex with a 100MW 1hr battery diff --git a/h2integrate/core/inputs/driver_schema.yaml b/h2integrate/core/inputs/driver_schema.yaml index 0ee740e8f..d957628aa 100644 --- a/h2integrate/core/inputs/driver_schema.yaml +++ b/h2integrate/core/inputs/driver_schema.yaml @@ -1,4 +1,4 @@ -$schema: "http://json-schema.org/draft-07/schema#" +$schema: http://json-schema.org/draft-07/schema# $id: driver_config_schema_v01 title: Driver Configuration Schema description: Schema to validate driver configurations H2Integrate @@ -16,7 +16,7 @@ properties: folder_output: type: string description: Name of the folder for output files - default: "output" + default: output create_om_reports: type: boolean description: Whether to create OpenMDAO reports (N2 diagrams, etc.) @@ -48,7 +48,7 @@ properties: form: type: string description: Derivative form for optimization - default: "forward" + default: forward debug_print: type: boolean description: Debug print flag @@ -59,7 +59,7 @@ properties: type: object additionalProperties: type: object - required: ["flag", "units"] + required: [flag, units] properties: flag: type: boolean @@ -73,7 +73,7 @@ properties: description: Upper bound for the variable default: null units: - type: ["string", "null"] + type: [string, 'null'] description: Units of the variable objective: type: object @@ -84,7 +84,4 @@ properties: ref: type: number description: Reference value for normalization -required: - - name - - description - - general +required: [name, description, general] diff --git a/h2integrate/core/inputs/plant_schema.yaml b/h2integrate/core/inputs/plant_schema.yaml index d6d95064c..603f94e09 100644 --- a/h2integrate/core/inputs/plant_schema.yaml +++ b/h2integrate/core/inputs/plant_schema.yaml @@ -1,4 +1,4 @@ -$schema: "http://json-schema.org/draft-07/schema#" +$schema: http://json-schema.org/draft-07/schema# $id: plant_config_schema_v01 title: Plant Configuration Schema description: Schema to validate plant configurations including site details and plant properties @@ -31,7 +31,7 @@ properties: type: number description: Elevation of the site in meters minimum: 0 - required: ["latitude", "longitude"] + required: [latitude, longitude] plant: type: object properties: @@ -56,14 +56,14 @@ properties: start_time: type: string description: simulation start time formatted as mm/dd/yyyy HH:MM:SS or mm/dd HH:MM:SS - default: "01/01 00:30:00" + default: 01/01 00:30:00 timezone: type: number description: timezone as UTC offset corresponding to start_time minimum: -12 maximum: 14 - required: ["dt", "n_timesteps"] - required: ["plant_life", "simulation"] + required: [dt, n_timesteps] + required: [plant_life, simulation] technology_interconnections: type: array description: Array of arrays representing technology interconnections @@ -72,7 +72,4 @@ properties: items: type: [string, array] description: Technology names and connection types -required: - - name - - description - - sites +required: [name, description, sites] diff --git a/h2integrate/core/inputs/tech_schema.yaml b/h2integrate/core/inputs/tech_schema.yaml index 93492a5ed..b85ac3294 100644 --- a/h2integrate/core/inputs/tech_schema.yaml +++ b/h2integrate/core/inputs/tech_schema.yaml @@ -1,4 +1,4 @@ -$schema: "http://json-schema.org/draft-07/schema#" +$schema: http://json-schema.org/draft-07/schema# $id: technology_config_schema_v01 title: Technology Configuration Schema description: Schema to validate technology configurations, including performance and cost models @@ -14,7 +14,7 @@ properties: type: object description: Technologies included in the configuration patternProperties: - ".*": # Allows any string as the key (e.g., wind, electrolyzer) + .*: # Allows any string as the key (e.g., wind, electrolyzer) type: object properties: performance_model: @@ -23,7 +23,7 @@ properties: model: type: string description: Name of the performance model - required: ["model"] + required: [model] description: Performance model details cost_model: type: object @@ -31,7 +31,7 @@ properties: model: type: string description: Name of the cost model - required: ["model"] + required: [model] description: Cost model details resource: type: object @@ -53,7 +53,4 @@ properties: description: Financial model details (optional) additionalProperties: true required: [] -required: - - name - - description - - technologies +required: [name, description, technologies] diff --git a/h2integrate/storage/battery/test/inputs/tech_config.yaml b/h2integrate/storage/battery/test/inputs/tech_config.yaml index 5778097d0..67d922811 100644 --- a/h2integrate/storage/battery/test/inputs/tech_config.yaml +++ b/h2integrate/storage/battery/test/inputs/tech_config.yaml @@ -1,14 +1,13 @@ -name: "technology_config" -description: "This hybrid plant stores and discharges electricity" - +name: technology_config +description: This hybrid plant stores and discharges electricity technologies: - battery: + battery: dispatch_rule_set: - model: "PyomoRuleStorageBaseclass" + model: PyomoRuleStorageBaseclass performance_model: - model: "PySAMBatteryPerformanceModel" + model: PySAMBatteryPerformanceModel cost_model: - model: "PySAMBatteryPerformanceModel" + model: PySAMBatteryPerformanceModel model_inputs: shared_parameters: max_charge_rate: 50000 @@ -21,8 +20,8 @@ technologies: max_charge_percent: 0.9 min_charge_percent: 0.1 performance_parameters: - system_model_source: "pysam" - chemistry: "LFPGraphite" + system_model_source: pysam + chemistry: LFPGraphite dispatch_rule_parameters: - commodity_name: "electricity" - commodity_storage_units: "kW" + commodity_name: electricity + commodity_storage_units: kW diff --git a/h2integrate/tools/test/profast_config.yaml b/h2integrate/tools/test/profast_config.yaml index 79917e800..314b1f9fb 100644 --- a/h2integrate/tools/test/profast_config.yaml +++ b/h2integrate/tools/test/profast_config.yaml @@ -1,119 +1,145 @@ params: - capacity: 12000000.0 - long term utilization: 1 - demand rampup: 0.0 - analysis start year: 2032 - operating life: 30 - installation months: 36 - TOPC: {unit price: 0.0, decay: 0.0, sunset years: 0, support utilization: 0.0} - commodity: {name: electricity, unit: kWh, initial price: 100, escalation: 0.0} - annual operating incentive: {value: 0.0, decay: 0.0, sunset years: 0, taxable: true} - incidental revenue: {value: 0.0, escalation: 0.0} - credit card fees: 0.0 - sales tax: 0.0 - road tax: {value: 0.0, escalation: 0.0} - labor: {value: 0.0, rate: 0.0, escalation: 0.0} - maintenance: {value: 0.0, escalation: 0.0} - rent: {value: 0.0, escalation: 0.0} - license and permit: {value: 0.0, escalation: 0.0} - non depr assets: 0.0 - end of proj sale non depr assets: 0.0 - installation cost: {value: 0.0, depr type: Straight line, depr period: 4, depreciable: false} - one time cap inct: {value: 0.0, depr type: MACRS, depr period: 3, depreciable: false} - property tax and insurance: 0.015 - admin expense: 0.0 - tax loss carry forward years: 0 - capital gains tax rate: 0.15 - tax losses monetized: true - sell undepreciated cap: true - loan period if used: 0 - debt equity ratio of initial financing: 2.82 - debt interest rate: 0.0439 - debt type: Revolving debt - total income tax rate: 0.2574 - cash onhand: 1 - general inflation rate: 0.0 - leverage after tax nominal discount rate: 0.0615 + capacity: 12000000.0 + long term utilization: 1 + demand rampup: 0.0 + analysis start year: 2032 + operating life: 30 + installation months: 36 + TOPC: {unit price: 0.0, decay: 0.0, sunset years: 0, support utilization: 0.0} + commodity: {name: electricity, unit: kWh, initial price: 100, escalation: 0.0} + annual operating incentive: {value: 0.0, decay: 0.0, sunset years: 0, taxable: true} + incidental revenue: {value: 0.0, escalation: 0.0} + credit card fees: 0.0 + sales tax: 0.0 + road tax: {value: 0.0, escalation: 0.0} + labor: {value: 0.0, rate: 0.0, escalation: 0.0} + maintenance: {value: 0.0, escalation: 0.0} + rent: {value: 0.0, escalation: 0.0} + license and permit: {value: 0.0, escalation: 0.0} + non depr assets: 0.0 + end of proj sale non depr assets: 0.0 + installation cost: {value: 0.0, depr type: Straight line, depr period: 4, depreciable: false} + one time cap inct: {value: 0.0, depr type: MACRS, depr period: 3, depreciable: false} + property tax and insurance: 0.015 + admin expense: 0.0 + tax loss carry forward years: 0 + capital gains tax rate: 0.15 + tax losses monetized: true + sell undepreciated cap: true + loan period if used: 0 + debt equity ratio of initial financing: 2.82 + debt interest rate: 0.0439 + debt type: Revolving debt + total income tax rate: 0.2574 + cash onhand: 1 + general inflation rate: 0.0 + leverage after tax nominal discount rate: 0.0615 feedstocks: - ng_feedstock: - name: ng_feedstock - usage: 1.0 - unit: $/kW/h - cost: {'2035': 0.006996177517553415, '2036': 0.006996177517553415, '2037': 0.006996177517553415, '2038': 0.006996177517553415, '2039': 0.006996177517553415, '2040': 0.006996177517553415, '2041': 0.006996177517553415, '2042': 0.006996177517553415, '2043': 0.006996177517553415, '2044': 0.006996177517553415, '2045': 0.006996177517553415, '2046': 0.006996177517553415, '2047': 0.006996177517553415, '2048': 0.006996177517553415, '2049': 0.006996177517553415, '2050': 0.006996177517553415, '2051': 0.006996177517553415, '2052': 0.006996177517553415, '2053': 0.006996177517553415, '2054': 0.006996177517553415, '2055': 0.006996177517553415, '2056': 0.006996177517553415, '2057': 0.006996177517553415, '2058': 0.006996177517553415, '2059': 0.006996177517553415, '2060': 0.006996177517553415, '2061': 0.006996177517553415, '2062': 0.006996177517553415, '2063': 0.006996177517553415, '2064': 0.006996177517553415} - escalation: 0.0 + ng_feedstock: + name: ng_feedstock + usage: 1.0 + unit: $/kW/h + cost: {'2035': 0.006996177517553415, '2036': 0.006996177517553415, '2037': 0.006996177517553415, '2038': 0.006996177517553415, + '2039': 0.006996177517553415, '2040': 0.006996177517553415, '2041': 0.006996177517553415, '2042': 0.006996177517553415, + '2043': 0.006996177517553415, '2044': 0.006996177517553415, '2045': 0.006996177517553415, '2046': 0.006996177517553415, + '2047': 0.006996177517553415, '2048': 0.006996177517553415, '2049': 0.006996177517553415, '2050': 0.006996177517553415, + '2051': 0.006996177517553415, '2052': 0.006996177517553415, '2053': 0.006996177517553415, '2054': 0.006996177517553415, + '2055': 0.006996177517553415, '2056': 0.006996177517553415, '2057': 0.006996177517553415, '2058': 0.006996177517553415, + '2059': 0.006996177517553415, '2060': 0.006996177517553415, '2061': 0.006996177517553415, '2062': 0.006996177517553415, + '2063': 0.006996177517553415, '2064': 0.006996177517553415} + escalation: 0.0 capital_items: - battery: - name: battery - cost: 3402926.829268293 - depr_type: MACRS - depr_period: 5 - refurb: [0.0] - grid_selling: - name: grid_selling - cost: 0.0 - depr_type: MACRS - depr_period: 5 - refurb: [0.0] - natural_gas_plant: - name: natural_gas_plant - cost: 1170731707.3170733 - depr_type: MACRS - depr_period: 5 - refurb: [0.0] - ng_feedstock: - name: ng_feedstock - cost: 0.0 - depr_type: MACRS - depr_period: 5 - refurb: [0.0] - solar: - name: solar - cost: 439609756.097561 - depr_type: MACRS - depr_period: 5 - refurb: [0.0] - wind: - name: wind - cost: 1455588292.682927 - depr_type: MACRS - depr_period: 5 - refurb: [0.0] + battery: + name: battery + cost: 3402926.829268293 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] + grid_selling: + name: grid_selling + cost: 0.0 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] + natural_gas_plant: + name: natural_gas_plant + cost: 1170731707.3170733 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] + ng_feedstock: + name: ng_feedstock + cost: 0.0 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] + solar: + name: solar + cost: 439609756.097561 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] + wind: + name: wind + cost: 1455588292.682927 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] fixed_costs: - battery: {name: battery, usage: 1.0, unit: $/year, cost: 779.2702439024391, escalation: 0.0} - grid_selling: {name: grid_selling, usage: 1.0, unit: $/year, cost: 0.0, escalation: 0.0} - natural_gas_plant: {name: natural_gas_plant, usage: 1.0, unit: $/year, cost: 9129065.673328334, escalation: 0.0} - ng_feedstock: {name: ng_feedstock, usage: 1.0, unit: $/year, cost: 0.0, escalation: 0.0} - solar: {name: solar, usage: 1.0, unit: $/year, cost: 5920975.609756098, escalation: 0.0} - wind: {name: wind, usage: 1.0, unit: $/year, cost: 32318165.853658542, escalation: 0.0} + battery: {name: battery, usage: 1.0, unit: $/year, cost: 779.2702439024391, escalation: 0.0} + grid_selling: {name: grid_selling, usage: 1.0, unit: $/year, cost: 0.0, escalation: 0.0} + natural_gas_plant: {name: natural_gas_plant, usage: 1.0, unit: $/year, cost: 9129065.673328334, escalation: 0.0} + ng_feedstock: {name: ng_feedstock, usage: 1.0, unit: $/year, cost: 0.0, escalation: 0.0} + solar: {name: solar, usage: 1.0, unit: $/year, cost: 5920975.609756098, escalation: 0.0} + wind: {name: wind, usage: 1.0, unit: $/year, cost: 32318165.853658542, escalation: 0.0} incentives: {} coproducts: - battery: - name: battery - usage: 1.0 - unit: $/kW/h - cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} - escalation: 0.0 - grid_selling: - name: grid_selling - usage: 1.0 - unit: $/kW/h - cost: {'2035': 0.014281829543690798, '2036': 0.014281829543690798, '2037': 0.014281829543690798, '2038': 0.014281829543690798, '2039': 0.014281829543690798, '2040': 0.014281829543690798, '2041': 0.014281829543690798, '2042': 0.014281829543690798, '2043': 0.014281829543690798, '2044': 0.014281829543690798, '2045': 0.014281829543690798, '2046': 0.014281829543690798, '2047': 0.014281829543690798, '2048': 0.014281829543690798, '2049': 0.014281829543690798, '2050': 0.014281829543690798, '2051': 0.014281829543690798, '2052': 0.014281829543690798, '2053': 0.014281829543690798, '2054': 0.014281829543690798, '2055': 0.014281829543690798, '2056': 0.014281829543690798, '2057': 0.014281829543690798, '2058': 0.014281829543690798, '2059': 0.014281829543690798, '2060': 0.014281829543690798, '2061': 0.014281829543690798, '2062': 0.014281829543690798, '2063': 0.014281829543690798, '2064': 0.014281829543690798} - escalation: 0.0 - natural_gas_plant: - name: natural_gas_plant - usage: 1.0 - unit: $/kW/h - cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} - escalation: 0.0 - solar: - name: solar - usage: 1.0 - unit: $/kW/h - cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} - escalation: 0.0 - wind: - name: wind - usage: 1.0 - unit: $/kW/h - cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} - escalation: 0.0 + battery: + name: battery + usage: 1.0 + unit: $/kW/h + cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, + '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, + '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, + '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} + escalation: 0.0 + grid_selling: + name: grid_selling + usage: 1.0 + unit: $/kW/h + cost: {'2035': 0.014281829543690798, '2036': 0.014281829543690798, '2037': 0.014281829543690798, '2038': 0.014281829543690798, + '2039': 0.014281829543690798, '2040': 0.014281829543690798, '2041': 0.014281829543690798, '2042': 0.014281829543690798, + '2043': 0.014281829543690798, '2044': 0.014281829543690798, '2045': 0.014281829543690798, '2046': 0.014281829543690798, + '2047': 0.014281829543690798, '2048': 0.014281829543690798, '2049': 0.014281829543690798, '2050': 0.014281829543690798, + '2051': 0.014281829543690798, '2052': 0.014281829543690798, '2053': 0.014281829543690798, '2054': 0.014281829543690798, + '2055': 0.014281829543690798, '2056': 0.014281829543690798, '2057': 0.014281829543690798, '2058': 0.014281829543690798, + '2059': 0.014281829543690798, '2060': 0.014281829543690798, '2061': 0.014281829543690798, '2062': 0.014281829543690798, + '2063': 0.014281829543690798, '2064': 0.014281829543690798} + escalation: 0.0 + natural_gas_plant: + name: natural_gas_plant + usage: 1.0 + unit: $/kW/h + cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, + '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, + '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, + '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} + escalation: 0.0 + solar: + name: solar + usage: 1.0 + unit: $/kW/h + cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, + '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, + '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, + '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} + escalation: 0.0 + wind: + name: wind + usage: 1.0 + unit: $/kW/h + cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, + '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, + '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, + '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} + escalation: 0.0 diff --git a/library/floris_turbine_GE_1.5MW.yaml b/library/floris_turbine_GE_1.5MW.yaml index 69090b2a4..031c6abc6 100644 --- a/library/floris_turbine_GE_1.5MW.yaml +++ b/library/floris_turbine_GE_1.5MW.yaml @@ -4,224 +4,224 @@ TSR: 8.0 rotor_diameter: 77 power_thrust_table: wind_speed: - - 0.0 - - 1.0 - - 1.01 - - 1.53 - - 1.99 - - 2.43 - - 2.97 - - 3.51 - - 3.97 - - 4.52 - - 5.01 - - 5.52 - - 5.99 - - 6.52 - - 7.04 - - 7.51 - - 8.0 - - 8.49 - - 9.01 - - 9.52 - - 10.03 - - 10.48 - - 10.99 - - 11.49 - - 11.98 - - 12.52 - - 12.97 - - 13.51 - - 13.97 - - 14.43 - - 15.01 - - 15.49 - - 15.98 - - 16.46 - - 16.97 - - 17.52 - - 18.0 - - 18.47 - - 19.06 - - 19.4 - - 19.96 - - 20.51 - - 20.95 - - 21.45 - - 22.45 - - 23.45 - - 24.45 - - 25.45 - - 26.45 - - 27.45 - - 28.45 - - 29.45 - - 30.45 - - 31.45 - - 32.45 - - 33.45 - - 34.45 - - 35.45 - - 36.45 - - 37.45 - - 38.45 - - 39.45 - - 40.45 - - 41.45 - - 42.45 - - 43.45 - - 44.45 - - 45.45 - - 46.45 - - 47.45 - - 48.45 - - 49.45 + - 0.0 + - 1.0 + - 1.01 + - 1.53 + - 1.99 + - 2.43 + - 2.97 + - 3.51 + - 3.97 + - 4.52 + - 5.01 + - 5.52 + - 5.99 + - 6.52 + - 7.04 + - 7.51 + - 8.0 + - 8.49 + - 9.01 + - 9.52 + - 10.03 + - 10.48 + - 10.99 + - 11.49 + - 11.98 + - 12.52 + - 12.97 + - 13.51 + - 13.97 + - 14.43 + - 15.01 + - 15.49 + - 15.98 + - 16.46 + - 16.97 + - 17.52 + - 18.0 + - 18.47 + - 19.06 + - 19.4 + - 19.96 + - 20.51 + - 20.95 + - 21.45 + - 22.45 + - 23.45 + - 24.45 + - 25.45 + - 26.45 + - 27.45 + - 28.45 + - 29.45 + - 30.45 + - 31.45 + - 32.45 + - 33.45 + - 34.45 + - 35.45 + - 36.45 + - 37.45 + - 38.45 + - 39.45 + - 40.45 + - 41.45 + - 42.45 + - 43.45 + - 44.45 + - 45.45 + - 46.45 + - 47.45 + - 48.45 + - 49.45 power: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.59 - - 18.91 - - 58.88 - - 100.82 - - 162.89 - - 235.1 - - 303.63 - - 399.01 - - 513.9 - - 608.8 - - 742.33 - - 853.63 - - 975.43 - - 1096.64 - - 1200.0 - - 1260.0 - - 1318.0 - - 1390.0 - - 1400.0 - - 1453.0 - - 1452.0 - - 1478.0 - - 1482.0 - - 1496.0 - - 1498.0 - - 1495.0 - - 1497.0 - - 1500.0 - - 1500.0 - - 1500.0 - - 1497.0 - - 1500.0 - - 1499.0 - - 1500.0 - - 1500.0 - - 1500.0 - - 1500.0 - - 1499.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 - - 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.0 - - 0.0 - - 0.0 - - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.59 + - 18.91 + - 58.88 + - 100.82 + - 162.89 + - 235.1 + - 303.63 + - 399.01 + - 513.9 + - 608.8 + - 742.33 + - 853.63 + - 975.43 + - 1096.64 + - 1200.0 + - 1260.0 + - 1318.0 + - 1390.0 + - 1400.0 + - 1453.0 + - 1452.0 + - 1478.0 + - 1482.0 + - 1496.0 + - 1498.0 + - 1495.0 + - 1497.0 + - 1500.0 + - 1500.0 + - 1500.0 + - 1497.0 + - 1500.0 + - 1499.0 + - 1500.0 + - 1500.0 + - 1500.0 + - 1500.0 + - 1499.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 + - 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.0 + - 0.0 + - 0.0 + - 0.0 thrust_coefficient: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.01 - - 0.1564 - - 0.3676 - - 0.4337 - - 0.5351 - - 0.6005 - - 0.6005 - - 0.9996 - - 0.9983 - - 1.0 - - 0.9996 - - 0.6005 - - 0.5669 - - 0.5198 - - 0.4901 - - 0.4337 - - 0.3935 - - 0.3549 - - 0.3176 - - 0.2814 - - 0.2462 - - 0.2232 - - 0.2006 - - 0.1783 - - 0.1673 - - 0.1455 - - 0.1347 - - 0.124 - - 0.1133 - - 0.1027 - - 0.0922 - - 0.0817 - - 0.0817 - - 0.0713 - - 0.0713 - - 0.0609 - - 0.0609 - - 0.0506 - - 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.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 - - 0.0 - - 0.0 - - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.01 + - 0.1564 + - 0.3676 + - 0.4337 + - 0.5351 + - 0.6005 + - 0.6005 + - 0.9996 + - 0.9983 + - 1.0 + - 0.9996 + - 0.6005 + - 0.5669 + - 0.5198 + - 0.4901 + - 0.4337 + - 0.3935 + - 0.3549 + - 0.3176 + - 0.2814 + - 0.2462 + - 0.2232 + - 0.2006 + - 0.1783 + - 0.1673 + - 0.1455 + - 0.1347 + - 0.124 + - 0.1133 + - 0.1027 + - 0.0922 + - 0.0817 + - 0.0817 + - 0.0713 + - 0.0713 + - 0.0609 + - 0.0609 + - 0.0506 + - 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.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 + - 0.0 + - 0.0 + - 0.0 ref_air_density: 1.225 ref_tilt: 5.0 cosine_loss_exponent_yaw: 1.88 diff --git a/library/floris_turbine_NREL_6MW_170.yaml b/library/floris_turbine_NREL_6MW_170.yaml index 99c7e77e3..9ef65b21e 100644 --- a/library/floris_turbine_NREL_6MW_170.yaml +++ b/library/floris_turbine_NREL_6MW_170.yaml @@ -4,383 +4,383 @@ TSR: 8.0 rotor_diameter: 170 power_thrust_table: wind_speed: - - 0.0 - - 0.25 - - 0.5 - - 0.75 - - 1.0 - - 1.25 - - 1.5 - - 1.75 - - 2.0 - - 2.25 - - 2.5 - - 2.75 - - 3.0 - - 3.25 - - 3.5 - - 3.75 - - 4.0 - - 4.25 - - 4.5 - - 4.75 - - 5.0 - - 5.25 - - 5.5 - - 5.75 - - 6.0 - - 6.25 - - 6.5 - - 6.75 - - 7.0 - - 7.25 - - 7.5 - - 7.75 - - 8.0 - - 8.25 - - 8.5 - - 8.75 - - 9.0 - - 9.25 - - 9.5 - - 9.75 - - 10.0 - - 10.25 - - 10.5 - - 10.75 - - 11.0 - - 11.25 - - 11.5 - - 11.75 - - 12.0 - - 12.25 - - 12.5 - - 12.75 - - 13.0 - - 13.25 - - 13.5 - - 13.75 - - 14.0 - - 14.25 - - 14.5 - - 14.75 - - 15.0 - - 15.25 - - 15.5 - - 15.75 - - 16.0 - - 16.25 - - 16.5 - - 16.75 - - 17.0 - - 17.25 - - 17.5 - - 17.75 - - 18.0 - - 18.25 - - 18.5 - - 18.75 - - 19.0 - - 19.25 - - 19.5 - - 19.75 - - 20.0 - - 20.25 - - 20.5 - - 20.75 - - 21.0 - - 21.25 - - 21.5 - - 21.75 - - 22.0 - - 22.25 - - 22.5 - - 22.75 - - 23.0 - - 23.25 - - 23.5 - - 23.75 - - 24.0 - - 24.25 - - 24.5 - - 24.75 - - 25.0 - - 26.0 - - 27.0 - - 28.0 - - 29.0 - - 30.0 - - 31.0 - - 32.0 - - 33.0 - - 34.0 - - 35.0 - - 36.0 - - 37.0 - - 38.0 - - 39.0 - - 40.0 - - 41.0 - - 42.0 - - 43.0 - - 44.0 - - 45.0 - - 46.0 - - 47.0 - - 48.0 - - 49.0 + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 power: - - 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.0 - - 181.0 - - 229.0 - - 294.0 - - 377.0 - - 473.0 - - 581.0 - - 698.0 - - 822.0 - - 952.0 - - 1090.0 - - 1241.0 - - 1410.0 - - 1598.0 - - 1805.0 - - 2027.0 - - 2262.0 - - 2509.0 - - 2769.0 - - 3050.0 - - 3356.0 - - 3687.0 - - 4027.0 - - 4355.0 - - 4650.0 - - 4897.0 - - 5101.0 - - 5275.0 - - 5429.0 - - 5571.0 - - 5699.0 - - 5806.0 - - 5886.0 - - 5934.0 - - 5957.0 - - 5966.0 - - 5970.0 - - 5976.0 - - 5984.0 - - 5992.0 - - 5999.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.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 - - 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.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 + - 181.0 + - 229.0 + - 294.0 + - 377.0 + - 473.0 + - 581.0 + - 698.0 + - 822.0 + - 952.0 + - 1090.0 + - 1241.0 + - 1410.0 + - 1598.0 + - 1805.0 + - 2027.0 + - 2262.0 + - 2509.0 + - 2769.0 + - 3050.0 + - 3356.0 + - 3687.0 + - 4027.0 + - 4355.0 + - 4650.0 + - 4897.0 + - 5101.0 + - 5275.0 + - 5429.0 + - 5571.0 + - 5699.0 + - 5806.0 + - 5886.0 + - 5934.0 + - 5957.0 + - 5966.0 + - 5970.0 + - 5976.0 + - 5984.0 + - 5992.0 + - 5999.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.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 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 thrust_coefficient: - - 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.912 - - 0.89325 - - 0.8745 - - 0.8675 - - 0.8605 - - 0.85025 - - 0.84 - - 0.83275 - - 0.8255 - - 0.82175 - - 0.818 - - 0.8175 - - 0.817 - - 0.81425 - - 0.8115 - - 0.8115 - - 0.8115 - - 0.8085 - - 0.8055 - - 0.7985 - - 0.7915 - - 0.7765 - - 0.7615 - - 0.73625 - - 0.711 - - 0.68025 - - 0.6495 - - 0.61525 - - 0.581 - - 0.54625 - - 0.5115 - - 0.47825 - - 0.445 - - 0.41675 - - 0.3885 - - 0.36275 - - 0.337 - - 0.31625 - - 0.2955 - - 0.27675 - - 0.258 - - 0.24325 - - 0.2285 - - 0.21725 - - 0.206 - - 0.19325 - - 0.1805 - - 0.1735 - - 0.1665 - - 0.15775 - - 0.149 - - 0.143 - - 0.137 - - 0.13175 - - 0.1265 - - 0.119 - - 0.1115 - - 0.10925 - - 0.107 - - 0.10275 - - 0.0985 - - 0.09425 - - 0.09 - - 0.086 - - 0.082 - - 0.08075 - - 0.0795 - - 0.076 - - 0.0725 - - 0.06975 - - 0.067 - - 0.06325 - - 0.0595 - - 0.05825 - - 0.057 - - 0.0535 - - 0.05 - - 0.049 - - 0.048 - - 0.04475 - - 0.0415 - - 0.0405 - - 0.0395 - - 0.039 - - 0.0385 - - 0.03525 - - 0.032 - - 0.0315 - - 0.031 - - 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.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 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.912 + - 0.89325 + - 0.8745 + - 0.8675 + - 0.8605 + - 0.85025 + - 0.84 + - 0.83275 + - 0.8255 + - 0.82175 + - 0.818 + - 0.8175 + - 0.817 + - 0.81425 + - 0.8115 + - 0.8115 + - 0.8115 + - 0.8085 + - 0.8055 + - 0.7985 + - 0.7915 + - 0.7765 + - 0.7615 + - 0.73625 + - 0.711 + - 0.68025 + - 0.6495 + - 0.61525 + - 0.581 + - 0.54625 + - 0.5115 + - 0.47825 + - 0.445 + - 0.41675 + - 0.3885 + - 0.36275 + - 0.337 + - 0.31625 + - 0.2955 + - 0.27675 + - 0.258 + - 0.24325 + - 0.2285 + - 0.21725 + - 0.206 + - 0.19325 + - 0.1805 + - 0.1735 + - 0.1665 + - 0.15775 + - 0.149 + - 0.143 + - 0.137 + - 0.13175 + - 0.1265 + - 0.119 + - 0.1115 + - 0.10925 + - 0.107 + - 0.10275 + - 0.0985 + - 0.09425 + - 0.09 + - 0.086 + - 0.082 + - 0.08075 + - 0.0795 + - 0.076 + - 0.0725 + - 0.06975 + - 0.067 + - 0.06325 + - 0.0595 + - 0.05825 + - 0.057 + - 0.0535 + - 0.05 + - 0.049 + - 0.048 + - 0.04475 + - 0.0415 + - 0.0405 + - 0.0395 + - 0.039 + - 0.0385 + - 0.03525 + - 0.032 + - 0.0315 + - 0.031 + - 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.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 ref_air_density: 1.225 ref_tilt: 5.0 cosine_loss_exponent_yaw: 1.88 diff --git a/library/floris_turbine_Vestas_660kW.yaml b/library/floris_turbine_Vestas_660kW.yaml index e7fa46a8f..d4800458a 100644 --- a/library/floris_turbine_Vestas_660kW.yaml +++ b/library/floris_turbine_Vestas_660kW.yaml @@ -8,206 +8,206 @@ power_thrust_table: cosine_loss_exponent_yaw: 1.88 cosine_loss_exponent_tilt: 1.88 wind_speed: - - 0.0 - - 1.0 - - 2.0 - - 3.0 - - 4.0 - - 4.17 - - 4.58 - - 5.02 - - 5.5 - - 6.0 - - 6.51 - - 6.99 - - 7.49 - - 7.99 - - 8.47 - - 9.02 - - 9.51 - - 10.01 - - 10.47 - - 10.99 - - 11.5 - - 11.99 - - 12.48 - - 13.01 - - 13.49 - - 13.99 - - 14.5 - - 14.91 - - 15.39 - - 15.96 - - 16.42 - - 16.91 - - 17.45 - - 17.91 - - 17.91 - - 18.91 - - 19.91 - - 20.91 - - 21.91 - - 22.91 - - 23.91 - - 24.91 - - 25.91 - - 26.91 - - 27.91 - - 28.91 - - 29.91 - - 30.91 - - 31.91 - - 32.91 - - 33.91 - - 34.91 - - 35.91 - - 36.91 - - 37.91 - - 38.91 - - 39.91 - - 40.91 - - 41.91 - - 42.91 - - 43.91 - - 44.91 - - 45.91 - - 46.91 - - 47.91 - - 48.91 - - 49.91 + - 0.0 + - 1.0 + - 2.0 + - 3.0 + - 4.0 + - 4.17 + - 4.58 + - 5.02 + - 5.5 + - 6.0 + - 6.51 + - 6.99 + - 7.49 + - 7.99 + - 8.47 + - 9.02 + - 9.51 + - 10.01 + - 10.47 + - 10.99 + - 11.5 + - 11.99 + - 12.48 + - 13.01 + - 13.49 + - 13.99 + - 14.5 + - 14.91 + - 15.39 + - 15.96 + - 16.42 + - 16.91 + - 17.45 + - 17.91 + - 17.91 + - 18.91 + - 19.91 + - 20.91 + - 21.91 + - 22.91 + - 23.91 + - 24.91 + - 25.91 + - 26.91 + - 27.91 + - 28.91 + - 29.91 + - 30.91 + - 31.91 + - 32.91 + - 33.91 + - 34.91 + - 35.91 + - 36.91 + - 37.91 + - 38.91 + - 39.91 + - 40.91 + - 41.91 + - 42.91 + - 43.91 + - 44.91 + - 45.91 + - 46.91 + - 47.91 + - 48.91 + - 49.91 power: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 11.75 - - 26.46 - - 41.79 - - 67.86 - - 95.69 - - 131.45 - - 164.31 - - 209.85 - - 253.8 - - 301.19 - - 362.48 - - 406.7 - - 468.74 - - 508.55 - - 551.26 - - 587.82 - - 612.36 - - 634.38 - - 646.79 - - 651.4 - - 658.4 - - 659.46 - - 660.0 - - 660.0 - - 660.0 - - 660.0 - - 660.0 - - 660.0 - - 660.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 - - 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.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 + - 0.0 + - 11.75 + - 26.46 + - 41.79 + - 67.86 + - 95.69 + - 131.45 + - 164.31 + - 209.85 + - 253.8 + - 301.19 + - 362.48 + - 406.7 + - 468.74 + - 508.55 + - 551.26 + - 587.82 + - 612.36 + - 634.38 + - 646.79 + - 651.4 + - 658.4 + - 659.46 + - 660.0 + - 660.0 + - 660.0 + - 660.0 + - 660.0 + - 660.0 + - 660.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 + - 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.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 thrust_coefficient: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.1596 - - 0.2755 - - 0.3399 - - 0.4364 - - 0.4857 - - 0.529 - - 0.5382 - - 0.5653 - - 0.5637 - - 0.5604 - - 0.5572 - - 0.5274 - - 0.5183 - - 0.4857 - - 0.4488 - - 0.412 - - 0.3728 - - 0.3386 - - 0.3018 - - 0.2696 - - 0.2416 - - 0.2164 - - 0.1984 - - 0.1794 - - 0.1596 - - 0.1466 - - 0.1336 - - 0.1208 - - 0.1112 - - 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.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 - - 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.0 + - 0.1596 + - 0.2755 + - 0.3399 + - 0.4364 + - 0.4857 + - 0.529 + - 0.5382 + - 0.5653 + - 0.5637 + - 0.5604 + - 0.5572 + - 0.5274 + - 0.5183 + - 0.4857 + - 0.4488 + - 0.412 + - 0.3728 + - 0.3386 + - 0.3018 + - 0.2696 + - 0.2416 + - 0.2164 + - 0.1984 + - 0.1794 + - 0.1596 + - 0.1466 + - 0.1336 + - 0.1208 + - 0.1112 + - 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.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 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 diff --git a/library/floris_turbine_osw_15MW.yaml b/library/floris_turbine_osw_15MW.yaml index 368efc586..839e32ed4 100644 --- a/library/floris_turbine_osw_15MW.yaml +++ b/library/floris_turbine_osw_15MW.yaml @@ -2,9 +2,9 @@ # [2] https://github.com/IEAWindTask37/IEA-15-240-RWT/blob/97cf629a622270ed421de98abf99f4314044fcf2/Documentation/IEA-15-240-RWT_tabular.xlsx # [3] https://github.com/NREL/floris/blob/main/floris/turbine_library/iea_15MW.yaml turbine_type: osw_15MW -hub_height: 150.0 # m [2] -rotor_diameter: 242.24 # m [2] -TSR: 9.0 # [2] +hub_height: 150.0 # m [2] +rotor_diameter: 242.24 # m [2] +TSR: 9.0 # [2] operation_model: cosine-loss power_thrust_table: ref_air_density: 1.225 @@ -12,164 +12,164 @@ power_thrust_table: cosine_loss_exponent_yaw: 1.88 cosine_loss_exponent_tilt: 1.88 wind_speed: - - 0.0 - - 3.0 - - 3.54953237 - - 4.067900771 - - 4.553906848 - - 5.006427063 - - 5.424415288 - - 5.806905228 - - 6.153012649 - - 6.461937428 - - 6.732965398 - - 6.965470002 - - 7.158913742 - - 7.312849418 - - 7.426921164 - - 7.500865272 - - 7.534510799 - - 7.541241633 - - 7.58833327 - - 7.675676842 - - 7.803070431 - - 7.970219531 - - 8.176737731 - - 8.422147605 - - 8.70588182 - - 9.027284445 - - 9.385612468 - - 9.780037514 - - 10.20964776 - - 10.65845809 - - 10.67345004 - - 11.17037214 - - 11.6992653 - - 12.25890683 - - 12.84800295 - - 13.46519181 - - 14.10904661 - - 14.77807889 - - 15.470742 - - 16.18543466 - - 16.92050464 - - 17.67425264 - - 18.44493615 - - 19.23077353 - - 20.02994808 - - 20.8406123 - - 21.66089211 - - 22.4888912 - - 23.32269542 - - 24.1603772 - - 25.0 - - 25.02 - - 50.0 + - 0.0 + - 3.0 + - 3.54953237 + - 4.067900771 + - 4.553906848 + - 5.006427063 + - 5.424415288 + - 5.806905228 + - 6.153012649 + - 6.461937428 + - 6.732965398 + - 6.965470002 + - 7.158913742 + - 7.312849418 + - 7.426921164 + - 7.500865272 + - 7.534510799 + - 7.541241633 + - 7.58833327 + - 7.675676842 + - 7.803070431 + - 7.970219531 + - 8.176737731 + - 8.422147605 + - 8.70588182 + - 9.027284445 + - 9.385612468 + - 9.780037514 + - 10.20964776 + - 10.65845809 + - 10.67345004 + - 11.17037214 + - 11.6992653 + - 12.25890683 + - 12.84800295 + - 13.46519181 + - 14.10904661 + - 14.77807889 + - 15.470742 + - 16.18543466 + - 16.92050464 + - 17.67425264 + - 18.44493615 + - 19.23077353 + - 20.02994808 + - 20.8406123 + - 21.66089211 + - 22.4888912 + - 23.32269542 + - 24.1603772 + - 25.0 + - 25.02 + - 50.0 power: - - 0.0 - - 43.248653163594426 - - 296.11441318924676 - - 615.2982998681429 - - 992.9292147971958 - - 1418.887992946633 - - 1881.085452404326 - - 2365.765934290439 - - 2858.1544312979295 - - 3342.8977805073064 - - 3804.769102202538 - - 4229.029882107361 - - 4602.027944009766 - - 4913.895562708455 - - 5152.938398045604 - - 5311.746723238392 - - 5384.959172791815 - - 5399.6869625916315 - - 5503.4839124372165 - - 5699.162968962465 - - 5992.384537358997 - - 6391.272566024744 - - 6906.769589318683 - - 7552.844397672678 - - 8337.70973000847 - - 9278.52789217481 - - 10409.245230452776 - - 11757.334751420984 - - 13353.53283006744 - - 15180.89218106576 - - 15180.893439357798 - - 15180.862681385119 - - 15180.901529659508 - - 15180.89277930499 - - 15180.892239234887 - - 15180.838545908564 - - 15180.973910219853 - - 15180.944792397288 - - 15180.928460005443 - - 15180.91799775938 - - 15180.910679572302 - - 15180.905019607679 - - 15180.900467856836 - - 15180.897010208539 - - 15180.894555649316 - - 15180.89279925076 - - 15180.761985586763 - - 15180.89243726605 - - 15180.894020259737 - - 15180.896321691413 - - 15180.899238280452 - - 0.0 - - 0.0 + - 0.0 + - 43.248653163594426 + - 296.11441318924676 + - 615.2982998681429 + - 992.9292147971958 + - 1418.887992946633 + - 1881.085452404326 + - 2365.765934290439 + - 2858.1544312979295 + - 3342.8977805073064 + - 3804.769102202538 + - 4229.029882107361 + - 4602.027944009766 + - 4913.895562708455 + - 5152.938398045604 + - 5311.746723238392 + - 5384.959172791815 + - 5399.6869625916315 + - 5503.4839124372165 + - 5699.162968962465 + - 5992.384537358997 + - 6391.272566024744 + - 6906.769589318683 + - 7552.844397672678 + - 8337.70973000847 + - 9278.52789217481 + - 10409.245230452776 + - 11757.334751420984 + - 13353.53283006744 + - 15180.89218106576 + - 15180.893439357798 + - 15180.862681385119 + - 15180.901529659508 + - 15180.89277930499 + - 15180.892239234887 + - 15180.838545908564 + - 15180.973910219853 + - 15180.944792397288 + - 15180.928460005443 + - 15180.91799775938 + - 15180.910679572302 + - 15180.905019607679 + - 15180.900467856836 + - 15180.897010208539 + - 15180.894555649316 + - 15180.89279925076 + - 15180.761985586763 + - 15180.89243726605 + - 15180.894020259737 + - 15180.896321691413 + - 15180.899238280452 + - 0.0 + - 0.0 thrust_coefficient: - - 0.0 - - 0.80742173 - - 0.784655297 - - 0.781771245 - - 0.785377072 - - 0.788045584 - - 0.789922119 - - 0.790464625 - - 0.789868339 - - 0.788727582 - - 0.787359348 - - 0.785895402 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.77176172 - - 0.747149663 - - 0.562338457 - - 0.463477777 - - 0.389083718 - - 0.329822385 - - 0.281465071 - - 0.241494345 - - 0.208180574 - - 0.180257568 - - 0.156747535 - - 0.136877529 - - 0.120026379 - - 0.105689427 - - 0.093453742 - - 0.082979637 - - 0.073986457 - - 0.066241166 - - 0.059552107 - - 0.053756866 - - 0.048721662 - - 0.044334197 - - 0.0 - - 0.0 + - 0.0 + - 0.80742173 + - 0.784655297 + - 0.781771245 + - 0.785377072 + - 0.788045584 + - 0.789922119 + - 0.790464625 + - 0.789868339 + - 0.788727582 + - 0.787359348 + - 0.785895402 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.778275899 + - 0.77176172 + - 0.747149663 + - 0.562338457 + - 0.463477777 + - 0.389083718 + - 0.329822385 + - 0.281465071 + - 0.241494345 + - 0.208180574 + - 0.180257568 + - 0.156747535 + - 0.136877529 + - 0.120026379 + - 0.105689427 + - 0.093453742 + - 0.082979637 + - 0.073986457 + - 0.066241166 + - 0.059552107 + - 0.053756866 + - 0.048721662 + - 0.044334197 + - 0.0 + - 0.0 diff --git a/library/floris_v4_default_template.yaml b/library/floris_v4_default_template.yaml index 317ec12cd..936bd3068 100644 --- a/library/floris_v4_default_template.yaml +++ b/library/floris_v4_default_template.yaml @@ -1,4 +1,3 @@ - name: Gauss description: Onshore template floris_version: v4.0.0 @@ -19,7 +18,6 @@ flow_field: wind_shear: 0.33 wind_speeds: [] wind_veer: 0.0 - wake: model_strings: combination_model: sosfs @@ -66,7 +64,6 @@ wake: ai: 0.8 downstream: -0.32 enable_active_wake_mixing: false - farm: layout_x: [] layout_y: [] diff --git a/library/pysam_options_6MW.yaml b/library/pysam_options_6MW.yaml index 8b59bf2b4..67c4cf897 100644 --- a/library/pysam_options_6MW.yaml +++ b/library/pysam_options_6MW.yaml @@ -1,385 +1,385 @@ Turbine: wind_resource_shear: 0.14 wind_turbine_ct_curve: - - 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.912 - - 0.89325 - - 0.8745 - - 0.8675 - - 0.8605 - - 0.85025 - - 0.84 - - 0.83275 - - 0.8255 - - 0.82175 - - 0.818 - - 0.8175 - - 0.817 - - 0.81425 - - 0.8115 - - 0.8115 - - 0.8115 - - 0.8085 - - 0.8055 - - 0.7985 - - 0.7915 - - 0.7765 - - 0.7615 - - 0.73625 - - 0.711 - - 0.68025 - - 0.6495 - - 0.61525 - - 0.581 - - 0.54625 - - 0.5115 - - 0.47825 - - 0.445 - - 0.41675 - - 0.3885 - - 0.36275 - - 0.337 - - 0.31625 - - 0.2955 - - 0.27675 - - 0.258 - - 0.24325 - - 0.2285 - - 0.21725 - - 0.206 - - 0.19325 - - 0.1805 - - 0.1735 - - 0.1665 - - 0.15775 - - 0.149 - - 0.143 - - 0.137 - - 0.13175 - - 0.1265 - - 0.119 - - 0.1115 - - 0.10925 - - 0.107 - - 0.10275 - - 0.0985 - - 0.09425 - - 0.09 - - 0.086 - - 0.082 - - 0.08075 - - 0.0795 - - 0.076 - - 0.0725 - - 0.06975 - - 0.067 - - 0.06325 - - 0.0595 - - 0.05825 - - 0.057 - - 0.0535 - - 0.05 - - 0.049 - - 0.048 - - 0.04475 - - 0.0415 - - 0.0405 - - 0.0395 - - 0.039 - - 0.0385 - - 0.03525 - - 0.032 - - 0.0315 - - 0.031 - - 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.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 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.912 + - 0.89325 + - 0.8745 + - 0.8675 + - 0.8605 + - 0.85025 + - 0.84 + - 0.83275 + - 0.8255 + - 0.82175 + - 0.818 + - 0.8175 + - 0.817 + - 0.81425 + - 0.8115 + - 0.8115 + - 0.8115 + - 0.8085 + - 0.8055 + - 0.7985 + - 0.7915 + - 0.7765 + - 0.7615 + - 0.73625 + - 0.711 + - 0.68025 + - 0.6495 + - 0.61525 + - 0.581 + - 0.54625 + - 0.5115 + - 0.47825 + - 0.445 + - 0.41675 + - 0.3885 + - 0.36275 + - 0.337 + - 0.31625 + - 0.2955 + - 0.27675 + - 0.258 + - 0.24325 + - 0.2285 + - 0.21725 + - 0.206 + - 0.19325 + - 0.1805 + - 0.1735 + - 0.1665 + - 0.15775 + - 0.149 + - 0.143 + - 0.137 + - 0.13175 + - 0.1265 + - 0.119 + - 0.1115 + - 0.10925 + - 0.107 + - 0.10275 + - 0.0985 + - 0.09425 + - 0.09 + - 0.086 + - 0.082 + - 0.08075 + - 0.0795 + - 0.076 + - 0.0725 + - 0.06975 + - 0.067 + - 0.06325 + - 0.0595 + - 0.05825 + - 0.057 + - 0.0535 + - 0.05 + - 0.049 + - 0.048 + - 0.04475 + - 0.0415 + - 0.0405 + - 0.0395 + - 0.039 + - 0.0385 + - 0.03525 + - 0.032 + - 0.0315 + - 0.031 + - 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.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 wind_turbine_hub_ht: 115.0 wind_turbine_max_cp: 0.474457866 wind_turbine_powercurve_powerout: - - 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.0 - - 181.0 - - 229.0 - - 294.0 - - 377.0 - - 473.0 - - 581.0 - - 698.0 - - 822.0 - - 952.0 - - 1090.0 - - 1241.0 - - 1410.0 - - 1598.0 - - 1805.0 - - 2027.0 - - 2262.0 - - 2509.0 - - 2769.0 - - 3050.0 - - 3356.0 - - 3687.0 - - 4027.0 - - 4355.0 - - 4650.0 - - 4897.0 - - 5101.0 - - 5275.0 - - 5429.0 - - 5571.0 - - 5699.0 - - 5806.0 - - 5886.0 - - 5934.0 - - 5957.0 - - 5966.0 - - 5970.0 - - 5976.0 - - 5984.0 - - 5992.0 - - 5999.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.0 - - 6000.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 - - 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.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 + - 181.0 + - 229.0 + - 294.0 + - 377.0 + - 473.0 + - 581.0 + - 698.0 + - 822.0 + - 952.0 + - 1090.0 + - 1241.0 + - 1410.0 + - 1598.0 + - 1805.0 + - 2027.0 + - 2262.0 + - 2509.0 + - 2769.0 + - 3050.0 + - 3356.0 + - 3687.0 + - 4027.0 + - 4355.0 + - 4650.0 + - 4897.0 + - 5101.0 + - 5275.0 + - 5429.0 + - 5571.0 + - 5699.0 + - 5806.0 + - 5886.0 + - 5934.0 + - 5957.0 + - 5966.0 + - 5970.0 + - 5976.0 + - 5984.0 + - 5992.0 + - 5999.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.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 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 wind_turbine_powercurve_windspeeds: - - 0.0 - - 0.25 - - 0.5 - - 0.75 - - 1.0 - - 1.25 - - 1.5 - - 1.75 - - 2.0 - - 2.25 - - 2.5 - - 2.75 - - 3.0 - - 3.25 - - 3.5 - - 3.75 - - 4.0 - - 4.25 - - 4.5 - - 4.75 - - 5.0 - - 5.25 - - 5.5 - - 5.75 - - 6.0 - - 6.25 - - 6.5 - - 6.75 - - 7.0 - - 7.25 - - 7.5 - - 7.75 - - 8.0 - - 8.25 - - 8.5 - - 8.75 - - 9.0 - - 9.25 - - 9.5 - - 9.75 - - 10.0 - - 10.25 - - 10.5 - - 10.75 - - 11.0 - - 11.25 - - 11.5 - - 11.75 - - 12.0 - - 12.25 - - 12.5 - - 12.75 - - 13.0 - - 13.25 - - 13.5 - - 13.75 - - 14.0 - - 14.25 - - 14.5 - - 14.75 - - 15.0 - - 15.25 - - 15.5 - - 15.75 - - 16.0 - - 16.25 - - 16.5 - - 16.75 - - 17.0 - - 17.25 - - 17.5 - - 17.75 - - 18.0 - - 18.25 - - 18.5 - - 18.75 - - 19.0 - - 19.25 - - 19.5 - - 19.75 - - 20.0 - - 20.25 - - 20.5 - - 20.75 - - 21.0 - - 21.25 - - 21.5 - - 21.75 - - 22.0 - - 22.25 - - 22.5 - - 22.75 - - 23.0 - - 23.25 - - 23.5 - - 23.75 - - 24.0 - - 24.25 - - 24.5 - - 24.75 - - 25.0 - - 26.0 - - 27.0 - - 28.0 - - 29.0 - - 30.0 - - 31.0 - - 32.0 - - 33.0 - - 34.0 - - 35.0 - - 36.0 - - 37.0 - - 38.0 - - 39.0 - - 40.0 - - 41.0 - - 42.0 - - 43.0 - - 44.0 - - 45.0 - - 46.0 - - 47.0 - - 48.0 - - 49.0 + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 Farm: wind_farm_wake_model: 0.0 wind_resource_turbulence_coeff: 0.1 diff --git a/library/pysam_options_8.3MW.yaml b/library/pysam_options_8.3MW.yaml index 558b24cfb..47b9e37c9 100644 --- a/library/pysam_options_8.3MW.yaml +++ b/library/pysam_options_8.3MW.yaml @@ -1,385 +1,385 @@ Turbine: wind_resource_shear: 0.14 wind_turbine_ct_curve: - - 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.0 - - 0.4337 - - 0.4383 - - 0.4637 - - 0.4951 - - 0.5248 - - 0.5486 - - 0.5646 - - 0.5721 - - 0.5721 - - 0.5691 - - 0.5664 - - 0.566 - - 0.5684 - - 0.5715 - - 0.5738 - - 0.5742 - - 0.5726 - - 0.5704 - - 0.569 - - 0.5695 - - 0.5713 - - 0.5711 - - 0.5658 - - 0.5535 - - 0.5342 - - 0.5106 - - 0.4854 - - 0.4603 - - 0.4363 - - 0.413 - - 0.3898 - - 0.3666 - - 0.3432 - - 0.3205 - - 0.299 - - 0.2792 - - 0.2614 - - 0.2452 - - 0.2304 - - 0.2168 - - 0.2041 - - 0.1923 - - 0.1814 - - 0.1714 - - 0.1621 - - 0.1535 - - 0.1455 - - 0.138 - - 0.1311 - - 0.1246 - - 0.1186 - - 0.1129 - - 0.1076 - - 0.1027 - - 0.098 - - 0.0937 - - 0.0896 - - 0.0857 - - 0.082 - - 0.0786 - - 0.0753 - - 0.0723 - - 0.0694 - - 0.0666 - - 0.064 - - 0.0615 - - 0.0592 - - 0.057 - - 0.0548 - - 0.0528 - - 0.0509 - - 0.0491 - - 0.0474 - - 0.0457 - - 0.0441 - - 0.0426 - - 0.0412 - - 0.0398 - - 0.0385 - - 0.0373 - - 0.0361 - - 0.0349 - - 0.0338 - - 0.0328 - - 0.0317 - - 0.0308 - - 0.0298 - - 0.029 - - 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.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 + - 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.4337 + - 0.4383 + - 0.4637 + - 0.4951 + - 0.5248 + - 0.5486 + - 0.5646 + - 0.5721 + - 0.5721 + - 0.5691 + - 0.5664 + - 0.566 + - 0.5684 + - 0.5715 + - 0.5738 + - 0.5742 + - 0.5726 + - 0.5704 + - 0.569 + - 0.5695 + - 0.5713 + - 0.5711 + - 0.5658 + - 0.5535 + - 0.5342 + - 0.5106 + - 0.4854 + - 0.4603 + - 0.4363 + - 0.413 + - 0.3898 + - 0.3666 + - 0.3432 + - 0.3205 + - 0.299 + - 0.2792 + - 0.2614 + - 0.2452 + - 0.2304 + - 0.2168 + - 0.2041 + - 0.1923 + - 0.1814 + - 0.1714 + - 0.1621 + - 0.1535 + - 0.1455 + - 0.138 + - 0.1311 + - 0.1246 + - 0.1186 + - 0.1129 + - 0.1076 + - 0.1027 + - 0.098 + - 0.0937 + - 0.0896 + - 0.0857 + - 0.082 + - 0.0786 + - 0.0753 + - 0.0723 + - 0.0694 + - 0.0666 + - 0.064 + - 0.0615 + - 0.0592 + - 0.057 + - 0.0548 + - 0.0528 + - 0.0509 + - 0.0491 + - 0.0474 + - 0.0457 + - 0.0441 + - 0.0426 + - 0.0412 + - 0.0398 + - 0.0385 + - 0.0373 + - 0.0361 + - 0.0349 + - 0.0338 + - 0.0328 + - 0.0317 + - 0.0308 + - 0.0298 + - 0.029 + - 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.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 wind_turbine_hub_ht: 130.0 wind_turbine_max_cp: 0.474457866 wind_turbine_powercurve_powerout: - - 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.0 - - 241.0757324 - - 303.7602033 - - 391.3910551 - - 500.8033128 - - 628.8320016 - - 772.3121467 - - 928.0787732 - - 1092.966906 - - 1265.273318 - - 1449.141772 - - 1650.177777 - - 1873.986843 - - 2124.586921 - - 2399.645733 - - 2695.243438 - - 3007.4602 - - 3334.216 - - 3680.790104 - - 4054.301598 - - 4461.869566 - - 4905.067075 - - 5363.283108 - - 5810.360625 - - 6220.142589 - - 6572.96016 - - 6875.097291 - - 7139.326132 - - 7378.418836 - - 7601.367393 - - 7802.043165 - - 7970.537352 - - 8096.941157 - - 8175.407321 - - 8216.334756 - - 8234.183913 - - 8243.415243 - - 8255.567745 - - 8270.494605 - - 8285.127555 - - 8296.398325 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.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 - - 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.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 + - 241.0757324 + - 303.7602033 + - 391.3910551 + - 500.8033128 + - 628.8320016 + - 772.3121467 + - 928.0787732 + - 1092.966906 + - 1265.273318 + - 1449.141772 + - 1650.177777 + - 1873.986843 + - 2124.586921 + - 2399.645733 + - 2695.243438 + - 3007.4602 + - 3334.216 + - 3680.790104 + - 4054.301598 + - 4461.869566 + - 4905.067075 + - 5363.283108 + - 5810.360625 + - 6220.142589 + - 6572.96016 + - 6875.097291 + - 7139.326132 + - 7378.418836 + - 7601.367393 + - 7802.043165 + - 7970.537352 + - 8096.941157 + - 8175.407321 + - 8216.334756 + - 8234.183913 + - 8243.415243 + - 8255.567745 + - 8270.494605 + - 8285.127555 + - 8296.398325 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.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 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 wind_turbine_powercurve_windspeeds: - - 0.0 - - 0.25 - - 0.5 - - 0.75 - - 1.0 - - 1.25 - - 1.5 - - 1.75 - - 2.0 - - 2.25 - - 2.5 - - 2.75 - - 3.0 - - 3.25 - - 3.5 - - 3.75 - - 4.0 - - 4.25 - - 4.5 - - 4.75 - - 5.0 - - 5.25 - - 5.5 - - 5.75 - - 6.0 - - 6.25 - - 6.5 - - 6.75 - - 7.0 - - 7.25 - - 7.5 - - 7.75 - - 8.0 - - 8.25 - - 8.5 - - 8.75 - - 9.0 - - 9.25 - - 9.5 - - 9.75 - - 10.0 - - 10.25 - - 10.5 - - 10.75 - - 11.0 - - 11.25 - - 11.5 - - 11.75 - - 12.0 - - 12.25 - - 12.5 - - 12.75 - - 13.0 - - 13.25 - - 13.5 - - 13.75 - - 14.0 - - 14.25 - - 14.5 - - 14.75 - - 15.0 - - 15.25 - - 15.5 - - 15.75 - - 16.0 - - 16.25 - - 16.5 - - 16.75 - - 17.0 - - 17.25 - - 17.5 - - 17.75 - - 18.0 - - 18.25 - - 18.5 - - 18.75 - - 19.0 - - 19.25 - - 19.5 - - 19.75 - - 20.0 - - 20.25 - - 20.5 - - 20.75 - - 21.0 - - 21.25 - - 21.5 - - 21.75 - - 22.0 - - 22.25 - - 22.5 - - 22.75 - - 23.0 - - 23.25 - - 23.5 - - 23.75 - - 24.0 - - 24.25 - - 24.5 - - 24.75 - - 25.0 - - 26.0 - - 27.0 - - 28.0 - - 29.0 - - 30.0 - - 31.0 - - 32.0 - - 33.0 - - 34.0 - - 35.0 - - 36.0 - - 37.0 - - 38.0 - - 39.0 - - 40.0 - - 41.0 - - 42.0 - - 43.0 - - 44.0 - - 45.0 - - 46.0 - - 47.0 - - 48.0 - - 49.0 + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 Farm: wind_farm_wake_model: 0.0 wind_resource_turbulence_coeff: 0.1 diff --git a/pyproject.toml b/pyproject.toml index 7a6e0cfaf..a790f1193 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -100,7 +100,8 @@ develop = [ "pytest-cov", "ruff", "sphinxcontrib-napoleon", - "h2integrate[gis,ard]" + "h2integrate[gis,ard]", + "yamlfix" ] examples = [ "jupyterlab", @@ -255,3 +256,11 @@ known-third-party = ["pytest"] quote-style = "double" indent-style = "space" docstring-code-format = true + +[tool.yamlfix] +allow_duplicate_keys = true +line_length = 120 +none_representation = "null" +explicit_start = false +# quote_representation = '"' # NOTE: uncomment when issue is resolved: https://github.com/lyz-code/yamlfix/issues/252 +sequence_style = "keep_style" diff --git a/resource_files/wombat_library/electrolyzer.yml b/resource_files/wombat_library/electrolyzer.yml index 52613960f..1a77fffa4 100644 --- a/resource_files/wombat_library/electrolyzer.yml +++ b/resource_files/wombat_library/electrolyzer.yml @@ -1,7 +1,6 @@ name: Single Turbine Plant with Electrolyzer (Poly Efficiency) weather: test_weather_one_year.csv -service_equipment: - - ofs +service_equipment: [ofs] layout: layout_electrolyzer_poly.csv port_distance: 20 inflation_rate: 0 @@ -17,8 +16,7 @@ substations: transformer: name: transformer maintenance: - - - description: n/a + - description: n/a time: 0 materials: 0 service_equipment: CTV @@ -42,11 +40,11 @@ turbines: electrical_system: name: electrical_system maintenance: - - description: n/a - time: 0 - materials: 0 - service_equipment: CTV - frequency: 0 + - description: n/a + time: 0 + materials: 0 + service_equipment: CTV + frequency: 0 failures: - scale: 0 shape: 0 @@ -60,11 +58,11 @@ cables: export: name: export maintenance: - - description: na - time: 0 - materials: 0 - service_equipment: CTV - frequency: 0 + - description: na + time: 0 + materials: 0 + service_equipment: CTV + frequency: 0 failures: - scale: 0 shape: 0 @@ -111,19 +109,18 @@ electrolyzers: power_system: name: Power System maintenance: - - description: DC current transducer - time: 40 - materials: 1200 - service_equipment: OFS - frequency: 5 - frequency_basis: months + - description: DC current transducer + time: 40 + materials: 1200 + service_equipment: OFS + frequency: 5 + frequency_basis: months failures: - - - scale: 0 - shape: 0 - time: 0 - materials: 0 - service_equipment: [OFS] - operation_reduction: 0 - level: 1 - description: n/a + - scale: 0 + shape: 0 + time: 0 + materials: 0 + service_equipment: [OFS] + operation_reduction: 0 + level: 1 + description: n/a